diff options
author | Haru <haru@dotalux.com> | 2014-10-26 05:00:08 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-11-02 01:36:51 +0100 |
commit | 54604096ac53398778a5481613061216fe47e5bc (patch) | |
tree | 4d9982857e3bd9ee7eab839cc743cb6f3e9dc7f3 /npc/quests/seals/god_global.txt | |
parent | 46fbbaabefa29df1378ae68b7f063dbc64846042 (diff) | |
download | hercules-54604096ac53398778a5481613061216fe47e5bc.tar.gz hercules-54604096ac53398778a5481613061216fe47e5bc.tar.bz2 hercules-54604096ac53398778a5481613061216fe47e5bc.tar.xz hercules-54604096ac53398778a5481613061216fe47e5bc.zip |
Replaced 'set' with direct assignment where applicable (quests subfolders)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/quests/seals/god_global.txt')
-rw-r--r-- | npc/quests/seals/god_global.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/quests/seals/god_global.txt b/npc/quests/seals/god_global.txt index c9daa613e..daeb6ddae 100644 --- a/npc/quests/seals/god_global.txt +++ b/npc/quests/seals/god_global.txt @@ -42,10 +42,10 @@ sec_in02,15,170,0 script Golbal var 4_F_CHNDRESS3,{ mes "[Check]"; mes "Now, the entire list of God Globalvar is being reset."; next; - set $God1,0; - set $God2,0; - set $God3,0; - set $God4,0; + $God1 = 0; + $God2 = 0; + $God3 = 0; + $God4 = 0; mes "^0000FF$God1^000000 = ^FF0000" + $God1 + "^000000."; mes "^0000FF$God2^000000 = ^FF0000" + $God2 + "^000000."; mes "^0000FF$God3^000000 = ^FF0000" + $God3 + "^000000."; @@ -101,11 +101,11 @@ L_Var: OnInit: // Seals roll at 25/50 in Renewal and 50/100 in Pre-Renewal. if (checkre(0)) { - set $@god_check1,25; - set $@god_check2,50; + $@god_check1 = 25; + $@god_check2 = 50; } else { - set $@god_check1,50; - set $@god_check2,100; + $@god_check1 = 50; + $@god_check2 = 100; } end; } |