summaryrefslogblamecommitdiff
path: root/npc/items/books.txt
blob: 78a598835d3285813c290ee0503b8acc371e4e47 (plain) (tree)
1
2
3
4
5
6
7
8







                                              



                                                                                                
 
                                   
 



                                          
 
               
 
              





                                                           
               
 
                     
         
                   
                                     



                                                                                                                                
                                     









                                                                                                           
                                     





                                                                                                                       
                                     




                                                                                                 
                                     






                                                                                                                               
 
                                            
 



                                         



















                                                

 















                                                                                                                                                                                                      
                                            
                        

                        
     
 
















                                                        





















 
                                                    

















                                                                                                                     
                                                           

                                                                     





                                                                                  
                           
                   



                         
                                                                                                           

                                                                                

                                         

                                                                                                           
                                                                                                     
                                                                                                                 

                          
                                         


                                                                                                           
 
                                     
                         

                          

                                                                                                      
                                                                    


















                                                                                                              
                         

                          



                                                                          
                                                                                







                                                                 

                                                                      
                                                                                                                  
                         


                                                                    
                                                        














                                                                                                 
                                            

                          
                                  

                          


                                    








































                                                                               
                       



                                                  
                       
                                
                          

                          











                        
              


        
                                                  




                   
// TMW-2 script.
// Author:
//    Jesusalva
//    gumi
//    Tirifto
// Description:
//    Books used by TMW-2. Some are from evol.

function	script	FishingBook	{
    narrator S_FIRST_BLANK_LINE | S_LAST_NEXT,
        l("To get started with fishing, you'll need two things: a fishing rod and a bait."),
        l("You just need one fishing rod, although you should take more than one single bait.");

    @menu = 0; // reset for the rif

    do
    {
        narrator S_NO_NPC_NAME,
            l("Please select a chapter:");

        mes "";

        select
            rif2(1, true, l("Ch 1 — Fishing apparatus")),
            rif2(2, true, l("Ch 2 — Baits")),
            rif2(3, true, l("Ch 3 — Location")),
            rif2(4, true, l("Ch 4 — Casting")),
            rif2(5, true, l("Ch 5 — Reeling")),
            l("Close");
        mes "";

        switch(@menu)
        {
            case 1:
                narrator S_LAST_NEXT,
                    l("You'll want your fishing rod to be flexible but solid."),
                    l("Comfortable grip is important especially for newcomers, since they'll be holding it for quite a while.");
                break;
            case 2:
                narrator S_LAST_NEXT,
                    l("You can use many diverse items to lure fishes."),
                    l("Most common and widely popular in the fish realm are @@ and pieces of @@.",
                        getitemlink(SmallTentacles), getitemlink(Bread)),
                    l("Some types of fish also enjoy @@ quite a bit.",
                        getitemlink(Aquada)),
                    l("Some people, however, prefer to fish with more unorthodox baits, such as @@ or @@.",
                        getitemlink(RoastedMaggot), getitemlink(CaveSnakeTongue)),
                    l("Other food can be used as a bait, too.");
                break;
            case 3:
                narrator S_LAST_NEXT,
                    l("Find yourself a nice dry spot on a coast where you can easily reach into deep water."),
                    l("Fishing next to shallow water is not going to work well, because fishes seldom go there."),
                    l("You can easily identify fishing spots, small bubbles and fishes are visible from the surface."),
                    l("Don't forget to come as close as possible to these spots!");
                break;
            case 4:
                narrator S_LAST_NEXT,
                    l("Toss the hook into deep water by clicking on where you want to cast it."),
                    l("Make sure to put on a bait after you click, though!"),
                    l("After that, stay still and be patient, but also alert!");
                break;
            case 5:
                narrator S_LAST_NEXT,
                    l("To successfully catch a fish, you need to pull up your hook by clicking it, right after it submerges."),
                    l("Should you be too quick or wait too long, you will most likely fail.");
                break;
        }
    } while (@menu != 6);
    return;
}

-	script	#Book-Fishing1	NPC_HIDDEN,{

    function read_book {
        setnpcdialogtitle l(.book_name$);
        FishingBook();
        closeclientdialog;
        end;
    }

OnShelfUse:
    if (openbookshelf())
        read_book;
    bye;

OnUse:
    if (openbook())
        read_book;
    bye;

OnInit:
    .book_name$ = getitemname(FishingGuideVolI);
    .sex = G_OTHER;
    .distance = 1;
    end;
}



function	script	PetcaringBook	{
    narrator 1,
    l("So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know."),
    l("Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever."),
    l("Pets must keep a strict diet. Pious eats Piberries, Bhoppers eat Aquadas, and Maggots eats Bug Legs."),
    l("White Cats drink Milk, Forest Mushroom eats Moss, Black Cats eats marshmallow. Keep in mind whatever they eat."),
    l("However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease."),
    l("Dying will also decrease the pet intimacy, and there are bonuses when your intimacy is high!"),
    l("To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. When in the egg, they will not feel hunger."),
    l("Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner!"),
    l("Some pets will also collect loot for you, right click on it so it drop whatever it is holding for you."),
    l("...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks."),
    l("-- Animals Protection Agency of Hurnscald");
    return;
}

