View Single Post
  #10  
Old 03-26-2015, 02:17 PM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,604
Default

Well you could have multiple calls or do a one-line for loop like this (if your items were 1001, 1003, 1005, etc):
Code:
sub EVENT_SAY {
    if ($text=~/Hail/) {
        quest::summonitem($_) for (1001, 1003, 1005);
    }
}
Reply With Quote