Jump to content

dzek (varez)

Retired Staff
  • Posts

    4,144
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by dzek (varez)

  1. this is SERVER event, it will never trigger: addEventHandler( "onPlayerJoin", getRootElement(), hudChanger ) -- The same, but also on player join. remove that line. dont try to change it - it will cause unwanted effect. You really dont need this.
  2. You want to make it admin command or free for all? I don't know why you want this in race - everybody will use infernus.. Also i don't understand what you mean:
  3. You have already created topic about this, You didnt say if advice from this post was working or not (i mean, set FF to true)
  4. i dunno about ghostmode - if its an addon to race, or its built-in race feature. post this script here, and ill check if it can be easly modified
  5. Archivo WinRAR and under: Archivo WinRAR ZIP suggests that you packed your resoure as RAR while it should be packed as ZIP
  6. https://community.multitheftauto.com/ is working again since serveral days.. your posts look like random..
  7. dzek (varez)

    Server ...

    uhm, TP-Links are popular ones, i've got one too.. please dont make double posts.. are you sure you want to lock this topic?
  8. never seen such thing. you will have to learn lua a bit and modify race resource i think..
  9. hmm, never used settings, i think its time to get some knowledge, i'll edit this post within 15 minutes edit: got it, was harder that i think it will, but got it: client: zlimit = -10000 setTimer(function() local xx,yy,zz = getElementPosition(getLocalPlayer()) if (not isPlayerWasted(getLocalPlayer()) and zz < zlimit) then triggerServerEvent("onPlayerRequestSuicide", getLocalPlayer()) end end, 250, 0) addEvent("onClientCall_race",true) addEventHandler("onClientCall_race", getRootElement(), function(name, veh, check, obj, pick, opt) if name == 'initRace' then if (opt['Zlimit']) then zlimit = tonumber(opt['Zlimit']) else zlimit = -10000 end end end) server addEvent("onPlayerRequestSuicide", true) addEvent("onPlayerRequestSuicide", getRootElement(), function() killPed(source) end) i will make it new resource, and upload to community tommorow, i think some ppl will want to have this
  10. add this as client side script (more about resources, meta.xml etc on mta wiki) setTimer(function() local xx,yy,zz = getElementPosition(getLocalPlayer()) if (not isPlayerWasted(getLocalPlayer()) and zz < 50) then triggerServerEvent("onPlayerRequestSuicide", getLocalPlayer()) end end, 250, 0) and this as server side: addEvent("onPlayerRequestSuicide", true) addEvent("onPlayerRequestSuicide", getRootElement(), function() killPed(source) end)
  11. restart server. be sure to put resource in right folder /server/mods/deathmatch/resources (some ppl skips "server" folder)
  12. its for mta:sa i assume, so this is wrong subforum for this question. just put zip file (dont extract) into /server/mods/deathmatch/resources folder and start it from console ("start name_of_resource") read Server manual
  13. dzek (varez)

    I miss this

    i know this is not the point, but Talidan mentioned that so i'm waiting for arguments as i'm curious.. probably because 50% of VC movies have this song as background, am i right?
  14. yup
  15. dzek (varez)

    I miss this

    whats wrong with "Bodies" song?
  16. Next time search before posting: viewtopic.php?f=104&t=28669&p=317819&hilit=modified#p317819
  17. Remove Viruses from your computer they are infecting your exe files just after download and installer self test is complaining because it is modified
  18. This is just random. You are confusing server side and client side. Also You are trying to display player element. This is all wrong. I think you are trying to "learn" lua by only reading examples from wiki. You can't do it this way. Follow tutorial. Check wiki main page, there's link saying Scripting Introduction
  19. Also Remove "local" from line 10 of cowturbo snippet
  20. dzek (varez)

    I miss this

    Well- You can still play mta:vc, check out Towncivilian's signature, there is download link. Servers list are on game-monitor.com
  21. You have two functions with same name.one is overwriting older function. You can remove first one
  22. dzek (varez)

    Mass Cloner?

    With Roller coaster generator you are able to create long straight line
  23. And My solution is not working?
  24. what??
  25. you mean [lua] [/lua] tags? yup, its working
×
×
  • Create New...