15.08.2010, 09:40
Hey guys, it's me again xD
But this Time isn't it a Bug or something like that :P
1.: I have some commands and Pickups, wich allows you to go to a secret Place, and i need a cool Down Timer for it!
One of theat cmd is this:
If i want now a cool down timer with , for example, 60 seconds, what do i have to do?
I have no idea *cry*
2.: I want to make a think like a "Stunt Announcer" (in the server config file is Announcments on). I add them already, but nothing happens >.<
I have the announces at LuxAdmin and at my GM, but both isn't working >.<
GM:
LuxAdmin:
What's the problem? >.<
But this Time isn't it a Bug or something like that :P
1.: I have some commands and Pickups, wich allows you to go to a secret Place, and i need a cool Down Timer for it!
One of theat cmd is this:
Код:
if (strcmp("/underground", cmdtext, true, 10) ==0) { SendClientMessage(playerid,BLUE,"You're now in the Underground. Be carefull, an earthquake might detsroy everything..."); SetPlayerPos(playerid,2466.0740,-1658.8375,-51.4123); SetPlayerFacingAngle(playerid,104.3511); return 1; }
I have no idea *cry*
2.: I want to make a think like a "Stunt Announcer" (in the server config file is Announcments on). I add them already, but nothing happens >.<
I have the announces at LuxAdmin and at my GM, but both isn't working >.<
GM:
Код:
new RandMessages[][] = { "Add our IP (not aviable yet >.<) to your Favourites list, so you can always play!", "Please follow the /rules! We don't want to warn/kick/ban you =)", "Dont ask how to be Admin or VIP - visit http://atdm.smfforfree3.com/index.php", "Visit our website: http://atdm.smfforfree3.com/index.php", "Like The Server? Tell the Forum URL to your Freinds!", "Enjoy the Stay at 'Awesome Team Death Matches' made by [COD5]Niko[SA]" }; forward RandMessagesx(); public RandMessagesx() { SendClientMessageToAll(COLOR_ORANGE, RandMessages[random(sizeof(RandMessages))]); return 1; }
Код:
//============================================================================== // -> Random Messages (Announcements) //(Only if "Announcements" is enable in Config file) //============================================================================== new RandomMessages[][] = { "Suspect of ~r~Cheaters? ~w~Use ~y~/report [id] [Reason]", "Respect ~b~all server ~y~Rules and Admins!", "Get a ~g~VIP ~w~Account ~b~... apply at Forum: http://atdm.smfforfree3.com/index.php! For access lot of new ~y~features!", "You not visited we ~g~site?~w~ Visit now: ~p~http://atdm.smfforfree3.com/index.php", "Add our IP (not aviable yet >.<) to your Favourites list, so you can always play!", "Please follow the /rules! We don't want to warn/kick/ban you =)", "Dont ask how to be Admin or VIP - visit http://atdm.smfforfree3.com/index.php", "Visit our website: http://atdm.smfforfree3.com/index.php", "Like The Server? Tell the Forum URL to your Freinds!", "Enjoy the Stay at 'Awesome Team Death Matches' made by [COD5]Niko[SA]" };