Jump to content

blehmeh

Members
  • Posts

    47
  • Joined

  • Last visited

Everything posted by blehmeh

  1. I could post a tutorial later.
  2. How isn't it possible? You can replace txd, col and dff, that's all you need. I already did it once, just replace some useless object with the txd, dff and col.
  3. The script functions only with one follower, and I don't think anyone will edit it to help you, it's not easy.
  4. The admin resource is added to the admin group by default, but in case you changed the acl.xml: <object name="resource.admin"/> Add this to the admin group.
  5. You're using old scripts which have deprecated functions. Also, one of your resources needs admin access. Add this to your admin group: <object name="resource.*"> That will give admin access to all your resources, do this only if you trust all your resources. Now for the old scripts, you may need to use the "upgrade" command, it replaces the deprecated functions with their newer alternatives. Don't worry though, it backups the scripts before upgrading.
  6. Castro's script and your original will work no matter the player is admin or not. Try this: function dmg(thePlayer) local account = getPlayerAccount(thePlayer) if not account or isGuestAccount(account) then return end local accountName = getAccountName(account) if isObjectInACLGroup ( "user.".. accountName, aclGetGroup ( "Admin" ) ) or isObjectInACLGroup ( "user.".. accountName, aclGetGroup ( "Moderator" ) ) then local car = getPedOccupiedVehicle (thePlayer) if isVehicleDamageProof(car) then setVehicleDamageProof(car, false) outputChatBox("Your car is mortable", thePlayer) else setVehicleDamageProof(car, true) outputChatBox("Your car is immortable", thePlayer) end else outputChatBox("You have no right to use this command.", thePlayer) end end addCommandHandler ( "damage", dmg )
  7. Love it, some audio effects and background music and it'll perfect.
  8. Just replace set/getElementHealth to set/getPedArmor.
  9. Check the chatbox and debugscript.
  10. blehmeh

    Race Map

    Hover with your mouse over the items at the left bottom, use the mouse scroll (mouse 3) to change the items to the race items.
  11. https://community.multitheftauto.com/index.php?p= ... ls&id=7315 Resource only contains a readme, with an external link to download the resource.
  12. Awesome work! I like that SAW skin.
  13. blehmeh

    Help Key pad

    addEventHandler("onKeypadButtonClicked",root,function() ... end) What's that? You didn't follow the instructions right, you weren't supposed to copy that. Just remove that line.
  14. The second argument of addCommandHandler should be the function not the player. function Gravity(thePlayer) setPedGravity(thePlayer ,0.100) end addCommandHandler ("grav" , Gravity)
  15. I do, and I still think it's not needed.
  16. I watched the video before posting, I still don't get the point. Just sort the servers and scroll till you see a satisfying player count.
  17. blehmeh

    Wipeout map

    Looks awesome, nice work!
  18. Why would you want to reset sorting? You either sort or search.
  19. Better edit your requirements to be able to find someone.
×
×
  • Create New...