diff options
-rw-r--r-- | npc/017-1/stranger.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/npc/017-1/stranger.txt b/npc/017-1/stranger.txt index ac11e8c3f..aede21227 100644 --- a/npc/017-1/stranger.txt +++ b/npc/017-1/stranger.txt @@ -11,6 +11,15 @@ end; OnInit: + .distance=5; +OnClock0000: + if (gettime(GETTIME_MONTH) % 3 == 1) { + if (gettime(GETTIME_DAYOFMONTH) >= 18 && gettime(GETTIME_DAYOFMONTH) <= 25) { + enablenpc .name$; + end; + } + } + disablenpc .name$; end; } |