diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-27 19:58:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-27 19:58:43 -0300 |
commit | 762643991eb8e7fc986a39eab529fc9f6bb057ff (patch) | |
tree | 683caa62e0f088c8d526b242a6dfc13bbfed0905 | |
parent | 9582cb5d497130adf259631c25fdffa9c6c08734 (diff) | |
download | serverdata-762643991eb8e7fc986a39eab529fc9f6bb057ff.tar.gz serverdata-762643991eb8e7fc986a39eab529fc9f6bb057ff.tar.bz2 serverdata-762643991eb8e7fc986a39eab529fc9f6bb057ff.tar.xz serverdata-762643991eb8e7fc986a39eab529fc9f6bb057ff.zip |
Nivalis Well - When successfully throwing stuff inside, if quest is complete,
it'll report if you will die by jumping or not.
-rw-r--r-- | npc/019-1/well.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/019-1/well.txt b/npc/019-1/well.txt index 9eba86bfa..ca062a476 100644 --- a/npc/019-1/well.txt +++ b/npc/019-1/well.txt @@ -68,6 +68,13 @@ L_Throw: // Now we check if quest must start if (!.@q) goto L_Quest; + // If not, report if it is safe to jump + if (readparam(bVit) < 55) + mesc l("The item impact suggests you don't have enough vitality to jump inside."), 1; + else if (readparam(bVit) < 75) + mesc l("The item impact suggests jumping inside will leave you badly wounded."); + else + mesc l("The item impact suggests jumping inside should be safe if you have enough life."); close; // Quest Node |