summaryrefslogtreecommitdiff
path: root/npc/functions/bitwise.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/bitwise.txt')
-rw-r--r--npc/functions/bitwise.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/functions/bitwise.txt b/npc/functions/bitwise.txt
index 88938eef9..023606629 100644
--- a/npc/functions/bitwise.txt
+++ b/npc/functions/bitwise.txt
@@ -121,10 +121,10 @@ function script get_bitword {
/////////////////////////////////////////////////////////////////////////////////
// A Nibble can go up to 15. There are 7 nibbles.
-// set_nibble(VAR, VAL, NIBBLEID)
+// set_nibble(VAR, NIBBLEID, VAL)
function script set_nibble {
.@v=getarg(0);
- switch (getarg(2)) {
+ switch (getarg(1)) {
case 0:
.@s=0; .@m=0xF; break;
case 1:
@@ -140,17 +140,17 @@ function script set_nibble {
case 6:
.@s=24; .@m=0xF000000; break;
default:
- Exception("Invalid SNibble: "+getarg(2), RB_DEFAULT);
+ Exception("Invalid SNibble: "+getarg(1), RB_DEFAULT);
}
- return bitwise_set(getarg(0), .@m, .@s, getarg(1));
+ return bitwise_set(getarg(0), .@m, .@s, getarg(2));
}
// A Byte can go up to 255. There are 3 bytes. The forth can go up to 127.
-// set_nibble(VAR, VAL, BYTEID)
+// set_nibble(VAR, BYTEID, VAL)
function script set_byte {
.@v=getarg(0);
- switch (getarg(2)) {
+ switch (getarg(1)) {
case 0:
.@s=0; .@m=0xFF; break;
case 1:
@@ -160,10 +160,10 @@ function script set_byte {
case 3:
.@s=24; .@m=0x7F000000; break;
default:
- Exception("Invalid SByte: "+getarg(2), RB_DEFAULT);
+ Exception("Invalid SByte: "+getarg(1), RB_DEFAULT);
}
- return bitwise_set(getarg(0), .@m, .@s, getarg(1));
+ return bitwise_set(getarg(0), .@m, .@s, getarg(2));
}
// A Bitword can go up to 65535 and is fixed in position to handle Soul EXP.