diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-04-26 21:00:16 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-04-26 21:00:16 -0300 |
commit | 86b79f3e073ad714ae48f8ebb3c5e56c32d340b4 (patch) | |
tree | 23372dfe0b9fcb3182cba83c1d0e84a65d2a8d11 | |
parent | 968a318c95d560e18e50c991e9c9c8f9af501b48 (diff) | |
download | serverdata-86b79f3e073ad714ae48f8ebb3c5e56c32d340b4.tar.gz serverdata-86b79f3e073ad714ae48f8ebb3c5e56c32d340b4.tar.bz2 serverdata-86b79f3e073ad714ae48f8ebb3c5e56c32d340b4.tar.xz serverdata-86b79f3e073ad714ae48f8ebb3c5e56c32d340b4.zip |
Fix typo
-rw-r--r-- | npc/023-2/mk.txt | 2 | ||||
-rw-r--r-- | npc/functions/gmbot.txt | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/npc/023-2/mk.txt b/npc/023-2/mk.txt index 319bc26d4..00b531450 100644 --- a/npc/023-2/mk.txt +++ b/npc/023-2/mk.txt @@ -73,7 +73,7 @@ L_Finish2: // Game Storyline advances: The Town Blockade Stage is now over $GAME_STORYLINE=1; - $MK_TEMP=gettimeparam(GETTIME_DAYOFMONTH)+rand(30,35); + $MK_TEMPVAR=gettimeparam(GETTIME_DAYOFMONTH)+rand(30,35); // Clean up the event $NIVALIS_LIBDATE=gettimetick(2); diff --git a/npc/functions/gmbot.txt b/npc/functions/gmbot.txt index 81bf977ce..2d7bbc2c7 100644 --- a/npc/functions/gmbot.txt +++ b/npc/functions/gmbot.txt @@ -171,8 +171,8 @@ OnTimer90000: } // Maybe, just maybe, game storyline must be updated here - if ($GAME_STORYLINE == 1 && $MK_TEMP && - $MK_TEMP <= gettimeparam(GETTIME_DAYOFMONTH)) { + if ($GAME_STORYLINE == 1 && $MK_TEMPVAR && + $MK_TEMPVAR <= gettimeparam(GETTIME_DAYOFMONTH)) { // Game Story Change: Idle MK -> Active MK kamibroadcast("I can't handle it anymore! NO MORE!", "Monster King"); sleep(2500); @@ -186,7 +186,7 @@ OnTimer90000: // Apply the changes $GAME_STORYLINE=2; - $MK_TEMP=0; + $MK_TEMPVAR=0; } // We're done, restart loop timer |