summaryrefslogblamecommitdiff
path: root/npc/003-9/gambler.txt
blob: eacbc778c0e04cd0b221dfff78e2f2472ea69180 (plain) (tree)
1
2
3
4
5



                
                                










                                                                                                              





                                                











                                                                                                                                  
                   









                                                                                                                                                                                    
                         

          


                  
        

 
// TMW2 scripts.
// Author:
//    Jesusalva
// Description:
//    Tulimshar Inn Receptionist

003-9,42,123,0	script	Gambler Master	NPC_LOF_NOBLEMAN,{
    mesn;
    mesq l("Hello! Welcome to the Inn! I am an Alliance officer, and I oversee gambling all over the world!");
    next;
    mesn;
    mesq l("So how can I help you?");
    do
    {
        next;
        select
            l("How does Gambling works?"),
            l("How can I obtain casino coins?"),
            l("Nothing, thanks.");
        mes "";
        switch (@menu) {
            case 1:
                mesn;
                mesq l("You find a slot machine or another gambler, and make a bet!");
                next;
                mesn;
                mesq l("If you're right, you'll gain more Casino Coins! And even other nice things!");
                next;
                mesn;
                mesq l("But if you're wrong, you'll have to pay up! There's no refunds. This is gambling, if you lose you lose!");
                next;
                mesn;
                mesq l("If you're afraid of losing everything, then DEFINITELY do not gamble. %%2");
                break;
            case 2:
                mesn;
                mesq l("I dunno. I don't think they're sold anywhere.");
                next;
                mesn;
                mesq l("I know a few bandits stole a few, and Lava Slimes love to eat Casino Coins.");
                next;
                mesn;
                mesq l("I've even heard of people whom dug Casino Coins out of the ground, but as I said, I don't know. But you'll certainly come across a few o your adventures!");
                break;
        }
    } while (@menu != 3);
    close;

OnInit:
    .sex = G_MALE;
    .distance = 5;
    end;
}