Hi, I'm trying to edit this scrip and I'm kinda stuck at the last point. This is the script first of all:
- script Sprakki#newbe05::NvSprakkiB -1,{
if (job_novice_q == 0) {
cutin "v_sprakki02",2;
mes "^00D1FE[Sprakki]^000000";
mes "Hello there! Welcome to the World of ^00CFAARagnarok^000000.";
mes "My name is Sprakki and I'm in charge of giving you basic gameplay tips.";
mes "Click on the ^F268D3[Next]^000000 button or press ^60D8FF[Enter]^000000 key to continue.";
next;
mes "^00D1FE[Sprakki]^000000";
mes "First you need to learn the very basics of controlling your character.";
mes "All the basic ^4d4dffmoves, selection of items, and attacks^000000 use the ^4d4dff left click of the mouse^000000.";
next;
cutin "",255;
cutin "tutorial01",3;
mes "-! Info !-";
mes "Click on the ground to move the character.";
mes "Attacking monsters and conversations with the people of this world can be done by simply clicking on them.";
next;
cutin "",255;
cutin "v_sprakki02",2;
mes "^00D1FE[Sprakki]^000000";
mes "Well then, I will give you a quest to talk to me.";
mes "After the conversation is over, talk to me again by left-clicking on me.";
set job_novice_q,1;
setquest 7117;
next;
cutin "",255;
cutin "tutorial02",3;
mes "-! Info !-";
mes "You've received a quest from Sprakki.";
mes "You can check the contents of the quest in the Quest Info Window by pressing the ^4d4dffAlt + U^000000 keys at the same time.";
next;
cutin "",255;
cutin "v_sprakki01",2;
mes "^00D1FE[Sprakki]^000000";
mes "Have you checked the Quest Info Window?";
mes "Well, talk to me again.";
close2;
cutin "",255;
end;
} else if (job_novice_q < 3) {
if (job_novice_q == 1) {
cutin "v_sprakki02",2;
mes "^00D1FE[Sprakki]^000000";
mes "Great!";
mes "Now you know how to move and talk to others, right?";
set job_novice_q,2;
getexp 600,5;
completequest 7117;
next;
}
cutin "",255;
cutin "v_sprakki02",2;
mes "^00D1FE[Sprakki]^000000";
mes "The Training Center is prepared for novices just like you.";
mes "You are going to be trained to get used to the basics of the Game.";
next;
mes "^00D1FE[Sprakki]^000000";
mes "I will guide you to the Novice Training Center.";
mes "Instructor 'Brade' will be waiting to speak to you.";
next;
mes "^00D1FE[Sprakki]^000000";
mes "Please go see Instructor 'Brade' across the bridge to continue your training.";
mes "But, you will miss all the advantages you can get in the Training Center.";
setquest 7118;
next;
cutin "",255;
mes "^4d4dffYou received a quest from Sprakki.";
mes "Please check the Quest Info Window.^000000";
close;
} else if (job_novice_q == 2) {
cutin "v_sprakki02",2;
mes "^00D1FE[Sprakki]^000000";
mes "Please go see Instructor 'Brade' across the bridge to continue your training.";
close2;
cutin "",255;
end;
}
}
After all quests and whatever has been given by the npc, when the player click on the npc, I want the npc to Just tell this part:
} else if (job_novice_q == 2) {
cutin "v_sprakki02",2;
mes "^00D1FE[Sprakki]^000000";
mes "Please go see Instructor 'Brade' across the bridge to continue your training.";
close2;
cutin "",255;
end;
}
Any help would be appreciated.