Announcements in chat?
#6

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;
}
Reply


Messages In This Thread
Announcements in chat? - by mrsamp - 12.05.2011, 18:09
Re: Announcements in chat? - by Cameltoe - 12.05.2011, 18:21
Re: Announcements in chat? - by lowrida018 - 12.05.2011, 18:28
Re: Announcements in chat? - by jonnyboy - 12.05.2011, 18:41
Re: Announcements in chat? - by TheYoungCapone - 12.05.2011, 18:44
Re: Announcements in chat? - by Mean - 12.05.2011, 19:09

Forum Jump:


Users browsing this thread: 2 Guest(s)