View Single Post
  #5  
Old 05-08-2009, 03:50 PM
Frankie Frankie is offline
xChugxLifex
Frankie's Avatar
Join Date: Feb 2008
Location: New York
Posts: 1,610
Frankie is a jewel in the roughFrankie is a jewel in the rough
Send a message via AIM to Frankie Send a message via MSN to Frankie
yours works great Gambet, but it wasn't really what I was looking for.

I eventually just worked out the problem myself. I have 2 actiongrabs, one on clientside, one on serverside. the one on clientside lets you go through personally. the one on serverside allows you to open the barrier for other people.

PHP Code:
function onCreated()
{
  
setshape(12*166*16);
}

function 
onActionGrab()
{
  if (
player.account in {"Sum41Freeeeek""The411"})
  {
    if (
player.chat == "open")
    {
      
dontblock();
      
sleep(2);
      
blockagain();
    }
  }
  else {
    
blockagain();
  }
}

//#CLIENTSIDE
function onCreated()
{
  
setshape(12*166*16);
}

function 
onActionGrab()
{
  if (
player.account in {"Sum41Freeeeek""The411"})
  {
    
dontblock();
    
sleep(2);
    
blockagain();
  }
  else {
    
blockagain();
  }

__________________
*Sum41Freeeeek
*Frankie
Reply With Quote