diff options
Diffstat (limited to 'npc/other/sealstatus.txt')
-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 { |