19.08.2010, 23:36
Hello, I have made an Auto Message system but it kinda does work and doesn't work...
The messages come to fast.
Thanks in advance
The messages come to fast.
pawn Code:
forward msgs();
forward msgs1();
forward msgs2();
SetTimer("msgs", 30000, true);
SetTimer("msgs1", 60000, true);
SetTimer("msgs2", 90000, true);
public msgs()
{
SendClientMessageToAll(COLOR_YELLOW, "[INFO] Welcome to LSRP, Remember to use /help!");
return 1;
}
public msgs1()
{
SendClientMessageToAll(COLOR_YELLOW, "[INFO] Take a look at the rules by tping /rules");
return 1;
}
public msgs2()
{
SendClientMessageToAll(COLOR_YELLOW, "[INFO] Vist us at www.lsrp.comule.com");
return 1;
}