Jump to content

How to block players from a place?


Turbe$Z

Recommended Posts

Posted

I want, if a player go in, the player teleport away automatic, but if a admin go in, do not teleport away. How to create this? :o 

My Fun server:

560x95_FFFFFF_FF9900_000000_000000.png

My DD server:

n-560x95_FFFFFF_FFFFFF_000000_000000.png

Posted

Just use these functions 

createColCuboid() -- or any col shape
"onColShapeHit" --event

--example( not tested )
colShape = createColCuboid( --[[ fill here with the parameters ]] )

addEventHandler( "onColShapeHit", colShape, function( hitElement, dimension )
    if not ( dimension ) then return false end 
    
    if( isElement( hitElement) and getElementType( hitElement ) == "player" ) then 
      local accName = getAccountName ( getPlayerAccount ( hitElement ) )
      if not( isObjectInACLGroup ("user."..accName, aclGetGroup ( "Admin" ) ) ) then
		--teleport out of the colshape
      end 
    end 
 end )

 

  • Like 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...