Search Results
Every time I try to open a folder with .pwn files in, Windows Explorer just restarts itself and closes the folder meaning I can't access any of my gamemode files. Sometimes it just restarts instantly,...
52
I just clicked onto the Server Advertisements board for the first time in ages and I was amazed at how many roleplay servers there are. What's the deal with it? What makes roleplay servers so popula...
245
I’m offering scripting services for very cheap prices! I can code filterscripts and gamemodes for any type of server. Over my 3-4 years of coding PAWN, I’ve made numerous Freeroam servers, DM ser...
199,468
Quote: Originally Posted by FreAkeD You should use your imagination to come up with things like this. Try stuff that no freeroam server hasnt seen to date, you'll be thinking in no time. ...
140
Код: new unban = cache_get_field_content_int(0, "unban"); or Код: new unban[sizehere]; cache_get_field_content(0, "unban", unban);
133
Quote: Originally Posted by Mellnik To fight bandwidth DDoS you need money. If you don't have money close your server. I wouldn't say close your server completely. People get bored even...
225
You need to use https://sampwiki.blast.hk/wiki/TextDrawTextSize to set the clickable area of the textdraws.
136
Quote: Originally Posted by Crayder No you are wrong. There is an R2 client and an R2 server. R2 wasn't the server-only update that you are thinking of. You are thinking of R2-1, which was...
110
I wasn't entirely sure on where to post this. My friend has a strange problem where even if a server has stunt bonuses disabled, he still gets them. It's annoying because it's triggering my money hac...
83
There isn't a SA-MP 0.3.7-R2 client. You can connect to R2 servers with the standard 0.3.7 client; the R2 update was for server owners only, as you can read here: https://sampforum.blast.hk/showthread...
110
Код: format(PlayerInfo[target][pIme], [insert size of pIme here], "%s", GetName(target));
143
Try using the print function after every function under your OnPlayerDeath callback so you can see the last function that is processed before your server crashes.
77
Quote: Originally Posted by Vince Color codes are filtered by the client. They're never even sent to the server. So, if my assumptions are correct: if the player only enters a color code t...
298
I have a reaction test system in my server, but if you enter a hex colour code in the chat, like "{FF0000}" for example, it's an instant win; the server seems to think the colour code is the reaction ...
298
Quote: Originally Posted by PSYCHOBABYKILLA the guy asking the question needs help do you think he knows what foreach is try correcting the guy asking the questions fool ps i dont got th...
132
Using foreach is simpler. pawn Код: GetConnectedPlayers(){    new count;        foreach(new i : Player)    {        count++;    }        return count;}
132
Firstly, I recommend that you read this: https://sampforum.blast.hk/showthread.php?tid=570635 Anyway, you need to use a callback called LoadData(playerid) to get the data (XP) from the query (cache_g...
66
You don't need to put integer values inside quotation marks: pawn Код: '%d' should just be pawn Код: %d
120
pawn Код: SendClientMSG(playerid, COLOR_LIGHTGREY, "[Vehicle Lead %i].", vehicleLead[vehicleid]);
95