diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-09-30 00:08:05 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-09-30 00:08:05 -0300 |
commit | 2efd8ff7d7bcbaf28bf39f71bc4cfce77ad766e3 (patch) | |
tree | 94297255c58d83086c0d9699bad16b9c2aa2c44a | |
parent | d047058bf8b8cb52327dbc91d4a2fe8201d5faf0 (diff) | |
download | serverdata-2efd8ff7d7bcbaf28bf39f71bc4cfce77ad766e3.tar.gz serverdata-2efd8ff7d7bcbaf28bf39f71bc4cfce77ad766e3.tar.bz2 serverdata-2efd8ff7d7bcbaf28bf39f71bc4cfce77ad766e3.tar.xz serverdata-2efd8ff7d7bcbaf28bf39f71bc4cfce77ad766e3.zip |
In Tutorial Mode, do not allow you to start a quest you're fated to fail.
-rw-r--r-- | npc/027-1/laura.txt | 5 | ||||
-rw-r--r-- | npc/functions/clientversion.txt | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/npc/027-1/laura.txt b/npc/027-1/laura.txt index d73bc56a4..9c99be03e 100644 --- a/npc/027-1/laura.txt +++ b/npc/027-1/laura.txt @@ -163,6 +163,11 @@ L_Tier3: close; } + if (TUTORIAL && nard_reputation() < 8) { + mesn col(l("Tutorial Tom"), 9); + mesc l("Unfortunately you're in tutorial mode, so I cannot let you go ahead knowing you'll fail. Please improve your reputation with Nard and then continue."); + close; + } delitem EmptyBottle, 1; delitem EverburnPowder, 1; delitem MaggotSlime, 10; diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index e4b8f0e13..80a82239f 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -1051,7 +1051,7 @@ function script clientupdater { getexp 20000, 1000; // Actual value has changed, you'll be refunded in EXP if (getskilllv(TMW2_SKILLPERMIT) >= 1) - #ADD_LVL+=60000; + #ADD_LVL+=80000; } // :// End of Regular Update System |