hey ich mach grade ein Selfmade, und ich hab ein problem ;p
was ist hier falsch? ;d
C:\Program Files (x86)\Rockstar games\GTA san andreas\gamemodes\tutorial.pwn(618) : error 076: syntax error in the expression, or invalid function call
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
ocmd:afk(playerid,params[])
{
if(AFK[playerid] == 1)
{
new afstring[100];
TogglePlayerControllable(playerid,0);
SendClientMessage(playerid,COLOR_GRAU,"Du bist nun AFK");
AFK[playerid] = 0;
618 -> format(afstring,sizeof(afstring),"Spieler %s ist AFK gegangen",SpielerName);
SendClientMessageToAll(COLOR_GRAU,afstring);
}
else
{
SendClientMessage(playerid,COLOR_GRAU,"Du bist Schon AFK");
}
return 1;
}