diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-21 09:56:06 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-21 09:56:06 +0000 |
commit | e38e61abcc82422874ba40da5a2000c1625763be (patch) | |
tree | 75d29ed0ddfa60404f6ba5e9e07193a5991b2ff7 /npc/other | |
parent | e4610110b3c2724b4716c6dd054e0f21e50baef2 (diff) | |
download | hercules-e38e61abcc82422874ba40da5a2000c1625763be.tar.gz hercules-e38e61abcc82422874ba40da5a2000c1625763be.tar.bz2 hercules-e38e61abcc82422874ba40da5a2000c1625763be.tar.xz hercules-e38e61abcc82422874ba40da5a2000c1625763be.zip |
Corrected Sealstatus checking global vars instead of character.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13224 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other')
-rw-r--r-- | npc/other/sealstatus.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/npc/other/sealstatus.txt b/npc/other/sealstatus.txt index c2fe7bd8c..cd269cae7 100644 --- a/npc/other/sealstatus.txt +++ b/npc/other/sealstatus.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== -//= 1.0 +//= 1.1 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -11,6 +11,7 @@ //= Goid Item Seal Status. //===== Additional Comments: ================================= //= 1.0 First version. [L0ne_W0lf] +//= 1.1 Now checks proper char vars. [L0ne_W0lf] //============================================================ prontera,113,294,3 script Sign Post 837,{ @@ -65,25 +66,25 @@ prontera,113,294,3 script Sign Post 837,{ } mes ""; mes "======= Your Seal Status ========"; - if ($god_sl_1 < 51) { + if (god_sl_1 < 51) { mes "^ff0000Sleipnir Seal: Not Completed^000000"; } else { mes "^00ff00Sleipnir Seal: Completed^000000"; } - if ($god_eremes < 28) { + if (god_eremes < 28) { mes "^ff0000Megingjard Seal: Not Completed^000000"; } else { mes "^00ff00Megingjard Seal: Completed^000000"; } - if ($god_brising < 50) { + if (god_brising < 50) { mes "^ff0000Brisingamen Seal: Not Completed^000000"; } else { mes "^00ff00Brisingamen Seal: Completed^000000"; } - if ($god_mjo_0 < 11) { + if (god_mjo_0 < 11) { mes "^ff0000Mjolnir Seal: Not Completed^000000"; } else { |