diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-12-04 22:31:17 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-12-04 22:31:17 -0300 |
commit | cbedb2bc86877ad9613d567136f29bd0d9981cb7 (patch) | |
tree | 36dd800cd6739066a6edace42e792a7ff328eb3d /npc | |
parent | 51e0b96adca8d1d79ce3af48e8ca42858ae4b7d2 (diff) | |
download | serverdata-cbedb2bc86877ad9613d567136f29bd0d9981cb7.tar.gz serverdata-cbedb2bc86877ad9613d567136f29bd0d9981cb7.tar.bz2 serverdata-cbedb2bc86877ad9613d567136f29bd0d9981cb7.tar.xz serverdata-cbedb2bc86877ad9613d567136f29bd0d9981cb7.zip |
Trait is... Special.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/clientversion.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 980ec111c..f43db3712 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -1082,6 +1082,7 @@ function script clientupdater { getitem SulfurPowder, 3; if (TUT_VAR) { .@dg = true; + setpcblock(PCBLOCK_HARD, true); // Allow you to choose the starting trait // However, we unset #TUTORIAL_DONE so EXP Gain and Knockback are OFF // While alts are generally allowed to have these starting traits, @@ -1089,6 +1090,7 @@ function script clientupdater { #TUTORIAL_DONE = false; do { mesc l("You must choose a trait now, or the opportunity will be forfeit."), 1; next; } while (!ChooseTrait()); #TUTORIAL_DONE = true; + setpcblock(PCBLOCK_HARD, false); } } |