Issue information

Issue ID
#3188
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jun 5, 2009 21:37
Last Post
Hercules Elf Bot
Mar 5, 2012 14:13
Confirmation
N/A

Hercules Elf Bot - Jun 5, 2009 21:37

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

The Inn keeper of Moscovia is both in /merchants/inn.txt and in quests/quest_moscovia.txt (it is a part of "help Mickael" quest). This part needs to be removed from inn.txt:

CODE
//======================== Moscovia ====================================
mosk_in,135,191,5    script    Landlord#mosk    961,{
    mes "[Landlord]";
    mes "Oh, welcome to the Inn 'Sticky Herb Tree'.";
    mes "It is the most comfortable and";
    mes "calmest place in all of Moscovia.";
    next;
    if (select("Save:Stay the night - 5000z") == 1) {
        mes "[Landlord]";
        mes "Your respawn point";
        mes "has been saved.";
        mes "Hope we can see you again next time hoho.";
        savepoint "mosk_in",141,188;
        close;
    }
    mes "[Landlord]";
    if(Zeny < 5000) {
        mes "The service charge is 5000z.";
        mes "Please make sure you have enough";
        mes "money for the service.";
        close;
    }
    mes "Please be comfortable.";
    close2;
    set Zeny,Zeny - 5000;
    percentheal 100,100;
    warp "mosk_in",215,181;
    end;
}


This post has been edited by NoHealing: Jun 6 2009, 08:06 PM