diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-02 01:15:07 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-02 01:15:07 +0000 |
commit | e8c89d85b61e53646b8a243618a27bd4b06cb7f1 (patch) | |
tree | d8f7a41c9fd45c58bf4013566cc3425434abedb6 /npc/guild/prtg/prtg_treas.txt | |
parent | 95667bfa39da665dc6da8fd4fc354c658774824e (diff) | |
download | hercules-e8c89d85b61e53646b8a243618a27bd4b06cb7f1.tar.gz hercules-e8c89d85b61e53646b8a243618a27bd4b06cb7f1.tar.bz2 hercules-e8c89d85b61e53646b8a243618a27bd4b06cb7f1.tar.xz hercules-e8c89d85b61e53646b8a243618a27bd4b06cb7f1.zip |
* Rather large update to the WoE scripts.
- Eliminated unofficial map-broadcasts (opening treasures/guardian death.)
- Fixed several errors in guardian spawning (script-wise.)
- Treasure spawning itself is done weird... What exactly is the last paramater for anyway? Near as I can see it's ALWAYS 1. Why is it used? what does it do? Why is it undocumented? Mysteries and more!
- Updated dialog and restructured several NPCs.
* Created a unique function for novice WoE as the new manager does not support it.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11633 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guild/prtg/prtg_treas.txt')
-rw-r--r-- | npc/guild/prtg/prtg_treas.txt | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/npc/guild/prtg/prtg_treas.txt b/npc/guild/prtg/prtg_treas.txt index 81a43f7d8..b7a9a5142 100644 --- a/npc/guild/prtg/prtg_treas.txt +++ b/npc/guild/prtg/prtg_treas.txt @@ -11,6 +11,7 @@ //= //===== Additional Comments: ================================= //= v1.2 Optimized with functions.[kobra_k88] +//= 1.3 Removed announces when you open chests. [L0ne_W0lf] //============================================================ @@ -27,9 +28,7 @@ OnInit: end; OnDied: - mapannounce "prtg_cas01","Treasure Chest Broken Open",17; set $boxNumPt01, $boxNumPt01 -1; - if($boxNumPt01 == 0) mapannounce "prtg_cas01", "All of the treasure boxes have been opened. You must wait untill the next day for them to appear again.",0; end; } @@ -59,9 +58,7 @@ OnInit: end; OnDied: - mapannounce "prtg_cas02","Treasure Chest Broken Open",17; set $boxNumPt02, $boxNumPt02 -1; - if($boxNumPt02 == 0) mapannounce "prtg_cas02", "All of the treasure boxes have been opened. You must wait untill the next day for them to appear again.",0; end; } @@ -91,9 +88,7 @@ OnInit: end; OnDied: - mapannounce "prtg_cas03","Treasure Chest Broken Open",17; set $boxNumPt03, $boxNumPt03 -1; - if($boxNumPt03 == 0) mapannounce "prtg_cas03", "All of the treasure boxes have been opened. You must wait untill the next day for them to appear again.",0; end; } @@ -123,9 +118,7 @@ OnInit: end; OnDied: - mapannounce "prtg_cas04","Treasure Chest Broken Open",17; set $boxNumPt04, $boxNumPt04 -1; - if($boxNumPt04 == 0) mapannounce "prtg_cas04", "All of the treasure boxes have been opened. You must wait untill the next day for them to appear again.",0; end; } @@ -155,9 +148,7 @@ OnInit: end; OnDied: - mapannounce "prtg_cas05","Treasure Chest Broken Open",17; set $boxNumPt05, $boxNumPt05 -1; - if($boxNumPt05 == 0) mapannounce "prtg_cas05", "All of the treasure boxes have been opened. You must wait untill the next day for them to appear again.",0; end; } |