Search Results
https://sampforum.blast.hk/showthread.php?tid=187229
62
Maybe if you show the line we can help?
60
You are seriously lacking of functions and variables declarations. Make your own GM or get one without any bugs before editing it.
78
It will send the playerid info to the public callback, yes.
111
Post here: https://sampforum.blast.hk/showthread.php?tid=345747
62
Use SetTimerEx pawn Код: forward test(playerid);public test(playerid){       SendClientMessage(playerid,0xFFFFFFAA,);}// Where you put your timer:SetTimerEx("test", 1000, false, "i", playerid)...
111
Wow it's hard to understand what you mean. So level 1-3 is VIP and level 4 or more is admin? Try this... pawn Код: if(pInfo[playerid][level] > 3){    format(string, sizeof(string), "Admin lev...
91
This pawn Code: if(PlayerInfo[playerid][pMoney] < 1400) return SendClientMessage(playerid, COLOR_GREY, "You don't have enough money to pay the toll ($1400)!");    {        SendClientMessage(...
144
pawn Code: else        {            TollGateStatus = 0;            MoveDynamicObject(TollGate, -1577.1999512,-1606.6999512,36.7999992,0.0000000,336.7500000,98.0000000, 2);        ...
144
Add { before format and } after it.
138
Create a PickUp to drop things on the ground.
91
hmmm something like this? pawn Код: public OnPlayerDisconnect(playerid, reason){    new Name[MAX_PLAYER_NAME];    GetPlayerName(playerid, Name, MAX_PLAYER_NAME);        for(new i = 0; i &l...
54
Make a variable like PlayerMoney[MAX_PLAYERS]; then make a stock to give money and to alter the variable, then make a timer to check if the player money correspond with the variable, if not, he is che...
89
You lack of an include called my_sql in the pawno includes folder.
84
Change playerid to i... pawn Код: new nxtlevel = PlayerInfo[i][pLevel]+1;                    new expamount = nxtlevel*levelexp;                    if (PlayerInfo[i][pExp] < ...
120
Use this: https://sampforum.blast.hk/showthread.php?tid=187229 This forum is for help, not request of scripts.
59
Open each file of users in your user path, then check if the rent variable corresponds. Won't do it for you.
175
He did a command to kick all the guys that rented that house, but he want the offline dudes to get kicked too. You must open all the users files and find if the users are renting that house. Would be...
175
1) s1 and s2 are already defined before, so remove any new s1 or new s2. 2) Must define ServerInfo with some enum with it. Also define Connect Messages. High-light the lines with errors, we are not ...
62
pawn Код: // After                    PlayerInfo[i][pExp]++;                    PlayerPlayMusic(i);                    PlayerInfo[i][pAccount] = account+interest;// A...
120