Thread: Random Plat
View Single Post
  #2  
Old 06-21-2017, 06:19 PM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,589
Default

Here's an example using a Cloth Cap turn-in.
Code:
sub EVENT_ITEM {
    if (plugin::check_handin(\%itemcount, 1001 => 1)) {
        my $platinum = quest::ChooseRandom(1..10);
        quest::givecash(0, 0, 0, $platinum);
        plugin::Whisper("Thank you for the Cloth Cap, here is $platinum Platinum.");
    }
}
Reply With Quote