- script Sample#hunting -1,{ OnNPCKillEvent: if( compare( strcharinfo(3),"xmas_dun" ) ){ if( killedrid == 1248 ){ setarray .@Items[0],607,608; setarray .@Rates[0], ( isequipped(.EquipID)? 50:0 ),( isequipped(.EquipID)? 5:0 ); }else if( killedrid == 1249 ){ setarray .@Items[0],607,608,512; setarray .@Rates[0], ( isequipped(.EquipID)? 550:1 ),( isequipped(.EquipID)? 250:0 ),( isequipped(.EquipID)? 30:10 ); }else end; if( getarraysize( .@Items ) ){ set .@Random,rand( getarraysize( .@Items ) ); if( rand(10000) < .@Rates[.@Random] ) getitem .@Items[.@Random],1; } } end; OnInit: set .EquipID,5022; end; }