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,809
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[] = ...
2,441
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...
2,441
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,376
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 ...
2,441
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...
3,913
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...
17,342
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,809
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,944
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...
2,138
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,702
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,729
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.
2,569
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,729
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.
2,569
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,702
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...
1,155
https://sampforum.blast.hk/showthread.php?tid=616103
1,028
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...
916
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...
795