Celestia's Groceries quest GP reward
Posted: 21 Apr 2016, 18:08
After completing the Celestia's Groceries quest, it says that the GP reward is 20k GP, but only 10k GP is given. From https://github.com/themanaworld/tmwa-se ... lestia.txt:
L_GiveGroceries:
mes "Celestia smiles.";
next;
mes "\"Wonderful, I am so glad you were able to track them down.";
mes "That will be enough to keep me in supply for some time.\"";
next;
mes "\"Here, take this Beret.";
mes "I hope it looks better on you than it does on me, as it does not go well with my fine dresses.\"";
next;
mes "Celestia also hands you a heavy pouch filled with gold pieces.";
mes;
mes "["+getitemlink("Beret")+"]";
mes "[20,000 GP]";
mes "[20,000 EXP]";
delitem "ChocolateBar", 100; // remove chocolate bars
delitem "GingerBreadMan", 50; // remove ginger bread men
getitem "Beret", 1; // give beret
getexp 20000, 0; // XXX is this amount reasonable?
set Zeny, Zeny + 10000; // XXX is this amount reasonable?
set QL_CELESTIA, 3; // set the state to "completed easy quest"
close;
L_GiveGroceries:
mes "Celestia smiles.";
next;
mes "\"Wonderful, I am so glad you were able to track them down.";
mes "That will be enough to keep me in supply for some time.\"";
next;
mes "\"Here, take this Beret.";
mes "I hope it looks better on you than it does on me, as it does not go well with my fine dresses.\"";
next;
mes "Celestia also hands you a heavy pouch filled with gold pieces.";
mes;
mes "["+getitemlink("Beret")+"]";
mes "[20,000 GP]";
mes "[20,000 EXP]";
delitem "ChocolateBar", 100; // remove chocolate bars
delitem "GingerBreadMan", 50; // remove ginger bread men
getitem "Beret", 1; // give beret
getexp 20000, 0; // XXX is this amount reasonable?
set Zeny, Zeny + 10000; // XXX is this amount reasonable?
set QL_CELESTIA, 3; // set the state to "completed easy quest"
close;