You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
So, the bug happens when you try to obfuscate any code using += and probably even -=.
Expected behavior
Usually, you would do count += 1 and that would yield the same result as count = count + 1. But, the obfuscator errors upon such operation.
So, it would normally just add whatever you put after += to the variable and vise versa with -=.
To Reproduce
Steps to reproduce the behavior:
localcount=0whiletruedowait(1)
count+=1--Parsing Error at Position 4:5, unexpected token <Symbol> "+", expected <Symbol> "=" <-0mprint(tostring(count))
end
The text was updated successfully, but these errors were encountered:
@levno-710
Since Lua version 5.3, & and | bitwise operators were introduced, providing more comprehensive support for bitwise operations in Lua. These operators are used for bitwise operations on integers
Describe the bug
So, the bug happens when you try to obfuscate any code using += and probably even -=.
Expected behavior
Usually, you would do count += 1 and that would yield the same result as count = count + 1. But, the obfuscator errors upon such operation.
So, it would normally just add whatever you put after += to the variable and vise versa with -=.
To Reproduce
Steps to reproduce the behavior:
The text was updated successfully, but these errors were encountered: