Search Results
http://forum.sa-mp.com/search.php?searchid=5404388
184
pawn Код: if(sscanf(params, "ii", amount, idx)) return SendClientMessage(playerid, COLOR_WHITE, "[Usage]: /giveproducts [bizid] [amount]");
215
Use GangZoneCreate to create zone. For arena restriction, use SetPlayerWorldBounds
60
pawn Код: CMD:saveallvehicles(playerid, params[]){    if(pInfo[playerid][Admin] < 5) return SendClientMessage(playerid, color_red, "This command can use only admins!"); //I suppose you have c...
165
You want to save all vehicles on server? Or only player private vehicle, which player spawned (bought)?
165
Just get all data of vehicle (position, angle, model and colors (https://sampforum.blast.hk/showthread.php?tid=235398)) and save it to playerґs account file Then create vehicle with loaded data at O...
165
pawn Код: public OnGameModeInit(){    DisableInteriorEnterExits();    return 1;}
137
Also, if you want connect and disconnect icons.. pawn Код: public OnPlayerConnect(playerid){    SendDeathMessage(INVALID_PLAYER_ID, playerid, 200);    return 1;}public OnPlayerDisconnect(playe...
132
Try deleting return 0. pawn Код: stock FrakName(playerid){    new frakname[40],Ffile[129];    for(new f = 0; f < 13; f++)    {        format(Ffile,sizeof(Ffile),"/Fraktion/%s.ini",FIn...
65
Yes, of course. pawn Код: SetTimerEx("message", 1000, false, "f", 1.502);
75
Change respawn type to 2. Ex: pawn Код: CreatePickup(1242, 2, 1503.3359, 1432.3585, 10.1191, -1);
203
ZCMD is for commands.. this is not commands Quote: Might want to add a check in there - skin ID 74 doesn't exist (at least what the wiki says (i think you skipped CJ's skin ID on purpose ...
164
1) Simple add this anywhere to your GM: pawn Код: public OnPlayerText(playerid, text[]){    new pName[MAX_PLAYER_NAME], string[144];    GetPlayerName(playerid, pName,sizeof(pName));    forma...
164
pawn Код: #include <a_samp>new ScoreTimer[MAX_PLAYERS];new ScoreTimerr[MAX_PLAYERS];forward UpdateScore(playerid);public OnPlayerConnect(playerid){    ScoreTimerr[playerid] = SetTimerEx("U...
92
Hey.. I donґt know, how much is max players on his server. Acknowledge, 512 chars variable is too small
102
I use this for my old server to admins list.. Just some changes pawn Код: #define DIALOG_ONLINE_LIST 1001CMD:list(playerid, params[]){    new string[520], pname[MAX_PLAYER_NAME], fstring[26]; ...
102
pawn Код: if (!strcmp(cmdtext, "/fgate"))    {        if (IsPlayerInRangeOfPoint(playerid, 15,1811.59, -1795.36, 13.87))        {            if(fdg == 1 || fdg2 == 1) return SendCl...
54
You have to search for GetVehicleColor include..
123