12.05.2011, 19:09
A simple send2all msg system, fs:
pawn Код:
#include < a_samp >
#define MESSAGE_MINUTES 1 // Show the message every 1 minute.
public OnFilterScriptInit( ) return SetTimer( "Rmsg", MESSAGE_MINUTES * 60000, 1 );
forward Rmsg( );
public Rmsg( )
{
SendClientMessageToAll( COLOR, "Message1" );
SendClientMessageToAll( COLOR, "Message2" );
SendClientMessageToAll( COLOR, "Message3" );
// And so on...
return 1;
}