Jump to content

S3Nn4oXx

Members
  • Posts

    69
  • Joined

  • Last visited

Everything posted by S3Nn4oXx

  1. I can write what i want? in ur code i can replace from State to freeze, Example ?
  2. Thanks but i don't get it, idk what to put inside (), like _,msg
  3. S3Nn4oXx

    Advertising

    Hello guys I need help, I am Beginner in LUA and idk what i did can you help me? [ADVERT]Playername: function advert() local localPlayerName = getPlayerName(getLocalPlayer()) outputChatBox ( "#FF0000[ADVERT]"..localPlayerName, getRootElement(), 255, 255, 255, true ) end addCommandHandler ( "advert", advert )
  4. S3Nn4oXx

    Help

    Guys i don't really where to put this Topic but Someone knows what's the command to skip a map in race server ?
  5. Thanks <3 to put this script then my script right? i mean my script under it
  6. Guys you know how to make Scripts for admins only, what i need to do ?
  7. it's the time (in minutes) to function be called. for example, "Message 1" will be called every 2 minutes, "another msg" every 1 etc what's the better minutes for [iNFO] Messages ?
  8. { "Message 1", 2 }, { "Message 2", 5 }, { "another msg", 1 }, { "blablablabla", 20 }, what is that numbers example in Message 1 there is number 2
  9. this will work addEventHandler("onResourceStart",root, function() setTimer ( function() setTimer(outputChatBox, 30000, 0, "Message 1", root, 255, 255, 255, true) setTimer(outputChatBox, 30000*2, 0, "Message 2", root, 255, 255, 255, true) end ) ?
  10. no example The message 1 will be in 5 minutes The message 2 will be in 10 minutes but in the same script how to do it?
  11. setTimer(function () outputChatBox("Message 1", getRootElement(), 255, 255, 255, true) outputChatBox("Message 2", getRootElement(), 255, 255, 255, true) end, 300000, 0) Like this ? addEventHandler("onResourceStart",root, function() setTimer ( function() outputChatBox("Message 1", getRootElement(), 255, 255, 255, true) outputChatBox("Message 2", getRootElement(), 255, 255, 255, true) end, 300000, 0) end )
  12. Guys if i want to make another one like this It shows in the same time, how to change it ?
  13. Now i know how to do it, Thanks a lot bro
  14. how i'm doing this show alone without the command?
  15. function server (player) setTimer ( function() outputChatBox ( "Message", getRootElement(), 255, 255, 255, true ) end, 300000,0 ) end addCommandHandler ( "teamspeak", server ) This works? how i'm doing this show alone without the command?
  16. How much is 5 Minutes? 50000?
  17. Hello guys how to do that script shows every 5 mins ? function server (player) outputChatBox ( "Message", getRootElement(), 255, 255, 255, true ) end addCommandHandler ( "teamspeak", server ) Thanks
×
×
  • Create New...