diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-04-16 22:32:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-04-16 22:32:53 -0300 |
commit | d9c7d5f194330a798032011b74876c6961a5805f (patch) | |
tree | 685e9b5073d45ea43b7ed0dd8b73c21e71ba4715 /npc/001-4/lilica.txt | |
parent | c36561f35747d30e609d8ad876b46d8202a9a712 (diff) | |
download | serverdata-d9c7d5f194330a798032011b74876c6961a5805f.tar.gz serverdata-d9c7d5f194330a798032011b74876c6961a5805f.tar.bz2 serverdata-d9c7d5f194330a798032011b74876c6961a5805f.tar.xz serverdata-d9c7d5f194330a798032011b74876c6961a5805f.zip |
Hotfix
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; |