Hallo Freunde,
ich hab ein kleines Problem mit einem Befehl ...
Undzwar hab ich es aus dem V-Admin Script rauskopiert und in mein Script reingetan aber dann kommt das ^^:
C:\Documents and Settings\Administrator\Pulpit\Nowy folder (2)\gamemodes\PPXv3.1.pwn(4841) : warning 225: unreachable code
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Warning.
[pwn]
Und hier noch der Command
ZEILE 4841:
[pwn] if(strcmp(cmd, "/cc", true) == 0)
Und hier jetzt der ganze Command :
if(strcmp(cmd, "/cc", true) == 0)
{
if(PlayerInfo[giveplayerid][admin] > 0)
for (new a=1;a<=60;a++)
{
SendClientMessageToAll(COLOR_LIGHTBLUE,"\n");
SendClientMessageToAll(COLOR_LIGHTBLUE,"\n");
GameTextForAll("~b~Chat cleared!",6000,1);
}
new Player[MAX_PLAYER_NAME];
GetPlayerName(playerid,Player,sizeof(Player));
format(string, sizeof(string), "*** Admin %s cleared the chat.",Player);
SendClientMessageToAll(COLOR_LIGHTBLUE,string);
printf(string);
return 1;
}
Könnte mir einer helfen bin voll ratlos
Walky