Jump to content

JR10

Retired Staff
  • Posts

    2,947
  • Joined

  • Last visited

Everything posted by JR10

  1. JR10

    plz help

    No, you are not going to get what you want, this easy. Learn and make it yourself. https://wiki.multitheftauto.com/wiki/Main_Page
  2. JR10

    Music in area

    Use playSound several times.
  3. You won't get what you want for free, learn and make it yourself https://wiki.multitheftauto.com/wiki/Main_Page
  4. function ToggleMenu () guiSetVisible ( GUIEditor_Window[1] , not guiGetVisible ( GUIEditor_Window[1] ) ) end
  5. JR10

    Problems

    addCommandHandler, already does that. The command can be used in the console without the "/". And in the chat box with "/".
  6. JR10

    GUI Problem

    function enableGUI () if getPedOccupiedVehicle(getLocalPlayer( )) == false then outputChatBox ("You're not in a vehicle") else if guiGetVisible(GUI_Window[1]) == false then guiSetVisible(GUI_Window[1], true) showCursor(true) else guiSetVisible(GUI_Window[1], false) showCursor(false) end end end bindKey ("1", "down", enableGUI )
  7. Well, get that friend to finish it, or give up.
  8. Well, that points out that you didn't make this.
  9. Ok here is a question: Where the hell is any server sided script?
  10. That's why I'm waiting for the meta.
  11. Tell me the lua files this resource have.
  12. This is not working, you can't use this edited version, to play.
  13. Well, you could have just stole it. Or the server script, is not working, like it should be.
  14. From where did you get the client?
  15. No one is going to script that for you, not for free. Make it yourself, we do not accept requests.
  16. You can add more checks if the model == Example: function destroyNeon ( thePlayer, commandName ) if ( thePlayer ) then local neon = getAttachedElements (veh) for index , attachedElement in ipairs ( neon ) do if getElementModel ( attachedElement ) == mineModel or getElementModel ( attachedElement ) == mineModel or getElementModel ( attachedElement ) == mineModel then destroyElement (attachedElement) end end end end Etc...
  17. function destroyNeon ( thePlayer, commandName ) if ( thePlayer ) then local neon = getAttachedElements (veh) for index , attachedElement in ipairs ( neon ) do if getElementModel ( attachedElement ) == mineModel then destroyElement (attachedElement) end end end end Replace mineModel with mine's model.
  18. Stole zombies: https://community.multitheftauto.com/index.php?p= ... ls&id=2712 Stole Cargo ship : https://community.multitheftauto.com/index.php?p= ... ls&id=2710 stole car_lock : https://community.multitheftauto.com/index.php?p= ... ls&id=2711 There is a virus in all of them.
  19. What you mean by "return table in chatbox"?? Outputting their types? for index , attachedElement in ipairs ( getAttachedElements ( vehicle ) ) do outputChatBox ( getElementType ( attachedElement ) ) end
×
×
  • Create New...