Hey Leute,
Ich habe mir grade mal einen kleinen /aduty Command erstellt bekomme leider 2Errors und weiß nicht warum:
/aduty:
if(strcmp(cmd, "/aduty", true) == 0)
{
if(PlayerInfo[playerid][pAdmin] >=1)
{
SetPlayerHealth(playerid, 999)
format(string, sizeof(string), "%s arbeitet nun als Admin und hilft euch bei Problemen!", sendername);
SendClientMessageToAll(COLOR_RED, string);
{
}
}
else SendClientMessage(playerid, COLOR_RED, "Du bist kein Admin!");
}
if(strcmp(cmd, "/aoffduty", true) == 0)
{
if(PlayerInfo[playerid][pAdmin] >=1)
{
SetPlayerHealth(playerid, 999)
format(string, sizeof(string), "%s nimmt nun wieder am Spiel teil", sendername);
SendClientMessageToAll(COLOR_RED, string);
{
}
}
else SendClientMessage(playerid, COLOR_RED, "Du bist kein Admin!");
}
ERRORS:
C:\Users\Yigit\Desktop\Sicherheitskopie.pwn(13366) : error 001: expected token: ";", but found "-identifier-"
C:\Users\Yigit\Desktop\Sicherheitskopie.pwn(13379) : error 001: expected token: ";", but found "-identifier-"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.