Jump to content

#RooTs

Members
  • Posts

    1,990
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by #RooTs

  1. it looks good. more, where will be the top? which appears my server?
  2. @FelipeMallmann, gostei da sua explicação. mais tenho uma duvida... acho que essas 2 variáveis/funções getPedClothes addPedClothes vai ser útil apenas para a Skin "0" se ele estiver usando outra Skin o code dele vai dar erro. certo ? para isso ele teria que checar se a skin é "0" se não for, então as 2 funções citadas logo a cima não irá setar as roupas local id = getElementModel (source) if id == 0 then --code end pelo menos pra mim deu erro
  3. yes. original https://community.multitheftauto.com/in ... s&id=10987 I think you should trust me more, do not you think? He gave work to find it
  4. stolen https://community.multitheftauto.com/in ... s&id=13298
  5. he does not know teach people who have never worked with login panel in HTML
  6. where the argument rotation? tempPed = createPed ( getElementModel ( localPlayer ), 0, 0, 0 );
  7. try this function fbiscript () local x, y, z = getElementPosition( source ) rancher = createVehicle ( 490, x, y, z+2 ) end addEvent ("fbi", true) addEventHandler ("fbi", getRootElement(), fbiscript) --or function fbiscript (thePlayer) local x, y, z = getElementPosition( thePlayer ) rancher = createVehicle ( 490, x, y, z+2 ) end addEvent ("fbi", true) addEventHandler ("fbi", getRootElement(), fbiscript)
  8. you mean like this? setTimer (function() if status == true then triggerServerEvent("CIFarmor.buyArmor", localPlayer, localPlayer) end end, 5000, 0 )
  9. local x, y, z = getElementPosition(source) @TAPL, source not work in ClientSide
  10. delete https://community.multitheftauto.com/ind ... ls&id=8198 DONE
  11. GetKeyState is clientSide ? okay @KariiiM, thanks.
  12. getKeyState It works on 2 sides? client and server side ? I want to know if it works in server.lua or client.lua
  13. I want to set an element when I press 2 buttons. (W + space) if I just press "W". it will not turn on, and I shake, "w" + "space" it activates I thought about it, would work ? if getKeyState( "w" ) and getKeyState( "space" ) then
  14. no decription https://community.multitheftauto.com/in ... s&id=13235 https://community.multitheftauto.com/in ... s&id=13198 https://community.multitheftauto.com/in ... s&id=13160 https://community.multitheftauto.com/in ... s&id=11587 https://community.multitheftauto.com/in ... s&id=10148 https://community.multitheftauto.com/in ... ls&id=8811 https://community.multitheftauto.com/in ... ls&id=8801 https://community.multitheftauto.com/in ... ls&id=7982 https://community.multitheftauto.com/in ... ls&id=7723 https://community.multitheftauto.com/in ... s&id=13199 https://community.multitheftauto.com/in ... s&id=13174 https://community.multitheftauto.com/in ... s&id=12767 https://community.multitheftauto.com/in ... s&id=10147 https://community.multitheftauto.com/in ... ls&id=8910 https://community.multitheftauto.com/in ... ls&id=8803 https://community.multitheftauto.com/in ... ls&id=8696 https://community.multitheftauto.com/in ... ls&id=7983 https://community.multitheftauto.com/in ... ls&id=7903 https://community.multitheftauto.com/in ... ls&id=7724 DONE. Extra note: most are maps, they don't need a description.
  15. #RooTs

    [HELP] Hud

    you can also do this way local Weapon = getPedWeapon(getLocalPlayer()) if not Weapon == 0 or Weapon == 1 or Weapon == 2 or Weapon == 3 or Weapon == 4 then
  16. duplicate https://community.multitheftauto.com/in ... s&id=13255 https://community.multitheftauto.com/in ... s&id=13254 just keep the https://community.multitheftauto.com/in ... s&id=13254 DONE
  17. moveObject no work in vehicle
  18. #RooTs

    [HELP] Hud

    remove dxDrawBorderedText. and add dxDrawText
  19. delete https://community.multitheftauto.com/in ... ls&id=8199 DONE
  20. delete https://community.multitheftauto.com/ind ... s&id=10908 DONE
  21. need not block .. just wait others with more experience... sorry if my help it was no
  22. use music/sound in url EX: playSound and playSound3D function onResourceStart() local sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true) -- add url local sound = playSound3D("http://YourSite.com/sounds/song.mp3", 373.14, -125.21, 1001, true) end addEventHandler("onClientResourceStart", resourceRoot, onResourceStart) function wasted (killer, weapon, bodypart) local sound = playSound("sounds/wasted.mp3") -- add url local sound = playSound("http://YourSite.com/sounds/wasted.mp3") setSoundVolume(sound, 0.5) -- set the sound volume to 50% end addEventHandler("onClientPlayerWasted", localPlayer, wasted)
×
×
  • Create New...