01.12.2010, 17:53
Everytime I put this code in my script my pawno.exe crashes
Everytime I remove this code , it compiles fine...
What is wronge with this code anyone ? or atleast fix it please , Much appriciated
Everytime I remove this code , it compiles fine...
What is wronge with this code anyone ? or atleast fix it please , Much appriciated
Код:
if(strcmp(cmd, "/getweed", true) == 0) { new dlevel = PlayerInfo[playerid][pDrugsSkill]; GetPlayerName(playerid, playername, sizeof(playername)); if(PlayerInfo[playerid][pJob] == 4 && (IsPlayerInRangeOfPoint(playerid,10.0,1534.885986, -1451.428589, 16.386175)) { if(dlevel >= 0 && dlevel <= 50) // Level 1 { if(PlayerInfo[playerid][pPot] >= 6) { SendClientMessage(playerid, COLOR_GREY, "Already have enought pot"); return 1; } ShowDrugsMenu(playerid, 1); return 1; } } } else { SendClientMessage(playerid, COLOR_GREY, "You are not a drug dealer"); return 1; } return 1; }