yuhsing

Untitled

Nov 10th, 2012
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1.  
  2. - script Sample#hunting -1,{
  3. OnNPCKillEvent:
  4. if( compare( strcharinfo(3),"xmas_dun" ) ){
  5. if( killedrid == 1248 ){
  6. setarray .@Items[0],607,608;
  7. setarray .@Rates[0], ( isequipped(.EquipID)? 50:0 ),( isequipped(.EquipID)? 5:0 );
  8. }else if( killedrid == 1249 ){
  9. setarray .@Items[0],607,608,512;
  10. setarray .@Rates[0], ( isequipped(.EquipID)? 550:1 ),( isequipped(.EquipID)? 250:0 ),( isequipped(.EquipID)? 30:10 );
  11. }else end;
  12. if( getarraysize( .@Items ) ){
  13. set .@Random,rand( getarraysize( .@Items ) );
  14. if( rand(10000) < .@Rates[.@Random] )
  15. getitem .@Items[.@Random],1;
  16. }
  17. }
  18. end;
  19.  
  20. OnInit:
  21. set .EquipID,5022;
  22. end;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment