diff options
-rw-r--r-- | npc/functions/clientversion.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 2b04bc466..c71021c65 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -981,7 +981,10 @@ function script clientupdater { // Christmas 2021 // ter dez 28 11:57:17 BRT 2021 if (UPDATE < 1640703437) { - setarray .@xmas21$, "jesusalva", "poppet"; + .@u$ = strtolower(strcharinfo(0)); + setarray .@xmas21$, "jesusalva", "poppet", "jak1", "horak"; + setarray .@xmas20$, "jesusalva", "poppet", "jak1", "horak", + "andulkat", "kolchak"; if (array_exists(.@xmas21$, .@u$)) { .@dg=1; showavatar NPC_LOF_RICH; @@ -1009,6 +1012,8 @@ function script clientupdater { getitem GoldenBossGift, 1; getitem SupremeGift, 1; getitem MagicApple, 1; + } + if (array_exists(.@xmas20$, .@u$)) { getitem Arcanum, 1; getitem StrangeCoin, 30; } |