Issue information

Issue ID
#3108
Status
Duplicate
Severity
None
Started
Hercules Elf Bot
May 22, 2009 15:00
Last Post
Hercules Elf Bot
Mar 5, 2012 13:12
Confirmation
N/A

Hercules Elf Bot - May 22, 2009 15:00

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

Hi. According to some quest guides, we would receive a serin's gold ring during the quest.
After going through more steps of the quest we can return the gold ring to serin for base exp.

But the script of eAthena says this.
CODE
L_Thanks:
    mes "[Serin]";
    mes "Thank you so much for";
    mes "your help. This is all I have,";
    mes "and it means a lot to me, but";
    mes "I want you to have this ring. It's";
    mes "the only way I can properly express";
    mes "my gratitude for your aid so far.";
    getitem 2642,1;


Then, when we are about to return the item.

CODE
L_Souvenir:
    mes "[Serin]";
    mes "...";
    mes "......";
    next;
    mes "[Serin]";
    mes "...";
    mes "......";
    mes "..........";
    if (countitem(2643))
    {
        next;
        switch( select( "Give Serin her ring.","Keep the ring." ) )
        {
            case 1:
                mes "[Serin]";
                mes "...";
                mes "......";
                mes ".............";
                next;
                mes "[Serin]";
                mes "...."+strcharinfo(0)+".....";
                mes "I don't want to forget you.";
                mes "I can forget my obsession with";
                mes "life and all my other memories,";
                mes "But if I can keep just one memory, I want it to be of your kindness.";
                next;
                mes "[Serin]";
                mes "Even now, you're still";
                mes "so very kind to me. Thank";
                mes "you for giving back my ring,";
                mes "my most precious possession.";
                mes "Thank you, thank you...";
                emotion e_sob;
                next;
                mes "^3355FFThe sound of Serin's voice";
                mes "softened and when it grew silent, her eyes blankly stared ahead as";
                mes "if she were in a trance. It looks like she has already forgotten";
                mes "everything...^000000";
                next;
                mes "^3355FFBut Serin has also been able";
                mes "to forget her sadness. The tears streaked across her cheeks and";
                mes "the faint smile on her lips tell you that her memories of you";
                mes "will always remain in her heart.^000000";
                delitem 2643,1;
                getexp 500000,0;
                close;

            case 2:
                emotion e_sob,0;
                close;
        }
    }
    else
    {
        emotion e_sob,0;
        close;
    }


So should it be item 2642 or 2643? Both are same but they are sold at different prices to NPCs.
If its already correct then how do we actually change item 2642 to 2643?

Edit: changed [codebox ] to [code ] -Brian

This post has been edited by BrianL: May 23 2009, 10:49 AM