Search Results
Replace PHP код: if(strcmp(cmd, "/ta523", true) ==0 || strcmp(cmd, "/tazer333", true) ==0)  with PHP код: if(!strcmp(cmd, "/ta523", true) ==0 || !strcmp(cmd, "/tazer3...
192
Quote: Originally Posted by jlalt compile your script with third debug and re-post result kindly. https://github.com/Zeex/samp-plugin-...ith-debug-info If you follow this, your Crash R...
206
Quote: Please install proper drivers for your graphics card map editor. ****** will help you in achieving this task Change Color Depth from 16Bit to 32Bit. Posting this beca...
30,390
PHP код: new CountDownTime; new Timer:CountDownT; new Text:TextDraw1; stock CreateTimerText() {     Textdraw1 = TextDrawCreate(537.000000, 327.000000, "05:10");      TextDrawBa...
201
PHP код: stock PName(playerid) {     new name[24];     GetPlayerName(playerid, name, 24);     return name; } CMD:giveweaponset(playerid, params[]) {     new gwsid;   Â...
131
1. Make 20 PlayerTextDrawBoxes in color black. Similar to the one made like that, You shouldn't make GlobalTextDraws because its being updated per-player and 20 * MAX_PLAYERS will be too much and you ...
188
Код HTML: new hp; if(sscanf(params, "ui", targetid, hp)) return SendClientMessage(playerid, 0x33AA33AA, "[BA:RP] Ubijen si od strane admina!"); else SetPlayerHealth(targetid, float(hp)); Mistake...
98
PHP код: #define MAX_ADMINLVL 8 new AdminRanks[MAX_ADMINLVL][13] = {     "Player",     "Trial Admin",     "Basic Admin",     "Senior Admin",     "Anon",     "He...
269
Use Crashdetect and check if the script is crashing at some point.. It could happen due to that.. This could happen when there is a copy-paste mistake/fail. Instead of Resetting variable for TargetID...
120
fRank is not part of pInfo(Enum).. The reason for the error is:> PlayerInfo[pID][fRank] = 7; Either make a pRank inside pInfo and change accordingly.. Or edit the mistake..
147
It is supposed to work.. Maybe the first one registered has the best score/money?
87
Yes you need to check for INVALID_PLAYER_ID PHP код: CMD:id(playerid, params[])  {      new id, string[144];      if(sscanf(params, "u", id))          return SendClien...
87
What the others meant was, on the Line number:> 13966 inside gtrg.pwn, you are trying to access an Array Slot (65535) which exceed the mentioned array size.. If a player dies due to his carelessne...
142
Quote: Originally Posted by Develerux Код: CMD:teszt(playerid, params[]) { SendClientMessage(playerid, COLOR_ADMINMSG, "wtf"); MessageToAdmins(playerid, COLOR_DEATHRED, "asd"); retu...
62
Use OnPlayerUpdate... Check and save current vehicle / seat info.. Hook your PutPlayerInCar and update it.. check onPlayerentercar and exitcar.. If a player changes car without "onplayerentercar" and...
67
Quote: Originally Posted by Mic_H PHP код:     if(PRESSED(KEY_WALK))     {         new infectedcount;         if(team[playerid] == TEAM_ZOMBIE)      ...
173
Check if it works when you swap the EntranceXYZ and ExitXYZ and ye add break; Reasons for the command to show anything is because he is not near any lab. You might've messed up the coordinates or Ente...
59
From the looks of it, you are 'trying' to first retrieve 100 bans in descending order by names, then trying to get their ban reason one by one... PHP код: format(query,sizeof(query),"SELECT D...
131
What do you want to do with this script? Refer: https://sampforum.blast.hk/showthread.php?tid=262417 https://sampforum.blast.hk/showthread.php?tid=476204 https://sampforum.blast.hk/showthread.php?tid...
131
PHP код: public OnPlayerConnect(playerid) {     SetPlayerColor(playerid, 0xA9A9A9FF);      CallRemoteFunction("OnPlayerCommandText", "is", playerid, "/login");     return 1; ...
173