Issue information

Issue ID
#3334
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jul 3, 2009 20:47
Last Post
Hercules Elf Bot
Mar 5, 2012 14:18
Confirmation
N/A

Hercules Elf Bot - Jul 3, 2009 20:47

Originally posted by [b]HappyFunTimeSparkles[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=3334

This is in the npc/jobs/valkyrie.txt file for the transcendent jobs quest. To read the book of Ymir, you're supposed to pay 1,285,000 zeny. But, the check is for 1,284,450 zeny.
CODE
            mes "[Metheus Sylphe]";
            mes "The suggested";
            mes "donation amount is";
            mes "1,285,000 zeny.";
            next;
            if (select("Donate.:Cancel.") == 1) {
                if (Zeny > 1284449) {
                    set zeny,zeny-1285000;
                    set valkyrie_Q,1;

It can be fixed by changing to
CODE
if (Zeny >=1285000) {


This post has been edited by HappyFunTimeSparkles: Jul 3 2009, 02:01 PM