31.08.2009, 10:23
Quote:
Originally Posted by braduz
...define? all ive done is in the code
|
pawn Код:
#define red 0xAA3333AA
new RandomMSG[][] =
{
"Wolf bot: Are you stuck? get help (/help) ^^",
"Wolf bot: This server is english only",
"Wolf bot: Visit our website http://www.wolvez.co.cc[url=http://][/url]",
"Wolf bot: Wanna know who made what? find out (/credits)",
"Wolf bot: See a cheater? report them (/report)",
"Wolf bot: The official braduz motto "Immah teh tech wolf round theese areas"
};
SetTimer("SendMSG", 200000, true);
forward SendMSG();
public SendMSG()
{
new randMSG = random(sizeof(RandomMSG));
SendClientMessageToAll(red, RandomMSG[randMSG]);
}