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

                
          
             
          
               
                                                 






                                     
 
                                               
 
                                    
                                         
 



                  
 
       

                              



                         
                                                              

          




                  
 
           



                                         
 
 
// Evol scripts.
// Authors:
//    4144
//    Hal9000
//    Reid
// Description:
//    A treasure chest, with... treasures inside!
// Variable:
//    x   ShipQuests_Darlin
// Values: 
//    0   Never talked with Darlin.
//    1   Spoke, and received quest.
//    2   Opened the treasure chest.
//    3   Get back to Darlin.

000-1.gat,83,70,0	script	Chest#1	316;2,{

    set @q, getq(ShipQuests_Darlin);
    if (getnpcdir ("") == 4) goto l_Give;

    setnpcdir 2;
    initnpctimer;
    startnpctimer;
    close;

l_Give:
    if (@q > 1) goto l_Close;
    setq ShipQuests_Darlin, 2;
    set zeny, zeny + 400;
    getitem 508, 1;
    getitem 509, 1;
    getitem 514, 1;
    message strcharinfo(0), l("You open the treasure chest.");
    close;

l_Close:
    setnpcdir 6;
    initnpctimer;
    startnpctimer;
    close;

OnTimer160:
    stopnpctimer;
    if (getnpcdir ("") == 2) setnpcdir 4;
    if (getnpcdir ("") == 6) setnpcdir 0;
    end;

}