diff options
Diffstat (limited to 'npc/001-4/lilica.txt')
-rw-r--r-- | npc/001-4/lilica.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/npc/001-4/lilica.txt b/npc/001-4/lilica.txt index a948adb25..440cba68a 100644 --- a/npc/001-4/lilica.txt +++ b/npc/001-4/lilica.txt @@ -121,13 +121,18 @@ OnPayFunds: OnInit: tradertype(NST_CUSTOM); - setarray .@Seasonal, EggshellHat, EggshellHat, GreenEggshellHat, OrangeEggshellHat, DarkEggshellHat, EggshellHat; + setarray .@Seasonal, EggshellHat, EggshellHat, GreenEggshellHat, OrangeEggshellHat, EggshellHat, EggshellHat; .Hat=.@Seasonal[(gettime(7)+1)%6]; // Magically choose the hat from the array + .PrevHat=.@Seasonal[(gettime(7))%6]; // Magically choose the hat from the array + .NextHat=.@Seasonal[(gettime(7)+2)%6]; // Magically choose the hat from the array - // Ultra rare items + // Seasonal item sellitem .Hat,200; + sellitem .NextHat,1000; + sellitem .PrevHat,1000; // Rare and not-so-rare Items + sellitem MercBoxA,500; sellitem BronzeGift,100; sellitem BunnyEars,50; //sellitem Boots,20; |