Search Results
Quote: Originally Posted by Pottus Took a peak and this stood out. Код: if(!IsPlayerConnected(playerid) || IsPlayerNPC(playerid) || playerid == INVALID_PLAYER_ID || 0 > playerid ||...
632
New update! Version 1.2.0 pawn Код: // Changelog 1.2.0 - 21.11.2015, 03:14PM (Timezone: GMT+1)// New functions:native SetPlayerRaceCheckpoint(playerid, type, Float:x, Float:y, Float:z, Float:nextx...
632
New update! Version 1.1.0 pawn Код: // Changelog 1.1.0 - 15.11.2015, 12:29 (Timezone: UTC+1)Added two new callbacks, OnPlayerCheckpointSet and OnPlayerCheckpointDisable.You can find description on...
632
Checkpoint.inc The idea was inspired by this include: https://sampforum.blast.hk/showthread.php?tid=251483. It is however recreated from scratch and uses static variables instead of PVars, also some o...
632
I would not recommend you to use the gpci function as it is not unique per player. There are tons of players with the same serial. pawn Code: native gpci (playerid, serial[], len);
104
The reason why you get banned is because you have specified the playerid parameter in the timer: pawn Код: SetTimerEx("BanTimer", 1000, false, "i", playerid); Instead of specifying the playerid sp...
100
Quote: Originally Posted by Mikkel_RE I'm not getting that warning Anthony I don't know what's wrong then, I copied most of your code and tried it myself on my local server and I got th...
125
One of the reason this might be happening is because mS_CUSTOM_MAX_ITEMS isn't big enough. You can find out if this is the case by looking in either the console or the server log for something like th...
125
In the function that shows the menu to the player you have this: pawn Код: ShowModelSelectionMenuEx(playerid, vehicle, 28, "Coutt And Schutz", dealership1, 16.0, 0.0, -55.0); The xRot parameter is...
116
Last post you made you used ShowModelSelectionMenuEx so I assume you are using it here also, in that case these are parameters in the function. pawn Код: ShowModelSelectionMenuEx(playerid, items_a...
116
mSelection handle dynamic and static menus differently, You are using ShowModelSelectionMenuEx which means you are using a dynamic one, if that is the case you must use this callback: pawn Код: pu...
113
mSelection doesn't work like a regular dialog, modelid != listiem. modelid is the id of the model in the preview textdraw not the listitem. Instead of doing this: pawn Код: if(modelid == 0 &&a...
113