summaryrefslogblamecommitdiff
path: root/npc/005-4/shop.txt
blob: 5fd5271f0b4e34db43c16e801bbe0d8c09e7da42 (plain) (tree)




















                                               
                                       
                               
                                    
                                   
                                




                   




                                          
                                  
                                       

                                      

 
// Evol scripts.
// Author:
//    Reid
// Description:
//    Light Armor shop keeper.
// Variables:
//    ArtisQuests_Enora
// Values:
//    0    Default.
//    1    BlackSmith quest delivered.
//    2    Chelios Quest given.
//    3    Chelios Quest done.
//    4    BlackSmith gave the sword.
//    5    Light Armor Shop quest delivered.
//    6    Light Armor Shop gave the cloths.

005-4,30,37,0	trader	Shop	NPC_NO_SPRITE,{

OnInit:
    tradertype(NST_MARKET);

    sellitem RoundLeatherShield, -1, 2;
    sellitem SmallKnife, -1, 5;
    sellitem TolchiArrow, -1, 30000;
    sellitem LousyMoccasins, -1, 4;
    sellitem TrainingBow, -1, 3;

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

OnClock0602:
OnClock1206:
OnClock1811:
OnClock0004:
    restoreshopitem RoundLeatherShield, 2;
    restoreshopitem SmallKnife, 5;
    restoreshopitem TolchiArrow, 30000;
    restoreshopitem LousyMoccasins, 4;
    restoreshopitem TrainingBow, 3;
}