aurelia Posted September 22, 2013 Posted September 22, 2013 anyone can make a npc script who can trade : @zeny -> @cash 100,000,000z -> 1,000 cash minumum 1,000z for trade Quote
Patskie Posted September 23, 2013 Posted September 23, 2013 Try this one : prontera,150,150,0 script Sample 100,{ if ( Zeny < 100000000 ) end; if( select( "Exchange Zeny to Cash","Cancel" ) == 1 ) { Zeny -= 100000000; #CASHPOINTS += 1000; dispbottom "You now have " +#CASHPOINTS+ " cash points."; mes "Done"; close; } end; } 1 Quote
Emistry Posted September 23, 2013 Posted September 23, 2013 if( select( "Exchange Zeny to Cash","Cancel" ) == 1 ){ if( Zeny < 100000000 ){ mes "You need 100,000,000"; }else{ Zeny -= 100000000; #CASHPOINTS += 1000; mes "Done"; } } close; 1 Quote
aurelia Posted September 23, 2013 Author Posted September 23, 2013 that's not working the npc didn't show up Quote
aurelia Posted September 23, 2013 Author Posted September 23, 2013 now the npc is show up thx bro Quote
Question
aurelia
anyone can make a npc script who can trade :
@zeny -> @cash
100,000,000z -> 1,000 cash
minumum 1,000z for trade
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.