Jump to content

ZL|LuCaS

Members
  • Posts

    293
  • Joined

  • Last visited

  • Days Won

    2

ZL|LuCaS last won the day on May 13 2020

ZL|LuCaS had the most liked content!

Details

  • Gang
    MTA Scripters.
  • Occupation
    MTA Scripters

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

ZL|LuCaS's Achievements

Pee-Wee

Pee-Wee (21/54)

11

Reputation

  1. what is the function to remove traffic limits for vehicles on original gta highways
  2. Gostei muito das dicas @Lord Henry, eu já avia pensado em começar com a lógica, mas pensei primeiro em mostrar alguns scripts antes de começar a ensinar a lógica, as suas dicas serão muito úteis Obrigado.
  3. sera que alguém ainda quer aprender a fazer seus próprios scripts? essa é a primeira vídeo aula se tiver mais inscritos no canal eu farei mais videos. resources haha foi meu primeiro video "RECURSOS"
  4. good optimization good work. You should already know that you can not set this parent
  5. This is a problem with dimensions other lag that may appear when you use removePedFromVehicle with the moving vehicle you may notice the lock in the vehicle to correct can you use setElementSyncer
  6. Your English does not help but I guess you do not know what you're doing. local arenaPlayers = {} function updatePlayersInArena() --local players = getElementsByType("player") for id,player in ipairs(arenaPlayers) do if player == source then --if getElementData(player,"arenaTag") then table.remove(arenaPlayers,id) --end end end if #arenaPlayers <= 0 then outputChatBox("Arena is empty, setting default state") setRaceState("none") end end addEventHandler( "onPlayerQuit", getRootElement(), updatePlayersInArena)
  7. You're doing everything wrong, my friend. if #arenaPlayers <= 0 then outputChatBox("Arena is empty, setting default state") setRaceState("none") end will never be zero if #arenaPlayers <= 0 then table.insert(arenaPlayers,player) You are adding the player to the table so it will not return zero.
  8. 734: not getting a number. 10: is not managing to export 'item-system:giveItem' 83: counting players of a team that does not exist
  9. sorry but there are lots of examples in the whole forum
  10. show your code. or you can only use interpolateBetween
  11. ZL|LuCaS

    Radar position

    you need to change height position of the screen local xFactor, yFactor = sx/1366,sy/768
×
×
  • Create New...