diff options
author | Fate <fate-tmw@googlemail.com> | 2008-11-23 12:59:37 -0700 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2008-11-23 12:59:37 -0700 |
commit | c7fb0c21c1d713f02eafccbf7ff16e9c7decaca8 (patch) | |
tree | 9f3125aab0d1d58b704926636ad025a2fa32ec74 /npc/013-3_Cave/sword_chest.txt | |
parent | be64a02f2c904dde19f4bc072678984fe6e83412 (diff) | |
download | serverdata-c7fb0c21c1d713f02eafccbf7ff16e9c7decaca8.tar.gz serverdata-c7fb0c21c1d713f02eafccbf7ff16e9c7decaca8.tar.bz2 serverdata-c7fb0c21c1d713f02eafccbf7ff16e9c7decaca8.tar.xz serverdata-c7fb0c21c1d713f02eafccbf7ff16e9c7decaca8.zip |
Replaced boolean operators by bitwise operators in encoding of chest quests
Diffstat (limited to 'npc/013-3_Cave/sword_chest.txt')
-rw-r--r-- | npc/013-3_Cave/sword_chest.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/013-3_Cave/sword_chest.txt b/npc/013-3_Cave/sword_chest.txt index aad6dde8..2860cfa1 100644 --- a/npc/013-3_Cave/sword_chest.txt +++ b/npc/013-3_Cave/sword_chest.txt @@ -1,7 +1,7 @@ // 013-3.gat,177,22,0 script Chest 111,{ - if( ChestQuest && 2) goto L_Finished; + if( ChestQuest & 2) goto L_Finished; mes "[Chest]"; mes "Would you try to open it?"; @@ -17,7 +17,7 @@ L_Yes: getitem 536, 1; mes "[Chest]"; mes "You opened it and found a short sword!"; - set ChestQuest, ChestQuest || 2; + set ChestQuest, ChestQuest | 2; close; L_Not_Enough: |