03.09.2011, 17:00
(
Последний раз редактировалось Odyssey; 24.11.2014 в 23:28.
Причина: -delete-
)
-delete-
Originally Posted by San Andreas Multiplayer forums
This forum requires that you wait 120 seconds between posts. Please try again in 69 seconds.
|
Originally Posted by San Andreas Multiplayer forums
This forum requires that you wait 120 seconds between posts. Please try again in 40 seconds.
|
Originally Posted by San Andreas Multiplayer forums
This forum requires that you wait 120 seconds between posts. Please try again in 13 seconds.
|
new RandomMSG[][] =
{
"[Info] Message!",
"[Info] Also a message",
"[Info] LastMessage!"
};
public OnFilterScriptInit() return SetTimer("SendMSG",10000,false);
public SendMSG()
{
SendClientMessageToAll(0xFFFFFFFF, RandomMSG[random(sizeof(RandomMSG))]);
return 1;
}
"Its not quite how you would expect a random message system to be."
Its worse. pawn Код:
|