Search Results
Countryside Roleplay is a Roleplay server based on the popular game mod San Andreas Multiplayer for Grand Theft Auto San Andreas. The server is based in the area of Red County and promintently fea...
393
It's been a few years since I last posted here, and as I'm in the midst of writing my college applications I'm reminiscing on everything I've done in the past ~10 years. Some of you might remember me ...
186
Quote:
Originally Posted by SuperViper
Fake the votes
Go to the page, search for SAMP, type the following in the URL bar and hit enter:
Code:
javascript:for(var index=0;index<50;inde...
392
It looks like your string size is too small. Increase the size of query.
153
pawn Код:
if(5 > strlen(inputtext) > 32){ // password not between 5-32 characters}
321
It's a server configuration variable and may only be set in the server.cfg file.
166
pawn Код:
if(Some Code){ Something; return 1;}
is not the same as
pawn Код:
if(Some Code) return Something;
The first one will always return 1 but the second one will return whate...
221
Quote:
Originally Posted by AlonzoTorres
pawn Код:
public OnPlayerConnect(playerid){ GivePlayerMoney(playerid, 500000); SetVIP(playerid, true); GiveHouseForFree(play...
466
No. The user is constantly receiving new data that tells them the location, name, etc of players streamed in (I think, not sure) to them. "Hacking" tools are able to receive that data by reading memor...
1,285
pawn Код:
if(playertextid != PlayerText:INVALID_TEXT_DRAW)
pawn Код:
if(clickedid == Text:INVALID_TEXT_DRAW)
247
Just use MAX_PLAYERS for the size. It doesn't have to be the exact size of the players currently online.
437
Read the title. It's up to 0.3e. I don't play SA-MP anymore, so I don't plan on updating this.
1,264
Loop through the array and check if the numbers are equal.
171
Nobody cares what script you use. It's not the SAMP team's responsibility to enforce that.
422
Rather than using TogglePlayerControllable, you can store the player's position and repeatedly set it back to that position in a quick timer.
pawn Код:
forward public PlayerFrozenCheck(playerid);...
213
Quote:
Originally Posted by Djole1337
pawn Code:
stock ProvedAtRandom(){ new Random = random(3); switch(Random) { case 0: SendRconCommand("gmx"); case...
2,243
Quote:
Originally Posted by Konstantinos
No need to use strmid or any temporary string to store the name. Just:
pawn Code:
GetPlayerName(playerid, PlayerName[playerid], MAX_PLAYER_NAME);
...
2,243
If you're trying to do multiple lines, then you need to send a client message for each line.
266
If the mode separates itself into include files, then you should only compile the main script after editing any file.
218
OnVehicleSpawn is called when a vehicle is respawned, not created.
225