-	script	#Book-Petcaring	NPC_HIDDEN,{
    function read_book {
        PetcaringBook();
        close;
    }

OnShelfUse:
    @book_name$ = .bookname$;
    if (openbookshelf ())
        read_book;
    close;
OnUse:
    @book_name$ = .bookname$;
    if (openbook ())
        read_book;
    close;
OnInit:
    .bookname$ = "Fluffy Animals who Love Their Owners";
    .sex = G_OTHER;
    .distance = 1;
    end;
}























-	script	#Book-JGrimorium	NPC_HIDDEN,{

    function read_book {

        setnpcdialogtitle l(.book_name$);

        narrator S_FIRST_BLANK_LINE | S_LAST_NEXT,
            l("I, second sage of Fate, write this book. The knowledge on it shall guide you to the Secret Of Mana.");

        @menu = 0; // reset for the rif

        do
        {
            narrator S_NO_NPC_NAME,
                l("Please select a chapter:");

            mes "";

            select
                rif2(1, MAGIC_LVL, l("Ch 1 — Prologue")),
                rif2(2, MAGIC_EXP, l("Ch 2 — About Magic Skills")),
                rif2(3, MAGIC_LVL, l("Ch 3 — Status Ailments")),
                rif2(4, true, l("Ch 4 — Information About You")),
                rif2(5, true, l("Open Fishing Book")),
                rif2(6, true, l("Open Petcaring Book")),
                rif2(7, getq(LoFQuest_Pets), l("List of Unlocked Pets and Food")),
                rif2(8, CRAFTQUEST, l("Open Recipe Book")),
                rif2(9, true, l("Read Rules")),
                l("Close");
            mes "";

            switch(@menu)
            {
                case 1:
                    mesc l("You have @@/@@ magic skill points available.", b(sk_points()), sk_maxpoints());
                    mesc l("Your current scholar rank: %s (%d Research Points)",
            academicrank(), fnum(MAGIC_RP));
                    next;
                    narrator S_LAST_NEXT,
                        l("Mana is something which existed since the being, but nobody knows much about."),
                        l("This book will write itself, and reveal you the Secret Of Mana."),
                        l("Give it time, increase your magic power, and you'll find out the truth."),
                        l("You are a @@º degree mage. This book allows you many new possibilities.", MAGIC_LVL);
                    break;
                case 2:
                    narrator S_LAST_NEXT,
                        l("Re-casting the same magic spell or skill won't give you magic experience."),
                        l("Summoning and Homunculus (H) skills can be raised from skill window directly.");
                    // TODO: We could show you all the skills via loop? Meh

                    ShowAbizit(true);
                    next;
                    break;
                case 3:
                    mes l("There are several minor status conditions, which may buff or debuff you.");
                    mes l("An example is dec agi, which lowers your agility.");
                    mes l("The most aggressive and main ones are:");
                    next;
                    mesf("##B%s##b - %s", l("Blind"), l("Acc. and Evade -25%%"));
                    mesf("##B%s##b - %s", l("Burning"), l("Damage over time, MDF -25%%"));
                    mesf("##B%s##b - %s", l("Curse"), l("ATK = 25%%, LUK = 0, Slow down"));
                    mesf("##B%s##b - %s", l("Freeze"), l("Can't move, DEF-, no evade, Water element"));
                    mesf("##B%s##b - %s", l("Poison"), l("DEF-, Damage over time, no MP regen"));
                    mesf("##B%s##b - %s", l("Silence"), l("Can't use skills"));
                    mesf("##B%s##b - %s", l("Sleep"), l("Can't move nor attack, crit def -100%"));
                    mesf("##B%s##b - %s", l("Stone"), l("Can't move, DEF-, Damage over time, Earth element"));
                    mesf("##B%s##b - %s", l("Stun"), l("Can't move nor evade."));
                    next;
                    mes l("There are also less common ailments:");
                    next;
                    mesf("##B%s##b - %s", l("Bleed"), l("Lethal damage over time, no regen."));
                    mesf("##B%s##b - %s", l("Confuse"), l("Random movement and extra desync"));
                    mesf("##B%s##b - %s", l("Cold"), l("Total slow down, DEF-, may freeze"));
                    mesf("##B%s##b - %s", l("Deadly Poison"), l("Lower MAXHP, Damage over time"));
                    mesf("##B%s##b - %s", l("Deep Sleep"), l("Can't chat, recover HP over time"));
                    mesf("##B%s##b - %s", l("Fear"), l("Can't move, Acc. and Evade -20%%"));
                    next;
                    break;
                case 4:
                    mes ".:: " + l("Magic Status") + " ::.";
                    mesc l("Current magic rank: %d", MAGIC_LVL);
                    mesc l("You have @@/@@ magic skill points available.",
                            b(sk_points()), sk_maxpoints());
                    mesc l("Your current scholar rank: %s (%s Research Points)",
                            academicrank(), fnum(MAGIC_RP));
                    ShowAbizit(true);
                    next;
                    mes ".:: " + l("Rogue Status") + " ::.";
                    mesc l("Your current rank: %s", thiefrank());
                    if (THIEF_EXP > (THIEF_RANK*2)**5)
                        mesc l("An upgrade is available."), 2;
                    next;
                    mes ".:: " + l("Crafting Status") + " ::.";
                    mesc l("Skill Level: %d", getskilllv(TMW2_CRAFT));
                    mesc l("Crafting Score: %d.%02d", CRAFTING_SCORE_COMPLETE/40, CRAFTING_SCORE_COMPLETE%40*100);
                    next;
                    mes ".:: " + l("Miscellaneous Status") + " ::.";
                    mesc l("Monster Points: %s", fnum(Mobpt));
                    mesc l("Times died: %s", fnum(PC_DIE_COUNTER));
                    mesc l("Times reborn: %d", REBIRTH);
                    mesc l("Total Gold: %s", fnum((Zeny+BankVault)));
                    mesc l("Honor Points: %s", fnum(HONOR));
                    if (getcharid(2) > 0) {
                        .@gid=getcharid(2);
                        .@pos=getguildrole(.@gid, getcharid(3));
                        mesc l("Current Guild: %s", getguildname(.@gid));
                        mesc l("Guild Master: @@", getguildmaster(.@gid));
                        mesc l("You are the guild's \"%s\", and you contribute with %02d%% EXP.",
                                getguildpostitle(.@gid, .@pos),
                                getguildpostax(.@gid, .@pos));
                    }
                    mesc l("Total time AFK'ed in Tulimshar: %d hours and %d minutes",
                            AFKING/1200, AFKING%1200/60*3);
                    mesc l("Candor Battle Score: %d", CRAZYPOINTS);
                    // TODO: Total players invited to ML
                    // TODO: Most used skill
                    break;
                case 5:
                    FishingBook();
                    break;
                case 6:
                    PetcaringBook();
                    break;
                case 7:
                    mesf(".:: %s ::.", l("Grand Hunter Quest"));
                    if (PDQ_CheckGHQ(Maggot) >= 10000)
                        mesf("%s - %s",
                            getmonsterlink(Maggot), getitemlink(BugLeg));
                    if (PDQ_CheckGHQ(ForestMushroom) >= 10000)
                        mesf("%s - %s",
                            getmonsterlink(ForestMushroom), getitemlink(Moss));
                    if (PDQ_CheckGHQ(Fluffy) >= 10000)
                        mesf("%s - %s",
                            getmonsterlink(Fluffy), getitemlink(LettuceLeaf));
                    if (PDQ_CheckGHQ(Duck) >= 10000)
                        mesf("%s - %s",
                            getmonsterlink(Duck), getitemlink(CherryCake));
                    if (PDQ_CheckGHQ(Bat) >= 10000)
                        mesf("%s - %s",
                            getmonsterlink(Bat), getitemlink(RoastedMaggot));
                    if (PDQ_CheckGHQ(Moggun) >= 10000)
                        mesf("%s - %s",
                            getmonsterlink(Moggun), getitemlink(MoubooSteak));
                    if (#LOGIN_ALLTIME >= 6)
                        mesf("%s - %s",
                            getmonsterlink(Piou), getitemlink(Piberries));
                    next;
                    mesf(".:: %s ::.", l("Special Event Pets"));
                    if (countitem(Ratte))
                        mesf("%s - %s",
                            getmonsterlink(Ratto), getitemlink(Cheese));
                    if (countitem(BhopEgg))
                        mesf("%s - %s",
                            getmonsterlink(BhopFluffy), getitemlink(Aquada));
                    if (countitem(DoggyDog))
                        mesf("%s - %s",
                            getmonsterlink(Toto), getitemlink(AnimalBones));
                    if (countitem(CattyCat))
                        mesf("%s - %s",
                            getmonsterlink(WhiteCat), getitemlink(Milk));
                    if (countitem(BlackyCat))
                        mesf("%s - %s",
                            getmonsterlink(BlackCat), getitemlink(Mashmallow));
                    next;
                    break;
                case 8:
                    closeclientdialog;
                    doevent("#RecipeBook::OnUse");
                    end;
                    break;
                case 9:
                    GameRules();
                    break;
                default:
                    close;
            }
        } while (true);

        end;
    }

OnShelfUse:
    if (openbookshelf())
        read_book;
    bye;

OnUse:
    read_book;
    bye;

OnInit:
    .book_name$ = getitemname(JesusalvaGrimorium);
    .sex = G_OTHER;
    .distance = 1;
    end;
}