View Single Post
  #8  
Old 04-04-2014, 12:44 AM
sorvani
Dragon
 
Join Date: May 2010
Posts: 965
Default

You NEVER EVER EVER put the return items call inside ANY logic blocks.

It goes in a script once and once only at the end of sub EVENT_ITEM

Code:
sub EVENT_ITEM {
    if blah blah blah {
        lot of funky logic to do what you want. if/else/elsif/etc.
    }
    plugin::return_items(\%itemcount);
}
Reply With Quote