29.03.2012, 06:32
You don't need to use ^ above post you could just do something like
keep in mind that if you gonna add a message for textdraw there is always , at the end. for the last one there will be no ,
just like this
then OnGameModeInit (or OnFilterScriptInit)
you have create your own textdraw and replace YourText with your TextDraw name
pawn Код:
new Announce[][] = {
"Supra release today!",
"Scripter Hiring today!",
//"Rock time!",
"Last Textdraw"
};
just like this
pawn Код:
"Last Textdraw"
pawn Код:
SetTimer("Announcement", 10000, true); //will create a timer - 10 secs and will repeat (true)
pawn Код:
public Announcement()
{
TextDrawSetString(YourText, Announce[random(sizeof(Announce))]);
return 1;
}

