Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- prontera,151,171,5 script Quest NPC 1 757,{
- if( !quest_progress ){
- mes "Please give me 1 Apple.";
- if( countitem( 512 ) >= 1 ){
- if( select( "Okay","Cancel" ) == 1 ){
- mes "Please find NPC 2.";
- set quest_progress,1;
- delitem 512,1;
- }
- }
- }else{
- mes "There is nothing i can help you now.";
- }
- close;
- }
- prontera,155,171,5 script Quest NPC 2 757,{
- if( quest_progress == 1 ){
- mes "Please give me 2 Apple.";
- if( countitem( 512 ) >= 2 ){
- if( select( "Okay","Cancel" ) == 1 ){
- mes "Please find NPC 3.";
- set quest_progress,2;
- delitem 512,2;
- }
- }
- }else{
- mes "There is nothing i can help you now.";
- }
- close;
- }
- prontera,159,171,5 script Quest NPC 2 757,{
- if( quest_progress == 2 ){
- mes "Please give me 2 Apple.";
- if( countitem( 512 ) >= 2 ){
- if( select( "Okay","Cancel" ) == 1 ){
- mes "Thank you,...you have finished all quest.";
- set quest_progress,0;
- delitem 512,2;
- }
- }
- }else{
- mes "There is nothing i can help you now.";
- }
- close;
- }
Advertisement
Add Comment
Please, Sign In to add comment