summaryrefslogblamecommitdiff
path: root/npc/000-1/gugli.txt
blob: 0aa1da0d03ac5e66e392f702c9e85094b69f1cd0 (plain) (tree)
1
2
3
4
5
6
7
                
           
             
          


                                              





                                               
 
                                               

         
                                                             

         
        
                                                                                                  






                         
                                                                 
         
                                                                                                                                    
         
                                                           
         
                                                                                      
         
                                            


                              
                                                       
                                                   

          
 
// Evol scripts.
// Authors:
//    Hal9OOO
//    Reid
// Description:
//    Elmo's twin
//    Charged of an important quest from Nard.
// Variable:
//    0   ShipQuests_Couwan
// Values: 
//    00   Never talked with Couwan.
//    01   Spoke, and received the quest scam.
//    02   Done quest scam.

000-1.gat,85,108,0,1	script	Gugli	313;2,{

    mesn;
    mesq l("Great to see you! What can I do for you today?");
    next;

    menu
        rif(getq(ShipQuests_Couwan) == 1, l("Couwan gave me this box, it is for you.")), l_Couwan,
        l("Nothing."), -;

    close;

l_Couwan:
    mes "";
    mesn;
    mesq l("What? This tritan is the worse shirker I ever met.");
    next;
    mesq l("Well, thanks for the box. But... he was supposed to bring it back to me himself. I never asked him to give it to you!");
    next;
    mesq l("Take these coins in exchange and be careful.");
    next;
    mesq l("Not everybody has a kind mind. Scammers can be anywhere, even among us!");
    next;
    mesq l("May this be a lesson for you.");

    setq ShipQuests_Couwan, 2;
    set zeny, zeny+50;
    if (countitem("FishBox") > 0) delitem "FishBox", 1;
    message strcharinfo(0), l("You receive 50GP!");
    close;

}