diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-31 02:03:07 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-31 02:03:07 -0300 |
commit | 77509d3d5fba05ae0ea81732d6364464e9a9b3b6 (patch) | |
tree | cd735c4affe4a8c12731899979a38b5a7151044f /world/map/npc/functions | |
parent | a3e595c17a18b5f4c31d6c4caf3267d4fdb22a48 (diff) | |
download | serverdata-77509d3d5fba05ae0ea81732d6364464e9a9b3b6.tar.gz serverdata-77509d3d5fba05ae0ea81732d6364464e9a9b3b6.tar.bz2 serverdata-77509d3d5fba05ae0ea81732d6364464e9a9b3b6.tar.xz serverdata-77509d3d5fba05ae0ea81732d6364464e9a9b3b6.zip |
The Beheader Quest, Beheaders Expansion (tested and tweaked)
Diffstat (limited to 'world/map/npc/functions')
-rw-r--r-- | world/map/npc/functions/mob_points.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/world/map/npc/functions/mob_points.txt b/world/map/npc/functions/mob_points.txt index 28058d07..5ac9aebf 100644 --- a/world/map/npc/functions/mob_points.txt +++ b/world/map/npc/functions/mob_points.txt @@ -228,10 +228,17 @@ L_good: goto L_Celestia; L_Celestia: - if (QL_CELESTIA < 5 || QL_CELESTIA >= 205 || @mobID != 1072) goto L_Return; + if (QL_CELESTIA < 5 || QL_CELESTIA >= 205 || @mobID != 1072) goto L_Terranite; set QL_CELESTIA, QL_CELESTIA + 1; if (QL_CELESTIA == 205) message strcharinfo(0), "Yeti : ##3This should be enough yetis killed to please Celestia."; + goto L_Terranite; + +L_Terranite: + if (TERRAC < 1 || TERRAC > 2000 || @mobID != 1062) goto L_Return; + if (TERRAC % 100 == 0) + message strcharinfo(0), "Terranite : ##3Total Terranites Slain: "+TERRAC; + set TERRAC, TERRAC + 1; goto L_Return; L_Return: |