Jump to content

GameZoneX

Members
  • Posts

    36
  • Joined

  • Last visited

About GameZoneX

  • Birthday 22/04/1995

Details

  • Location
    the Netherlands

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

GameZoneX's Achievements

Rat

Rat (9/54)

0

Reputation

  1. Oh my god, that is epic! You are going to put this for public?
  2. Looks cool, but why not in the destruction derby arena?
  3. What kind of functions? Some are in the meta.xml of the freeroam resource.
  4. Add this line in your ACL under the group you want it. So you want that normal players can't use /kill, at the following under the group default: And under admin and moderator Want to change it for another command, just change kill for the command name.
  5. Yes i am admin, but the resource isn't in my admin group. Is that needed?
  6. Hello, Is it possible in game mode play to restrict skin number 211 and 217 because i use them for our staff. People can still take them by using /ss 211/217. Thanks
  7. Go to mtaserver.conf. There you find a list with Add this line and the name off the resource:
  8. Change the following part: function spawn(player) repeat until spawnPlayer ( player, 2412+math.random(1,1), -1413+math.random(1,1),24.4, 90, math.random(9,288) ) fadeCamera(player, true) setCameraTarget(player, player) The numberic part is the place you spawn. Change these coordinates: 2412+math.random(1,1), -1413+math.random(1,1),24.4, 90
  9. Best thing you can do is start learning .LUA scripting. Some of the resources you ask for are in the community. For learning LUA: https://wiki.multitheftauto.com/wiki/Scr ... troduction For resources: https://community.multitheftauto.com/index.php?p=resources Any questions can be asked on the forums
  10. Have it, and you saw it yesterday
  11. Can you tell me anything about the spaces and the end's? I don't understand when to use them.
  12. Hello, I tried to make a script that will kill you if you are no admin in a specific zone. But nothing happens when i spawn as a normal player. Can anyone look at the script? myMarker = createMarker ( -3456, 1555, 2, 'cylinder', 100.0, 225, 0, 0, 0 ) function markerHit (player) local theAccount = getPlayerAccount(player) if theAccount then local accountName = getAccountName(theAccount) if isObjectInACLGroup ( "user." .. accountName, aclGetGroup ( "Admin" ) ) then outputChatBox ( "** You have entered the admin base **", hitElement, 255, 0, 0 ) else killPlayer ( hitElement ) addEventHandler( "onMarkerHit", theMarker )
×
×
  • Create New...