Announcements in chat?
#1

Want Announcements in my chat... can someone help me? Script code? Filterscript? HELP!
Reply
#2

What kind of announcement do you want?
Reply
#3

Answer = Search.
Reply
#4

dunno if its dead or something but he means like that it gives you random Announcements.

like timer is on 30 sec and the text are

pawn Код:
SendClientMessageToAll(playerid,COLOR_WHITE,"Remember to read the /rules!");
    SendClientMessageToAll(playerid,COLOR_WHITE,"Write /help for informations and more!");
    SendClientMessageToAll(playerid,COLOR_WHITE,"don't know if there any admins online? write /admins for admins");
    SendClientMessageToAll(playerid,COLOR_WHITE,"Looking for a job? write /jobs for empty jobs!");
Reply
#5

here you go https://sampwiki.blast.hk/wiki/Random_Messages
Reply
#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


Forum Jump:


Users browsing this thread: 1 Guest(s)