Jump to content

#RooTs

Members
  • Posts

    1,990
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by #RooTs

  1. @Dealman, I do not have as much knowledge as well. any hint or example is welcome
  2. fail. in function if ( enablelock ) and ( isVehicleLocked( theVehicle ) ) or ( getElementData( theVehicle, "cl_vehiclelocked" ) ) then the song it is repeating endlessly, after a time
  3. All my script local sx,sy = guiGetScreenSize() local px,py = 1280,720 local x,y = (sx/px), (sy/py) local x2, y2, x3, y3 = 0, 0, 0, 0 local playing = false -- set to false function speed() local theVehicle = getPedOccupiedVehicle ( getLocalPlayer() ) if ( theVehicle ) then if ( getControlState ( "handbrake" ) ) then dxDrawImage(x*960+x2, y*470+y2, 306, 232, "files/2/hb2.png", 0,0,0, tocolor(255, 255, 255 , 255)) if ( not playing ) then playSound("files/handbrake.wav") playing = not playing end else dxDrawImage(x*960+x2, y*470+y2, 306, 232, "files/2/hb.png", 0,0,0, tocolor(255, 255, 255 , 255)) end end end addEventHandler ( "onClientRender", root, speed )
  4. line 1 local playing = true -- added and not worked
  5. hello personnel. help me, please. does anyone know? oh my god
  6. it is already set to false in line 1 local playing = false -- set to false function speed() if ( enablelight ) and ( getVehicleOverrideLights ( theVehicle ) ~= 2 ) then dxDrawImage(x*960+x2, y*470+y2, 306, 232, "files/2/light.png", 0,0,0, tocolor(255, 255, 255 , 255)) if ( not playing ) then playSound("files/lightswitch.mp3") playing = not playing end else dxDrawImage(x*960+x2, y*470+y2, 306, 232, "files/2/light2.png", 0,0,0, tocolor(255, 255, 255 , 255)) end end addEventHandler ( "onClientRender", root, speed )
  7. @WhoAmI, only worked once. when I use the event for the second time, it does not work
  8. function speed() if ( enablelight ) and ( getVehicleOverrideLights ( theVehicle ) ~= 2 ) then dxDrawImage(x*960+x2, y*470+y2, 306, 232, "files/2/light.png", 0,0,0, tocolor(255, 255, 255 , 255)) playSound("files/lightswitch.mp3") else dxDrawImage(x*960+x2, y*470+y2, 306, 232, "files/2/light2.png", 0,0,0, tocolor(255, 255, 255 , 255)) end end addEventHandler ( "onClientRender", root, speed ) there is no need for me to post everything
  9. Hello guys, I'm trying to add a sound in my event. only that the song, not stop repeating when the event is active if ( enablelight ) and ( getVehicleOverrideLights ( theVehicle ) ~= 2 ) then dxDrawImage(x*960+x2, y*470+y2, 306, 232, "files/2/light.png", 0,0,0, tocolor(255, 255, 255 , 255)) playSound("files/lightswitch.mp3") else dxDrawImage(x*960+x2, y*470+y2, 306, 232, "files/2/light2.png", 0,0,0, tocolor(255, 255, 255 , 255)) end any idea?
  10. @tosfera and @Hornet, Thanks man. Worked perfect if ( getControlState ( "handbrake" ) or getControlState ( "brake_reverse" ) ) then -- draw the red image else -- draw the white image end
  11. Bastante, isso vai depender do seu bolso amigo, acesse o site de de uma olhada você mesmo!
  12. update, sorry my bad english
  13. someone please? 10 VIEWS, help 0
  14. what is the function may I see if the vehicle It is with brake activated. I wanted to do it in an "if" EX if function then dxDrawImage(....red image........ else dxDrawImage(...white image.... end I want to make sure it is activated or not in an "if function" Thanks by help
  15. @n3wage, isso aii mano. só não entendi o que o Stanley falo ali em cima eu não sei a minha reação se fico assustado ou se dou risada, desculpa ai Stanley vc ta aqui ohh
  16. ele não quer saber isso Stanley ele quer saber qual é a diferença em criar um evento usando o addEvent
  17. sobre o suposto lag em seu servidor? pode ser o seu provedor de hospedagem ou pode até mesmo o seu Micro tente dar uma limpada no seu micro, pode ter programas indevidos excedendo o limite da sua CPU como Skype, TeamSpeak, Viros "Robo" entre outros tenho certeza que não é muito os scripts não viu, de uma olhada aii
  18. este evento é um já existente no MTA, você pode encontrar ele no WIKI por (onResourceStart) ou (onPlayerJoin) entre outros addEventHandler( "nome", getRootElement(), function( ) -- codigo end ) e este evento ele é criado por você mesmo usando ServerSide e ClientSide com o uso de ( triggerEvent ) function teste1() -- codigo end addEvent("nome", true) addEventHandler("nome", getRootElement(), teste1 ) de uma pesquisada no WIKI do MTA https://wiki.multitheftauto.com/
  19. de nada, fico feliz em poder te ajudar
  20. substitua o seu codigo por este aqui local pickup = createPickup(x1, y1, z, 3, 1212) setElementData(pickup, "amount1", math.random( 1, 25 ) ); setTimer(function() if (isElement(pickup)) then destroyElement(pickup) end end, 15000, 1) end function moneyPickupHit(player) local money = getElementData(source, "ammount") if money then givePlayerMoney(player, money) destroyElement(source) end end eu costumo usar este site cara calcular o tempo em milisegundos http://www.convertworld.com/pt/tempo/Milissegundo.html 1 min = 60000 2 min = 120000 e por aii vai
×
×
  • Create New...