Jump to content

-ffs-Sniper

Members
  • Posts

    253
  • Joined

  • Last visited

Everything posted by -ffs-Sniper

  1. -ffs-Sniper

    Error.

    No es correcto pekio123... local papel, tinta, escritura function obj(thePlayer, cmd) if(papel < 1 and tinta < 2) then outputChatBox("No tienes los materiales necesarios.", thePlayer) return elseif(escritura == true) then outputChatBox("Tienes la mano cansada.", thePlayer) return end outputChatBox("Escritura.", thePlayer) escritura = true setTimer ( function() outputChatBox("Te recuperaste.", thePlayer) escritura = false end, 20000, 1 ) end
  2. Use a VPN proxy: -Hotspotshield -CyberGhost VPN (30 day trial) -and much more, just google for it
  3. function lasv () local vehicle = getPedOccupiedVehicle( localPlayer ) local element = ( vehicle and isElement( vehicle ) ) and vehicle or localPlayer setElementPosition ( element, 1943, 1424, 73 ) end addCommandHandler ( "lv", lasv ) -------------------------------------------------
  4. Great tool! Speeds up the general procedure of compiling tons of scripts. There is just one thing I would be really thankful for: Give us the possibility of saving the file list! I really hate adding 50+ files by hand to the program after every reboot.
  5. I didn't expect that myself at first . (I forgot to remove "low" from my code) Anyways, you're welcome.
  6. I think I found the mistake: You need to remove old clothes before adding new ones of a different type. function onEnterVehicle ( theVehicle, seat, jacked ) for i = 1, 17 do removePedClothes ( source, i ) end addPedClothes ( source, "helmet", "helmet", 16 ) addPedClothes ( source, "glasses03blue", "glasses03", 15 ) addPedClothes ( source, "tshirtwhite", "tshirt", 0 ) addPedClothes ( source, "sneakerproblu", "sneaker", 3 ) addPedClothes ( source, "bbshortwht", "boxingshort", 2 ) end addEventHandler ( "onPlayerVehicleEnter", getRootElement(), onEnterVehicle, "low" )
  7. Which line (in your example) has a nil table index? (there is no line 57)
  8. Race might already have a handler onPlayerVehicleEnter. Therefore set the handler's priority to "low". This way you can ensure your code will be executed as last. Be sure you are using the latest nightly of MTA! ->https://nightly.multitheftauto.com/ addEventHandler ( "onPlayerVehicleEnter", getRootElement(), onEnterVehicle, "low" )
  9. The function isn't available neither on the client nor server side.
  10. Most likely there are two resources running at your server outputting each chat message onPlayerChat and afterwards cancelling the event. Could you tell us what gamemode you are currently using?
  11. Please post your mtaserver.conf.
  12. Could you post the exact message your server shows? (It is really hard to understand what your issue is)
  13. Wurdest du selbst gebannt oder möchtest du jemanden entbannen?
  14. -ffs-Sniper

    Arenas

    Es más difícil de lo que imaginas...
  15. Add the following to the end of your ACL: </acl> </acl>
  16. Press 'P' ingame as an admin, click the "Resources" tab, select "race" and click "Settings", look for "Admin group list", double-click and enter the following: "Admin,SuperModerator,Moderator". At the end just restart the race resource and Moderators will be able to do /redo aswell!
  17. Add the following line to the Admin ACL (after line 368): <right name="command.refresh" access="true"></right>
  18. Where is the rest of the code? I am 90% sure this is stolen.
  19. Every function must be closed with an "end". I highly advice you to use tabulators giving you a better overview. function nodamage(attacker, bodypart) if getElementType(attacker) == 'vehicle' then cancelEvent() end end addEventHandler("onClientPlayerDamage", getLocalPlayer (),nodamage)
  20. setPlayerBlurLevel https://wiki.multitheftauto.com/wiki/SetBlurLevel
  21. I just asked you out because of curiosity. Nevermind, good luck with your hosting service!
  22. https://wiki.multitheftauto.com/wiki/Filepath -> Client file security
×
×
  • Create New...