Thread: Remove Item
View Single Post
  #13  
Old 07-31-2009, 08:54 AM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,498
Default

Here's at least 1 of your problems:

Code:
if($signal == 11) && (plugin::check_hasitem($npc, 3233)) {
should be

Code:
if(($signal == 11) && (plugin::check_hasitem($npc, 3233)) {
Haven't tested out the other portions for you yet.
Reply With Quote