line 134: if FindTypesArrayEx(TestType, [$0000], [Ground], false) = 0 then00:00:00:000 [0000]: Exec: [Error] (script.sc at 134:9): Type Mismatch
script +-:
Code: Select all
Program Script;
var
TestType : Array of Word;
Begin
TestType := [$0C7D,$1A9B,$18E5,$0C60,$0C6F,$0C76,$0C61,$0C57,$18E9,$18DF,$18E1];
if FindTypesArrayEx(TestType, [$0000], [Ground], false) = 0 then
begin
end;
End.
Code: Select all
Program Script;
Begin
if FindTypesArrayEx([$0C7D,$1A9B,$18E5,$0C60,$0C6F,$0C76,$0C61,$0C57,$18E9,$18DF,$18E1], [$0000], [Ground], false) = 0 then
begin
end;
End.