SA-MP Forums Archive
Cteate a Auto-Message? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Cteate a Auto-Message? (/showthread.php?tid=78830)



Cteate a Auto-Message? - FreddeN - 23.05.2009

I want a text like the Welcome text but it gonna pop up every... lets say every 30 min.

Thanks


Re: Cteate a Auto-Message? - Weirdosport - 23.05.2009

OnFilterScriptInit:
pawn Код:
SetTimer("Welcome", 1800000, 1);
Elsewhere:
pawn Код:
forward Welcome();
public Welcome()
{
SendClientMessageToAll(0xFF00FFFF, "Welcome everybody!");
}



Re: Cteate a Auto-Message? - FreddeN - 23.05.2009

Quote:
Originally Posted by Weirdosport
OnFilterScriptInit:
pawn Код:
SetTimer("Welcome", 1800000, 1);
Elsewhere:
pawn Код:
forward Welcome();
public Welcome()
{
SendClientMessageToAll(0xFF00FFFF, "Welcome everybody!");
}
Thanks