Issue information

Issue ID
#191
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Oct 8, 2007 0:36
Last Post
Hercules Elf Bot
Feb 21, 2012 7:55
Confirmation
N/A

Hercules Elf Bot - Oct 8, 2007 0:36

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

Prontera East Inn
CODE
prt_in,61,141,2    script    Inn Employee::Ahlma#01    53,{

    callfunc "F_InnMaid","[Emplyee Ahlma]","Nenkaras","prt_in",64,136;
    warp "prt_in",64,136; end;
}

CODE
npc "prt_in" "Inn Employee" 4_F_MAID 61 141 4 5 5
OnClick:
    dialog "[Employee Alma]"
    dialog "Welcome to"
    dialog "Nenkaras."
    dialog "How may I help you?"
    wait
    choose menu "Save" "Take a Rest -> 5,000 zeny" "Cancel"
    case 1
        dialog "[Employee Alma]"
        dialog "Your respawn point"
        dialog "has been saved."
        dialog "Thank you,"
        dialog "please come again."
        checkpoint "prt_in" 64 136
        close
    break
    case 2
        if (v[VAR_MONEY] > 4999)
            dialog "[Employee Alma]"
            dialog "Thank you."
            dialog "I hope you"
            dialog "enjoy your rest~"
            close
            dropgold 5000
            hpheal 100
            spheal 100
            moveto "prt_in" 60 166
        else
            dialog "[Employee Alma]"
            dialog "I'm sorry, but the service charge"
            dialog "is 5,000 zeny. Please make sure"
            dialog "that you have enough money to check"
            dialog "in next time, okay?"
            close
        endif
    break
    case 3
    break
    endchoose
return


checkpoint "prt_in" 64 136
moveto "prt_in" 60 166
As you can see, someone from the dev team copy+pasted the coords and put the same coord for savepoint and warp commands.

Please review other Inn coordenates.

This post has been edited by Brainstorm: Oct 7 2007, 05:37 PM