Jump to content

Fabioxps

Members
  • Posts

    229
  • Joined

  • Last visited

Everything posted by Fabioxps

  1. Fabioxps

    erro?

    erro ? function lalass() removeEventHandler("onClientRender",getRootElement(),drawToptimesIntreface) removeEventHandler("onClientRender",getRootElement(),renderElements) removeEventHandler("onClientRender",getRootElement(),lala) end addEventHandler("onClientGUIClick",gButtons[1],lalass,false)
  2. I want to create a label in front of a button,
  3. ?
  4. I want to create a label in front of a button but do not want to go to the back of the button
  5. how do I leave a "Label", always in front of a button?
  6. I want to make camera zoom, and then stops. I want to use onClientRender
  7. function startZoom() z = 100 setCameraMatrix(0,0,z,-1056.7127685547, 1042.8658447266, 38.503734588623) setTimer(function() z = z - 1 setCameraMatrix(0,0,z,-1056.7127685547, 1032.8658447266, 38.503734588623) end, 50, 95) end addEventHandler("onClientRender", getRootElement(), startZoom) what do this wrong?
  8. Fabioxps

    camera zoom

    how to put zoom on the camera, and stop at a target function StartCamera() local z = 100 setCameraMatrix(0,0,z,-1056.7127685547, 1042.8658447266, 38.503734588623) setTimer(function() z = z - 1 setCameraMatrix(0,0,z,-1056.7127685547, 1032.8658447266, 38.503734588623) end,1000,100) end addEventHandler("onClientRender", root, StartCamera)
  9. Wtf? @DNL,Castilho, have any examples of how to remove an event using another script?
  10. have any examples of how to remove an event using another script?
  11. I just want to remove an event from my script, "Side", the more I want to remove the event using another script
  12. someone?
  13. how can I export from another script to remove an event? function drawSidebarNote(player) return exports.Side:drawSidebarNote(player) end local visible = true bindKey("F6","down", function() if visible then removeEventHandler("onClientRender",getRootElement(),drawSidebarNote) visible = false else addEventHandler("onClientRender",getRootElement(),drawSidebarNote) visible = true end end)
  14. yes
  15. can someone help me
  16. how to remove an event from a script in another script
  17. how can I make the player does not leave the vehicle
  18. Why? It isn't your map, so you shouldn't delete the messages. wtf?
  19. I can block messages from maps
  20. Video tutorial not
  21. viewtopic.php?f=148&t=40809
  22. I want that blocks messages from the maps "[DM]" exemple: [DM] Luiire: -[Mortal Style]
  23. (race) how can I cancel messages from scripts of the maps without having to remove all the scripts of the maps, I do not want that pile of Menssagens in chat.
  24. Fabioxps

    radar help

    I do not understand what do you mean?
  25. Fabioxps

    radar help

    I want the "blips" appear only to players who are in the same Dimension Code removed.
×
×
  • Create New...