Ich suche derzeitig einen Timeban Befehl, habe auch schon einen Gefunden der jedoch nicht Funktioniert. Falls ihr ein besseren findet bitte ich euch keine Includes oder Filterscript´s zu erwähnen.
if(strcmp(cmd, "/kick", true) == 0)
{
if(!isPlayerAnAdmin(playerid,5))return SendClientMessage(playerid, COLOR_LIGHTRED,"Du hast nicht genügend Rechte um andere zu befördern.");
new pID, time, grund[128];
if(sscanf(params,"uis",pID,time,grund))return SendClientMessage(playerid, COLOR_LIGHTBLUE,"/tban [playerid] [time] [grund]");
if(IsPlayerConnected(pID))
{
if(time>0||time<1000)
{
new string[128];
format(string,sizeof(string),"Server: %s wurde von %s für %i Minuten gebannt. Grund: %s",SpielerName(pID),SpielerName(playerid),time,grund);
SendClientMessageToAll(COLOR_LIGHTRED,string);
new wert;
wert=gettime()+(60*time);
SetPVarInt(pID,"timeban",wert);
Kick(pID);
return 1;
}
SendClientMessage(playerid, COLOR_LIGHTRED,"Ungültige Zeit!");
return 1;
}
SendClientMessage(playerid, COLOR_LIGHTRED,"User ist nicht Online!");
return 1;
}
Ich erhalte folgende Errors
C:\Users\Max\Desktop\Müll\[CoG]City of God Server - Script\[CoG]City of God Server - Script\pawno\include\streamer.inc(329) : warning 201: redefinition of constant/macro (symbol "OnPlayerConnect")
C:\Users\Max\Desktop\Müll\[CoG]City of God Server - Script\[CoG]City of God Server - Script\gamemodes\CoGScript.pwn(39535) : error 017: undefined symbol "isPlayerAnAdmin"
C:\Users\Max\Desktop\Müll\[CoG]City of God Server - Script\[CoG]City of God Server - Script\gamemodes\CoGScript.pwn(39537) : error 017: undefined symbol "params"
C:\Users\Max\Desktop\Müll\[CoG]City of God Server - Script\[CoG]City of God Server - Script\gamemodes\CoGScript.pwn(39543) : error 017: undefined symbol "SpielerName"