View Single Post
  #11  
Old 01-12-2015, 05:12 PM
iluvseq
Sarnak
 
Join Date: Aug 2009
Location: Somewhere
Posts: 53
Default

How does one actually hook in this plugin? I tried creating a global/player.pl script like this:

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
        }
}
But that doesn't work. What am I missing?
Reply With Quote