summaryrefslogblamecommitdiff
path: root/npc/003-1/shop.txt
blob: 16a44d67440dea92f65444c90246a9959404e590 (plain) (tree)
1
2
3
4
5
6
7
8
9
                
          
           
 
                                                       



                           
                                    
                          
                              
                              
                             
                           




                   


            
            
                                       
                             
                                 
                                 
                                
                              

 
// TMW2 scripts.
// Author:
//    Saulc

003-1,108,110,0	trader	Shop#bazar1	NPC_NO_SPRITE,{

OnInit:
    tradertype(NST_MARKET);

    sellitem YellowCottonDye, -1, 2;
    sellitem Knife, -1, 5;
    sellitem Arrow, -1, 30000;
    sellitem DesertHat, -1, 8;
    sellitem SilkRobe, -1, 1;
    sellitem Bread, -1, 15;

    .sex = G_OTHER;
    .distance = 3;
    end;

OnClock0621:
OnClock1210:
OnClock1757:
OnClock0000:
    restoreshopitem YellowCottonDye, 2;
    restoreshopitem Knife, 5;
    restoreshopitem Arrow, 30000;
    restoreshopitem DesertHat, 8;
    restoreshopitem SilkRobe, 1;
    restoreshopitem Bread, 15;
}