17.03.2012, 09:02
Is the code copied off from any gamemode, filterscript or something ? If yes than tell us from where.
If no than i have scripted the whole command again. -
Not Tested :S
If no than i have scripted the whole command again. -
pawn Код:
CMD:announce ( playerid , params [] )
{
if ( !IsPlayerAdmin ( playerid ) ) return SendClientMessage ( playerid , -1 , "Your not admin" ) ;
new pName [ MAX_PLAYER_NAME ] ;
GetPlayerName ( playerid , pName , MAX_PLAYER_NAME ) ;
new str [128] ;
format ( str , 128 , "Announcement by %s : %s" , pName , params ) ;
SendClientMessage ( playerid , -1 , str ) ;
return 1;
}