Search Results
Quote: Originally Posted by Sonu Rozario Simon Samp does not need much Installations. You can do it manually. Its more better. 1: Quote: Currently I host my gameservers and ...
1,322
Use notepad++. It shows length of the text. Alternatively, if you have this string: "Your ID is %d!", and your max playerID is 150 and thus 5 characters lang, you could do this: Code: new string[] = ...
1,761
Quote: 'YSI/y_va' YSI_Coding\y_va* (if no warning is displayed, you are using an older version of YSI and I can recommend you to upgrade to the latest YSI). Quote: It...
1,761
The same way you include every plugin. Place all the files and folders in your pawno include directory, and then you can start including them in your scripts.
1,045
This is the case for all strings (unless if you're using the dynamic memory plugin). Strings (arrays) are basically just a bunch of variables. PAWN reads these arrays as strings. All string functions ...
1,761
Quote: Originally Posted by GameOvr Actually you didnt get me, how can i unban him at the exact time when he is in samp.ban? That's my problem To unban him at the exбct timestamp is n...
2,683
Quote: Originally Posted by MWahyuDinarta because my problem is only one, i can't make it to be compiled. may you do that, please? If there are errors, look in this topic for fixes (the...
11,977
I wouldn't do that if I were you. Atleast not a full snapshot, because of links/data to/about system hardware and hostkeys. It's not that hard to set up samp and a webhost from a clean installation. Y...
1,322
Runtime error 4: Array index out of bounds. It means it tries to get data from an array from an index that does not exist. It literally says that: Code: [22:05:28] [debug] Run time error 4: "Array i...
1,303
Quote: Originally Posted by Inspiron I've set the permission of whole folder to 755 including all files and subdirectories. Depending what user and group own the file, I always setup pe...
1,561
This is how I would do it: pawn Code: new const AdminLevelName[][] = {    "User",    "Semi Administrator [Level 1]",    "Semi Administrator [Level 2]",    "Semi Administrator [Level 3]",  Â...
2,048
Using AUTO_INCREMENT, the only way to do that (as far as I know) is by manually setting the ID after inserting a row. If you want to start all over you'd have to clear the entire table Code: TRUNCATE...
1,306
Yes, it shows that port 7780 is used by samp03svr. After closing the server (killing the process) you should use that command to see if it's somehow still used.
1,910
I only looked at the query: Code: INSERT INTO 'factions' ('ID', 'FactionName', 'FactionLeader', 'Rank1name', 'Rank2name', 'Rank3name', 'Rank4name', 'Rank5name' 1- For table names, you either have to ...
1,306
Use: Code: lsof -i:port To see what process(es) use a certain port (replace port with the actual port, ofc). Maybe it somehow is still used.
1,910
Some notices: - That script would only show the admin with the highest playerid. - If SemiAdmin for someone is not 1,2 or 3, it would: * Show nothing at all if the lowest playerid has that level * Sho...
2,048
1) partyy must be a global variable 2) the function Create..Rectangle has 7 parameters Code: CreateDynamicRectangle(Float:minx, Float:miny, Float:maxx, Float:maxy, worldid = -1, interiorid = -1, play...
836
https://sampforum.blast.hk/showthread.php?tid=616103
720
I thought so. listitem is not the same as the carid. Let's say you have three results: * Infernus (carid 5)[listitem = 0] * Turismo (carid 9)[listitem = 1] * NRG (carid 12)[listitem = 2] I think tha...
648
To give some extra info about stock: Using keyword stock you indeed tell the compiler the piece of code is not required to use (thus not showing a warning if it's unused). In gamemodes, you usually on...
554