Search Results
Try this: pawn Код: new FirstSpawn[MAX_PLAYERS];public OnPlayerConnect(playerid){    FirstSpawn[playerid] = 0;    return 1;}public OnPlayerSpawn(playerid){    FirstSpawn[playerid] = 1;   ...
75
Try iPLEOMAX'S Achievement System: https://sampforum.blast.hk/showthread.php?tid=277706
181
Don't forget to check if the killer is valid. pawn Код: public OnPlayerDeath(playerid, killerid, reason){     if (killerid != INVALID_PLAYER_ID)     {        GivePlayerMoney(killerid, 10...
87
Here's a way you could do it, just modify it to your needs: pawn Код: new InJail[MAX_PLAYERS];CMD:sendtoooc(playerid, params[]){    new targetid;    if(sscanf(params, "u", targetid)) return ...
54
pawn Code: OnPlayerVirtualWorldChange(playerid, oldvw, newvw)
32,613
http://forum.sa-mp.com/showpost.php?...81&postcount=2
51
https://sampwiki.blast.hk/wiki/Keys https://sampwiki.blast.hk/wiki/OnPlayerKeyStateChange
66
You can use PlayAudioStreamForPlayer Example: PlayAudioStreamForPlayer(playerid, "http://somafm.com/tags.pls");
177
Do you want to check your current position? Or make a command to set a player's position? Also, a better place for this question would be here.
60
pawn Код: CMD:hi(playerid, params[]){    if(IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "Admins cannot use this command."); //This checks if they're logged in as RCON Admin, ...
155
https://sampforum.blast.hk/showthread.php?tid=235398
46
pawn Код: //In order to display a message (eg. reason) for the player before the connection is closed you have to use a timer to create a delay. This delay needs only to be a few milliseconds long...
140
To start your SA:MP server: Quote: cd samp03 nohup ./samp03svr&
142
https://sampforum.blast.hk/showthread.php?tid=345747
83
Use /list to find the help channel for that network. Someone in there may be able to help you.
236
Make sure you're not typing: /ns register #LOSTGCNR password description. You should type the command i put above.
236
To register the channel: Code: /cs register #LOSTGCNR password description then you should have owner.
236
Did you copy this and just changed a few things? If so give credit to Aloushi.
360