View Single Post
  #3  
Old 05-29-2012, 10:30 PM
sorvani
Dragon
 
Join Date: May 2010
Posts: 965
Default

also, as has been stated many times around the forum, the return plugin should be outside any if statement, at the end of the routine.

Code:
sub EVENT_ITEM {
...some code here...
  #very last thing
  plugin::return_items(\%itemcount);
}
Reply With Quote