Jump to content

Woovie

Retired Staff
  • Posts

    1,093
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by Woovie

  1. That's just a normal forum rank. It clearly states "I'm an average nobody" As it states on the wiki, setPedAnalogControlStat is client only. You're clearly trying to use it serverside as the global 'setPedAnalogControlState' is nil.
  2. playSound occurs client side. You need to use triggerClientEvent from the server to cause each client's playSound to work.
  3. Here's how it would look otherwise. local messages = {"hello","hi","hey"} local time = 5000 function pickMessage() local whatMessage = math.random(1,#messages) return messages[whatMessage] end function outputRandomMessage() local message = pickMessage outputChatBox(message) end function resourceStart() setTimer(outputRandomMessage,time,0) end addEventHandler("onResourceStart", resourceRoot, resourceStart) That's an overly unnecessary way to do it essentially
  4. It works fine, I just tested it.
  5. Great job as usual. You make really nice maps, keep it up.
  6. I'll try to test these myself and report them.
  7. Sure, look up [NAKD]Woovie on Steam. IRC is Internet Chat Relay. You have to use mibbit.com or something to connect. Feel free to add me on Steam though.
  8. If you come on IRC, I can help you faster. join irc.gtanet.com #mta via mibbit or a real client like HexChat.
  9. oops! too much javascript
  10. Bilal is not being considered for a moderation position. If you voted for him, vote for someone else.
  11. local messages = ["hey","hello","hi"] setTimer(function() outputChatBox(messages[math.random(1,#messages)]) end, 5000,0) This will output a random message every 5 seconds.
  12. Edit your ACL when the server is offline. You can also try aclReload() to see if it updates.
  13. Well for one, it isn't a pixel-y mess.
  14. Woovie

    isPedSkin

    Clearly he couldn't figure out the function name, so how would the wiki help? It woudln't.
  15. Under "Advanced Settings" there's a setting called "Server browser speed", lower it to the lowest setting. Your modem is incapable of handling the data rate.
  16. What I mean is for a new message type. Don't auto open the tab, but log that in case I decide I want to open it.
  17. Perhaps log the information to a lua table, so that if you DO add the tab, it's backlog exists. Otherwise, I'd agree with no.
  18. It will definitely decrease traffic usage.
  19. Woovie

    Problem?

    It looks like your models aren't loading for some reason, be it hard drive speed or even that the server owner removed the world model for some reason.
  20. What are you trying to limit exactly? You put 2 functions and some table. Need to be a bit more specific.
  21. Woovie

    isPedSkin

    Wait I guess I posted the getElementModel. Must have not clicked the submit button! You did submit, but that was probably wrong, that is why any moderator removed it. And thanks lopez. It wasn't wrong, the reply was rude and a bit dimeaning so I removed it.
  22. I was going for easier to understand. They work identically though.
  23. if getPlayerTeam(thePlayer)==getTeamFromName("Police") then --blah blah end
×
×
  • Create New...