D:\server\gamemodes\ExtremeGame.pwn(6504) : error 017: undefined symbol "JobWorking" -
Код:
CMD:work(playerid, params[])
{
new Float: Pos[3], Float: CarAngle, string[256];
if(PlayerInfo[playerid][pJob] == 0) return SendClientMessage(playerid, COLOR_GREY, "Nu ai un job!");
if(JobWorking[playerid] == 1) return SendClientMessage(playerid, COLOR_WHITE, "Muncesti deja.");
switch(PlayerInfo[playerid][pJob]) {
case 5:{
if(PlayerToPoint(7.0, playerid, 2113.9392,-1775.1980,13.3918)) {
if(PlayerInfo[playerid][pCarLic] == 0) return SCM(playerid, COLOR_LGREEN, "Eroare: Ai nevoie de o licenta de condus pentru a putea munci la acest job!");
CarAngle = 0;
CP[playerid] = 155;
new j = random(housess)+1;
if(j == 0) j = 1;
SetPlayerCheckpointEx(playerid, HouseInfo[j][hEntrancex],HouseInfo[j][hEntrancey],HouseInfo[j][hEntrancez], 7.0);
format(string, sizeof(string), "Du-te la punctul ~r~~h~rosu~w~~h~ de pe mapa pentru a livra pizza.~n~Distanta: ~y~%0.1fm.", GetPlayerDistanceFromPoint(playerid, HouseInfo[j][hEntrancex],HouseInfo[j][hEntrancey],HouseInfo[j][hEntrancez]));
PlayerTextDrawSetString(playerid, InfosTD, string);
SetTimerEx("HideTextdraw", 8000, 0, "%d", playerid);
PlayerTextDrawShow(playerid, InfosTD);
}
else {
if(CP[playerid] != 0) return ShowPlayerDialog(playerid, DIALOG_CHECKPOINT, DIALOG_STYLE_MSGBOX, "Checkpoint", "Ai deja un checkpoint activ.\nDoresti sa-l anulezi? Daca da, apasa pe 'Ok'.", "Ok", "Exit");
CP[playerid] = 53;
SendClientMessage(playerid, COLOR_GREY, "Nu esti la locul unde poti incepe munca. Ti-am pus un checkpoint, du-te la el!");
SetPlayerCheckpointEx(playerid,2113.9392,-1775.1980,13.3918, 7.0);
return 1;
}
}
}
return 1;
}
Re: D:\server\gamemodes\ExtremeGame.pwn(6504) : error 017: undefined symbol "JobWorking" -
Re: D:\server\gamemodes\ExtremeGame.pwn(6504) : error 017: undefined symbol "JobWorking" -