diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-12-03 22:30:12 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-12-03 22:30:12 -0300 |
commit | 4fee204b1f56a72494bf13244dff9500cde35890 (patch) | |
tree | 1944b84a6cc4dc3cc4a8c3aabaf1fc8e6a0093bb /npc/functions | |
parent | 3a4148ca90d9c236cec6081e10bdb22ce3968a30 (diff) | |
download | serverdata-4fee204b1f56a72494bf13244dff9500cde35890.tar.gz serverdata-4fee204b1f56a72494bf13244dff9500cde35890.tar.bz2 serverdata-4fee204b1f56a72494bf13244dff9500cde35890.tar.xz serverdata-4fee204b1f56a72494bf13244dff9500cde35890.zip |
Give some Training Arrows when getting Forest Bow with Alan
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/clientversion.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 67d3f4870..398553459 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -1079,9 +1079,11 @@ function script clientupdater { // While alts are generally allowed to have these starting traits, // there's no way for veterans select this. #TUTORIAL_DONE = false; - do { mesc l("You must choose a trait now, or the opportunity will be forfeit."), 1; } while (!ChooseTrait()); + do { mesc l("You must choose a trait now, or the opportunity will be forfeit."), 1; next; } while (!ChooseTrait()); #TUTORIAL_DONE = true; } + if (getq(HurnscaldQuest_ForestBow)) + getitem TrainingArrow, 220; } // :// End of Regular Update System |