diff options
Diffstat (limited to 'world/map/npc')
-rw-r--r-- | world/map/npc/008-1/annualeaster.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/world/map/npc/008-1/annualeaster.txt b/world/map/npc/008-1/annualeaster.txt index 9bc6b584..425aa529 100644 --- a/world/map/npc/008-1/annualeaster.txt +++ b/world/map/npc/008-1/annualeaster.txt @@ -11,6 +11,10 @@ function|script|AnnualEasterEvent|{ + // prevent players having level 19 or less to get anything: + if (BaseLevel < 20) + goto L_End2; + // prevent clicking multiple times: if (gettimetick(2) < @eastertimepenalty + $@EASTER_FOUND_WAIT_TIME) goto L_End2; |