Dori Posted November 15, 2014 Group: Members Topic Count: 105 Topics Per Day: 0.02 Content Count: 332 Reputation: 15 Joined: 12/11/11 Last Seen: August 8, 2017 Share Posted November 15, 2014 So, there is a little tiny bug in the Eden group quest script in the part of Administrator Micheal. I was trying for hours to fix this but everything I tried didn't work. First of all here is the part of the script. https://raw.githubusercontent.com/rathena/rathena/master/npc/re/quests/eden/eden_quests.txt Starting at: moc_para01,112,96,5 script Administrator Michael 967,{ Here is the problem: Once you finish that first mission, which is this part: case 1: if (para_suv01 == 11) { mes "[Michael]"; mes "If you've completed step 1"; mes "we can supply you with a Eden Group Hat, Uniform, Manteau and Boots."; mes "^4d4dffCheck your inventory first.^000000"; next; switch (select("Let me check my inventory:I have enough room.")) { case 1: mes "[Michael]"; mes "Make sure you have enough room for the supplies."; close; case 2: mes "[Michael]"; mes "Two of the supplies, the ^4d4dffHat and Manteau^000000,"; mes "will only be given out once."; mes "So treat them with caution and care."; next; mes "[Michael]"; mes "As for the Boots and the Uniforms, you will receive better quality ones based on your course grades."; next; mes "[Michael]"; mes "One Eden Group Hat."; mes "One Eden Group Uniform I."; mes "One pair of Eden Group Boots I."; mes "One Eden Group Manteau."; mes "A total of 4 supplies, that's all."; set para_suv01,12; set para_suv02,1; getitem 5583,1; //Para_Team_Hat1 getitem 2560,1; //Para_Team_Manteau1 getitem 2456,1; //Para_Team_Boots1 getitem 15009,1; //Para_Team_Uniform1 next; mes "[Michael]"; mes "Is that correct?"; mes "It is manufactured for beginners so they don't have the best effect but they're still cheaper than equipment in the shops."; next; mes "[Michael]"; mes "We made them especially for the Eden Group."; close; } } And you talk to him again and select the option 'To get supplies', he keeps goin to this: case 2: mes "[Michael]"; mes "We store weapons, armor and other goods which were created by the Eden Group here."; mes "We also have a lot of special stuff."; next; mes "[Michael]"; mes "To prepare for emergencies, we hav enough equipment and supplies for an entire army."; mes "Frankly... we don't have a use for it now but in case soemthing happens like in Morroc."; next; mes "[Michael]"; mes "Just take a look around and don't touch anything."; next; mes "[Michael]"; mes "If I make a mistake, Reke will punish me."; close; When he should be saying something like this: mes "[Michael]"; mes "Wait...I will check the record..."; mes "..."; mes "...hummmm."; next; mes "[Michael]"; mes "Sorry, but I can't find any record that you can obtain supplies."; mes "Are you sure?"; close; Can anyone help me fix this? Thank you in advance. Quote Link to comment Share on other sites More sharing options...
Capuche Posted November 15, 2014 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted November 15, 2014 You're right ! Thanks for pointing out. However you should make a bugreport in git since it's a bug in the main repo. EDIT : fixed 0edb5c7ff87d305a26aa7c2772c0d920758dffc2 Quote Link to comment Share on other sites More sharing options...
Question
Dori
So, there is a little tiny bug in the Eden group quest script in the part of Administrator Micheal. I was trying for hours to fix this but everything I tried didn't work.
First of all here is the part of the script. https://raw.githubusercontent.com/rathena/rathena/master/npc/re/quests/eden/eden_quests.txt
Starting at:
moc_para01,112,96,5 script Administrator Michael 967,{
Here is the problem:
Once you finish that first mission, which is this part:
case 1:
if (para_suv01 == 11) {
mes "[Michael]";
mes "If you've completed step 1";
mes "we can supply you with a Eden Group Hat, Uniform, Manteau and Boots.";
mes "^4d4dffCheck your inventory first.^000000";
next;
switch (select("Let me check my inventory:I have enough room.")) {
case 1:
mes "[Michael]";
mes "Make sure you have enough room for the supplies.";
close;
case 2:
mes "[Michael]";
mes "Two of the supplies, the ^4d4dffHat and Manteau^000000,";
mes "will only be given out once.";
mes "So treat them with caution and care.";
next;
mes "[Michael]";
mes "As for the Boots and the Uniforms, you will receive better quality ones based on your course grades.";
next;
mes "[Michael]";
mes "One Eden Group Hat.";
mes "One Eden Group Uniform I.";
mes "One pair of Eden Group Boots I.";
mes "One Eden Group Manteau.";
mes "A total of 4 supplies, that's all.";
set para_suv01,12;
set para_suv02,1;
getitem 5583,1; //Para_Team_Hat1
getitem 2560,1; //Para_Team_Manteau1
getitem 2456,1; //Para_Team_Boots1
getitem 15009,1; //Para_Team_Uniform1
next;
mes "[Michael]";
mes "Is that correct?";
mes "It is manufactured for beginners so they don't have the best effect but they're still cheaper than equipment in the shops.";
next;
mes "[Michael]";
mes "We made them especially for the Eden Group.";
close;
}
}
And you talk to him again and select the option 'To get supplies', he keeps goin to this:
case 2:
mes "[Michael]";
mes "We store weapons, armor and other goods which were created by the Eden Group here.";
mes "We also have a lot of special stuff.";
next;
mes "[Michael]";
mes "To prepare for emergencies, we hav enough equipment and supplies for an entire army.";
mes "Frankly... we don't have a use for it now but in case soemthing happens like in Morroc.";
next;
mes "[Michael]";
mes "Just take a look around and don't touch anything.";
next;
mes "[Michael]";
mes "If I make a mistake, Reke will punish me.";
close;
When he should be saying something like this:
mes "[Michael]";
mes "Wait...I will check the record...";
mes "...";
mes "...hummmm.";
next;
mes "[Michael]";
mes "Sorry, but I can't find any record that you can obtain supplies.";
mes "Are you sure?";
close;
Can anyone help me fix this? Thank you in advance.
Link to comment
Share on other sites
1 answer 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.