Posts: 1,498
Threads: 110
Joined: Aug 2013
top of your script
Код:
new Text3D:label1[MAX_PLAYERS];
Код:
CMD:aduty(playerid, paramas[])
{
if(adutys[playerid] == 1)
{
if(pInfo[playerid][Admin] >= 1)
{
SetPlayerColor(playerid, 0xAA3333AA);
SetPlayerHealth(playerid, 9999999);
SetPlayerArmour(playerid, 9999999);
SetPlayerSkin(playerid, 294);
adutys[playerid] = 0;
labeli[playerid] = Create3DTextLabel("Admin", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(labeli[playerid], playerid, 0.0, 0.0, 0.7);
}
else
SendClientMessage(playerid, 0xAA3333AA, "You must be admin to access this command!");
}
else
if(adutys[playerid] == 0)
{
if(pInfo[playerid][Admin] >= 1)
{
SetPlayerColor(playerid, 0xFFFFFFAA);
SetPlayerHealth(playerid, 100);
SetPlayerArmour(playerid, 0);
Delete3DTextLabel(labeli[playerid]);
adutys[playerid] = 1;
}
else
SendClientMessage(playerid, 0xAA3333AA, "You must be admin to access this command!");
}
return 1;
}
Change admin variables to yours
Posts: 129
Threads: 37
Joined: Apr 2015
Reputation:
0
Deagle i didnt use your code because it has no "admin is off duty" to set the normal armour,hp,Admin text etc...
Posts: 1,498
Threads: 110
Joined: Aug 2013
Quote:
Originally Posted by NexySamp
I used yours
Код:
C:\Users\Korisnik\Desktop\Yugoslavia Trucking v.0.3.7\include\PlayerCommands.inc(32) : error 001: expected token: ",", but found ";"
C:\Users\Korisnik\Desktop\Yugoslavia Trucking v.0.3.7\include\PlayerCommands.inc(46) : error 001: expected token: ",", but found ";"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
2 Errors.
how to fix this error?
|
You're compiling it as include lmfao