diff options
Diffstat (limited to 'world/map/npc/annuals')
-rw-r--r-- | world/map/npc/annuals/xmas/2020.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/world/map/npc/annuals/xmas/2020.txt b/world/map/npc/annuals/xmas/2020.txt index dd82f134..0ad40cdc 100644 --- a/world/map/npc/annuals/xmas/2020.txt +++ b/world/map/npc/annuals/xmas/2020.txt @@ -122,6 +122,8 @@ OnTimer15000: OnClock1800: initnpctimer; + // WARNING: Do not duplicate!! + announce "Santa : Ho ho ho, I see a huge movement by the grinchboos!", 0; end; OnClock1830: @@ -358,6 +360,37 @@ L_Extra4: cleararray @oldstock$, "", getarraysize(@oldstock$); close; +/* FIXME requires player attached bcz TMWA is crazy, so better not. +// Spawn 10~30 snowballs in Nivalis square +OnClock2359: + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + makeitem 5260, rand(1,3), "020-1", rand(69, 82), rand(78, 91); + end; + +// Duplicates +OnClock0001: + goto OnClock2359; +OnClock1759: + goto OnClock2359; +OnClock1801: + goto OnClock2359; +OnClock0559: + goto OnClock2359; +OnClock0601: + goto OnClock2359; +OnClock2124: + goto OnClock2359; +OnClock0024: + goto OnClock2359; +*/ } |