Search Results
Quote: Originally Posted by polygxn Are you sure the error is on that line? If yes, you most likely misspelled one of your enumerators. Just read.
230
Saving this much player data at once is a bad idea. You should save things like skin, job, cash, etc. right when they changes. For example when the player bought a new skin, save it right away. You d...
230
pawn Code: CMD:gender(playerid, params[]) {  new skin = GetPlayerSkin(playerid);  if(skin == 73)    SetPlayerSkin(playerid, 207); // Male -> Female  else if(skin == 207)    SetPlayerSkin(pl...
110
You can try to find the Z coordinate with MapAndreas and spawn the vehicle there. Maybe...
120
pawn Code: RespawnNearbyVehicles(playerid, Float:radi) {  new Float:x, Float:y, Float:z;  GetPlayerPos(playerid, x, y, z);  for(new i = 1; i < MAX_VEHICLES; i++) {    if(GetVehicleModel(i)) {...
277
pawn Code: new const AnimLibs[][] = {  "AIRPORT",      "ATTRACTORS",   "BAR",          "BASEBALL",     "BD_FIRE",  "BEACH",        "BENCHPRESS",   "BF_INJECTION", "BIKE_DBZ",     ...
293
pawn Code: pvtime[playerid] = 25;pvtimer[playerid] = SetTimerEx("pvTimeDown", 1000, 1, "d", playerid); This is not how you use timers. Take a look here: https://sampwiki.blast.hk/wiki/SetTimerEx p...
250
pawn Code: `name` = '%d' Also, check your MySQL log file aswell.
113
Quote: Originally Posted by TokicMajstor Just use SendClientMessage, simply Like what the hell are you talking about. He want to set-up an SMS system to his server, how SendClientMessag...
139
If you have a nativechecker plugin then put it in the last place in your server.cfg. Its probably just a false error. If not, just copy this anywhere in your GM: pawn Код: native WP_Hash(buffer[],...
348
Quote: Originally Posted by None1337 just add Code: new id,string[200],giveplayer[30],sendername[MAX_PLAYER_NAME], reason[64]; if(sscanf(params, "us[64]", id, reason)) return SCM(playeri...
106
pawn Code: new reason[64];if(sscanf(params, "us[64]", id, reason)) return SCM(playerid,COLOR_GREY, "USAGE: {FFFFFF}/auninvite <playerid/name> <reason>");// The reason can't be 12 characte...
106
There is a problem with the SendAdminHelperMessage Im pretty sure. Give us the function itself.
113
The diamond icon there cause a modified hud.txd file.
113
Post the exact line, but the problem is most likely that you missed a variable.
313
Null the variable then ParseFile? Something like this I guess, never used y_ini. MySQL is the way to go tho.
306
So Im using THIS inline timer include. The problem is when the SetInlineTimer executed I got back these errors in the console (however, its executing successfully): PHP код: [debug] Run time...
86