mgr.inz.Player I post too much
Reputation: 169 Joined: 07 Nov 2008 Posts: 4438 Location: W kraju nad Wisla. UTC+01:00
|
Posted: Fri May 17, 2013 3:32 am Post subject: |
|
|
Yes,
( A~='' or A~=nil ) is always true.
Code: |
A | A~='' | A~=nil | (A~='' or A~=nil)
------------------------------------------------------
'' | false | true | true
nil | true | false | true
'something' | true | true | true |
Finally, this if is useless.
There should be AND
Code: | A | A~='' | A~=nil | (A~='' and A~=nil)
------------------------------------------------------
'' | false | true | false
nil | true | false | false
'something' | true | true | true |
_________________ Dark Souls II Item Swap and Item List
My Borderlands2 tables
Recent CheatEngine builds
|
|