diff options
author | Haru <haru@dotalux.com> | 2014-10-26 07:16:21 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-11-02 01:36:52 +0100 |
commit | c62b4c3e8e178f8ba1de240b9d67a664ef128ace (patch) | |
tree | de36f22718fe4533ea81e1d02093263005a30224 /npc/quests/counteragent_mixture.txt | |
parent | 54604096ac53398778a5481613061216fe47e5bc (diff) | |
download | hercules-c62b4c3e8e178f8ba1de240b9d67a664ef128ace.tar.gz hercules-c62b4c3e8e178f8ba1de240b9d67a664ef128ace.tar.bz2 hercules-c62b4c3e8e178f8ba1de240b9d67a664ef128ace.tar.xz hercules-c62b4c3e8e178f8ba1de240b9d67a664ef128ace.zip |
Replaced 'set' with direct assignment where applicable (quests folder)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/quests/counteragent_mixture.txt')
-rw-r--r-- | npc/quests/counteragent_mixture.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/quests/counteragent_mixture.txt b/npc/quests/counteragent_mixture.txt index ed8152a06..20e1e8bed 100644 --- a/npc/quests/counteragent_mixture.txt +++ b/npc/quests/counteragent_mixture.txt @@ -86,7 +86,7 @@ alberta_in,133,55,3 script Louitz#cm 4_M_02,{ mes "like any liquids we're used to."; close; case 2: - set molgenstain,1; + molgenstain = 1; mes "[Merchant Louitz]"; mes "Hey, this is one of"; mes "those solutions that"; @@ -156,7 +156,7 @@ alberta_in,133,55,3 script Louitz#cm 4_M_02,{ mes "like any liquids we're used to."; close; case 2: - set molgenstain,1; + molgenstain = 1; mes "[Merchant Louitz]"; mes "Oh hey, this is that"; mes "Karvodailnirol that the"; @@ -226,7 +226,7 @@ alberta_in,133,55,3 script Louitz#cm 4_M_02,{ mes "like any liquids we're used to."; close; case 2: - set molgenstain,1; + molgenstain = 1; mes "[Merchant Louitz]"; mes "Oh hey, this is that"; mes "Detrimindexta that the"; @@ -348,7 +348,7 @@ geffen,181,114,3 script Aure Dupon#cm 4_KID01,{ mes "carried by the tides of destiny."; close; case 2: - set molgenstain,2; + molgenstain = 2; mes "[Aure Dupon]"; mes "Molgenstein...?"; mes "The man is obsessed"; @@ -536,8 +536,8 @@ geffen_in,141,140,3 script Molgenstein#cm 2_M_MOLGENSTEIN,{ } } if (molgenstain == 2) { - set MISC_QUEST,MISC_QUEST | 4; - set molgenstain,0; + MISC_QUEST |= 4; + molgenstain = 0; mes "[Chemist Molgenstein]"; mes "Heeheeheehee.... welcome. Hehehehe.... heeheeheeheehee...."; next; |