I want to check if an object is either array 0 or array 1, I just can't figure out how to use "or" in Papyrus.
I tried these:
if (HT_TrapReplacement == HT_TrapReplaceItemCheck[0]) or (HT_TrapReplacement == HT_TrapReplaceItemCheck[1])
if (HT_TrapReplacement == HT_TrapReplaceItemCheck[0] or HT_TrapReplacement == HT_TrapReplaceItemCheck[1])
But neither compiles.
I rather not make another elseif check with the same actions in two different comparisons.
