10.11.2012, 18:58
try this, it is what i use to use.
it says the bug stuff but it really is not.
Код:
new BugMessage; forward Bug(); public Bug() { if(!BugMessage) { SendClientMessageToAll(COLOR_LIME, "Found a bug? Report it using /reportbug and scripters will check it once possible."); BugMessage = 1; } else if(BugMessage == 1) { SendClientMessageToAll(COLOR_ORANGE, "Can't find the place you're looking for? /search has some useful locations."); BugMessage = 2; } else if(BugMessage == 2) { SendClientMessageToAll(COLOR_YELLOW, "You can request help from our community helpers using /helpme."); BugMessage = 3; } else if(BugMessage == 3) { SendClientMessageToAll(COLOR_RED, "Want to get free VIP packages? /refhelp."); BugMessage = 4; } else if(BugMessage == 4) { SendClientMessageToAll(COLOR_RED, "If you wish to have a stats refund, please visit www.zGaming.org and fill your request there."); BugMessage = 0; } return 1; }