Search Results
PHP код: SendClientMessage(player1,COLOR_ERROR,"This player's AFK.");  to PHP код: SendClientMessage(playerid,COLOR_ERROR,"This player's AFK."); 
149
Can you send us your callback OnPlayerCommandReceived and OnPlayerCommandText?
180
You have to download the streamer again (the last version - it's the 2.7. => https://sampforum.blast.hk/showthread.php?tid=102865 Well, replace the include and plugin in your folder. Compile the ...
94
PHP код: Kick(targetid);  Put this after the message. Maybe you should use "u" instead of "i", then you can also give the name instead of only the id.
184
You can avoid the "bug". If you press the right mouse button and you hold a weapon you can delete this mask, and if you unleash the right mouse button you can attach the object again.
355
Where is the crashdetect plugin? You should load it too. If your script is running with the crashdetect plugin it will create a code in the console (server.log).
180
PHP код: CMD:armour(playerid, params[]);  to PHP код: CMD:armour(playerid, params[]) 
80
PHP код: new dCar[MAX_PLAYERS];//global dCar[playerid] = CreateVehicle(dCarID[random(sizeof(dCarID))], ... );  OnPlayerVehicleExit: PHP код: if(vehicleid == dCar[playerid]) ...
192
PHP код: if (IsPaused(playerid) && GetPausedTime(playerid) >= 5)  to PHP код: if (IsPaused(playerid) == true && GetPausedTime(playerid) >= 5) 
72
PHP код: PUBLIC: SetPlayerHealthEx(playerid,Float:health) {     new Float:newhp;     if(health < 0.0)health = 0.0;     else if(health > 100.0)health = 100.0;    ...
151
You can use textdraw editors. https://www.youtube.com/watch?v=EpC8BFg762A
58
PHP код: new makeAdminID[MAX_PLAYERS] = {-1,...};//Global //OnPlayerConnect: makeAdminID[playerid] = -1; CMD:makeadmin(playerid,params[]) {     if(gPlayerLogged[playerid] == 0)re...
72
Quote: Originally Posted by SoFahim Please fix all links. They are not valid Which links do you mean?
5,388
PHP код: //For the lines 72185,72187 and 72193 new stringdiag[150]; strcat(stringdiag,"Monday\nTuesday\nWednesday\nThursday\nFriday\nSaturday\nSunday"); //72185: else {     ShowPlaye...
108
You must delete this value of the variable if the weapon is empty. Put this into OnPlayerWeaponShot: PHP код: new Waffe[7],Ammo[8]; for(new i;i<12;i++) {     if(i < 10 &&...
196
We want to see this lines: PHP код: 84816 | 84820  The errors with this PHP код: error 017: undefined symbol "NOPCheck"  are resolved, aren't they?
108
PHP код: if(listitem == 0)// Bike {     new FirstCar[10];     format(FirstCar,sizeof FirstCar,"%i",DSbikes[0][DSCarModel]);     new spawnedcar = CreateVehicle(strval(FirstCa...
54
@Logofero: ShowPlayerDialog has only 7 Parameters, but you have 9. You have 2 Parameters too much.
85
PHP код: ShowPlayerDialog(playerid,769, DIALOG_STYLE_LIST, "Selecteaza amenda:","Select", "Close", "");  to PHP код: ShowPlayerDialog(playerid,769, DIALOG_STYLE_LIST, "Selec...
85