yuhsing

Untitled

Jul 9th, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1.  
  2. prontera,155,181,5 script Sample 757,{
  3. if( select( "Exchange "+.amount+" x "+getitemname( .itemid )+" to 1 x "+getitemname( 7227 )+" ?","Close" ) == 1 ){
  4. if( countitem( .itemid ) < .amount ){
  5. mes "You need "+.amount+" x "+getitemname( .itemid );
  6. }else{
  7. delitem .itemid,.amount;
  8. getitem 7227,1;
  9. mes "exchanged "+.amount+" x "+getitemname( .itemid )+" to 1 x "+getitemname( 7227 );
  10. }
  11. }
  12. close;
  13.  
  14. OnClock1300:
  15. OnClock1800:
  16. OnClock2200:
  17. set .amount,rand( 1000,4000 );
  18. hideoffnpc strnpcinfo(0);
  19. sleep ( 60 * 60000 );
  20.  
  21. OnInit:
  22. set .itemid,7539;
  23. hideonnpc strnpcinfo(0);
  24. end;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment