yuhsing

Untitled

May 14th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2. prontera,155,181,5 script Sample 757,{
  3. mes "I need ";
  4. mes "5 x "+getitemname( 512 );
  5. mes "10,000 Zeny.";
  6. if( countitem( 512 ) >= 5 && Zeny >= 10000 ){
  7. if( select( "Proceed","Close" ) == 1 ){
  8. mes "You done the Quest.";
  9. delitem 512,5;
  10. set Zeny,Zeny - 10000;
  11. }
  12. }
  13. close;
  14.  
  15. OnInit:
  16. OnMinute00:
  17. if( gettime(3) % 2 == 0 )
  18. hideoffnpc strnpcinfo(0);
  19. else
  20. hideonnpc strnpcinfo(0);
  21. end;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment