diff options
author | og2 <og2@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-03-27 03:26:13 +0000 |
---|---|---|
committer | og2 <og2@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-03-27 03:26:13 +0000 |
commit | 752b5c2ee7b9cdccee26dc0deb96307c3adf51b3 (patch) | |
tree | 70205fe92125096b0b071a3a50abbbed406ae25d /npc/other/sealstatus.txt | |
parent | 555c7fb865bfc03d04824d776f9cae7394aea190 (diff) | |
download | hercules-752b5c2ee7b9cdccee26dc0deb96307c3adf51b3.tar.gz hercules-752b5c2ee7b9cdccee26dc0deb96307c3adf51b3.tar.bz2 hercules-752b5c2ee7b9cdccee26dc0deb96307c3adf51b3.tar.xz hercules-752b5c2ee7b9cdccee26dc0deb96307c3adf51b3.zip |
~ Updated a few Descriptions
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15803 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other/sealstatus.txt')
-rw-r--r-- | npc/other/sealstatus.txt | 113 |
1 files changed, 37 insertions, 76 deletions
diff --git a/npc/other/sealstatus.txt b/npc/other/sealstatus.txt index 45203c0fd..c314ba976 100644 --- a/npc/other/sealstatus.txt +++ b/npc/other/sealstatus.txt @@ -7,88 +7,49 @@ //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= -//= [Aegis Conversion] //= Goid Item Seal Status. //===== Additional Comments: ================================= -//= 1.0 First version. [L0ne_W0lf] +//= 1.0 Translated from the official. [L0ne_W0lf] //= 1.1 Now checks proper char vars. [L0ne_W0lf] //============================================================ prontera,113,294,3 script Sign Post 837,{ mes "======== God Seal Status ========"; - if ($god1 == 0) { - mes "Sleipnir Seal: Unseen"; - } - else if ($god1 < 50) { - mes "Sleipnir Seal: Active"; - } - else if ($god1 < 100) { - mes "Sleipnir Seal: Appeared"; - } - else { - mes "Sleipnir Seal: Released"; - } - if ($god2 == 0) { - mes "Megingjard Seal: Unseen"; - } - else if ($god2 < 50) { - mes "Megingjard Seal: Active"; - } - else if ($god2 < 100) { - mes "Megingjard Seal: Appeared"; - } - else { - mes "Megingjard Seal: Released"; - } - if ($god3 == 0) { - mes "Brisingamen Seal: Unseen"; - } - else if ($god3 < 50) { - mes "Brisingamen Seal: Active"; - } - else if ($god3 < 100) { - mes "Brisingamen Seal: Appeared"; - } - else { - mes "Brisingamen Seal: Released"; - } - if ($god4 == 0) { - mes "Mjolnir Seal: Unseen"; - } - else if ($god4 < 50) { - mes "Mjolnir Seal: Active"; - } - else if ($god4 < 100) { - mes "Mjolnir Seal: Appeared"; - } - else { - mes "Mjolnir Seal: Released"; - } - mes ""; + + if ($god1 == 0) { mes "Sleipnir Seal: Unseen"; } + else if ($god1 < 50) { mes "Sleipnir Seal: Active"; } + else if ($god1 < 100) { mes "Sleipnir Seal: Appeared"; } + else { mes "Sleipnir Seal: Released"; } + + if ($god2 == 0) { mes "Megingjard Seal: Unseen"; } + else if ($god2 < 50) { mes "Megingjard Seal: Active"; } + else if ($god2 < 100) { mes "Megingjard Seal: Appeared"; } + else { mes "Megingjard Seal: Released"; } + + if ($god3 == 0) { mes "Brisingamen Seal: Unseen"; } + else if ($god3 < 50) { mes "Brisingamen Seal: Active"; } + else if ($god3 < 100) { mes "Brisingamen Seal: Appeared"; } + else { mes "Brisingamen Seal: Released"; } + + if ($god4 == 0) { mes "Mjolnir Seal: Unseen"; } + else if ($god4 < 50) { mes "Mjolnir Seal: Active"; } + else if ($god4 < 100) { mes "Mjolnir Seal: Appeared"; } + else { mes "Mjolnir Seal: Released"; } + + mes " "; mes "======= Your Seal Status ========"; - if (god_sl_1 < 51) { - mes "^ff0000Sleipnir Seal: Not Completed^000000"; - } - else { - mes "^00ff00Sleipnir Seal: Completed^000000"; - } - if (god_eremes < 28) { - mes "^ff0000Megingjard Seal: Not Completed^000000"; - } - else { - mes "^00ff00Megingjard Seal: Completed^000000"; - } - if (god_brising < 50) { - mes "^ff0000Brisingamen Seal: Not Completed^000000"; - } - else { - mes "^00ff00Brisingamen Seal: Completed^000000"; - } - if (god_mjo_0 < 11) { - mes "^ff0000Mjolnir Seal: Not Completed^000000"; - } - else { - mes "^00ff00Mjolnir Seal: Completed^000000"; - } - close; + + if (god_sl_1 < 51) { mes "^ff0000Sleipnir Seal: Not Completed^000000"; } + else { mes "^00ff00Sleipnir Seal: Completed^000000"; } + + if (god_eremes < 28) { mes "^ff0000Megingjard Seal: Not Completed^000000"; } + else { mes "^00ff00Megingjard Seal: Completed^000000"; } + + if (god_brising < 50) { mes "^ff0000Brisingamen Seal: Not Completed^000000"; } + else { mes "^00ff00Brisingamen Seal: Completed^000000"; } + + if (god_mjo_0 < 11) { mes "^ff0000Mjolnir Seal: Not Completed^000000"; } + else { mes "^00ff00Mjolnir Seal: Completed^000000"; } + +close; } |