View Single Post
  #14  
Old 01-07-2018, 07:16 PM
Minirva
Fire Beetle
 
Join Date: Nov 2012
Posts: 19
Default

Okay I got it to work by adding the code...

Code:
sub EVENT_CLICKDOOR{
    if($status > 200){
        plugin::Doors_Manipulation_EVENT_CLICKDOOR(); # Door Manipulation Plugin
    }
}
 
sub EVENT_SAY{
    if($status > 200){
        plugin::Doors_Manipulation_EVENT_SAY(); # Door Manipulation Plugin
    }
}
...to a player.pl in the zone I was testing with. Caught this going back over everything I tried earlier today, so must have just missed trying this the first time.

Why does it only work with a player.pl in the zone and not with using global_player.pl?
Reply With Quote