Jump to content

Woovie

Retired Staff
  • Posts

    1,093
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by Woovie

  1. This isn't a resource, post in the scripting section next time.
  2. Woovie

    DayZ Mod NEEDED

    The latest MTA DayZ can be found on our website, not on that crappy moddb link. http://www.mtadayz.net/forum/viewforum.php?f=20
  3. You don't understand MTA support for animations vs clientside mods do you?
  4. Custom animation won't be supported anytime soon. As noki said, please search before you ask. If you want a friends list system, I'm sure someone could write one, but you need to get server owners to adopt it and have a database somewhere that handles who you are friends with.
  5. Woovie

    MTA DayZ Tent

    https://www.dropbox.com/s/nt9llmutc6i6ngp/tent.zip I modified the tent and added a proper collision and shadow map. This is an independent resource, just start it after the DayZ resource and it should replace fine! Enjoy.
  6. I wouldn't recommend that group system purely because it uses element data, which is very (network) resource heavy and easily exploited. I'm writing my own that uses tables, but it's not quite ready yet. Otherwise, this looks like a really good resource, nice work. Also, it's SQLite, not SQL Light.
  7. This isn't phpbb help forums. If you can't install it yourself, perhaps you shouldn't be running a forum either.
  8. The server controls the whitelist via script. Global blacklist for specific sites. We may also manage a global whitelist so sites like say reddit.com are whitelisted permanently.
  9. LOL. Security is the #1 concern. Let's say if someone managed to exploit the browser to download a file thanks to a completely open backend with no white/blacklist. That file hits your PC and it's a virus that can spread to the server and back to every player on it. Soon it spreads to everyone in MTA. Seems unreasonable, right? Not so much. http://www.garrysmod.com/2014/04/19/exp ... -released/ This more or less just happened to Garry's Mod. Yes, it was a virus developed to work via a videogame. Security will always be the first priority.
  10. Make sure your server is version 1.4.
  11. So you want to store 2 values in 1 spot? Your answer is tables. local weapons = {} tabel.insert ( Cart.weapons, { weaponid, weaponid } ) This will appear like this. Cart.weapons = { { weaponid, weaponid }, { weaponid, weaponid }, { weaponid, weaponid } } OR if you meant insert more values, just call table.insert again.
  12. Woovie

    MTA DAYZ HELP

    Well it's pretty clear you didn't pay for the source code, especially considering you know nothing about Lua. No one is going to help you here, and if you post the leaked source, you'll get banned.
  13. No worries, I'll be redoing them on all languages for consistency.
  14. 2012 works fine with Kam's. PEBKAC.
  15. Yes, but more like resource:file.html. Nothing should have access outside of its own resource unless exported somehow.
  16. You'll need to use these events and functions. Serverside Add a handler for onPlayerLogin https://wiki.multitheftauto.com/wiki/OnPlayerLogin Make it fire triggerClientEvent with event "onClientPlayerLogin" https://wiki.multitheftauto.com/wiki/TriggerClientEvent Client Add a new event called "onClientPlayerLogin" using addEvent https://wiki.multitheftauto.com/wiki/AddEvent Add an event handler for "onClientPlayerLogin" and cause it to trigger like this addEventHandler ( "onClientPlayerLogin", root, function() stopSound ( sound ) end )
  17. Woovie

    BPM Counter

    Userdata is an MTA element. If you bothered to read the wiki entry for setTimer, you would see it returns a timer element. Furthermore, you need to change line 3 to look like this. counter = setTimer(getSoundBPM, 50, 0) I don't understand at all what you're attempting to do with this, but you're doing it wrong.
  18. Woovie

    Mta timeouting

    Beg the server admins.
  19. Woovie

    Cameras

    Is your user.* in ACL Admin group?
  20. Woovie

    Cars On Respawn

    Stop the play resource.
  21. https://wiki.multitheftauto.com/wiki/ACL
×
×
  • Create New...