View Single Post
  #9  
Old 04-04-2014, 07:29 AM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,604
Default

Quote:
Originally Posted by sorvani View Post
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);
}
It has worked perfectly well in my other scripts.
This works just fine for me: http://perl.pastebin.mozilla.org/4759052
Reply With Quote