yuhsing

Untitled

Nov 27th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1.  
  2. function script Sample {
  3. .@i = rand(100);
  4.  
  5. if( .@i < 1 ) .@item = 25199;
  6. else if( .@i < 10 ) .@item = 25196;
  7. else if( .@i < 25 ) .@item = 25195;
  8. else if( .@i < 40 ) .@item = 25194;
  9.  
  10. if( .@item )
  11. announce "[ "+strcharinfo(0)+" gained 1 "+getitemname( .@item ),0;
  12. else
  13. announce "Gained nothing..",bc_self;
  14. end;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment