Like to know if it's CT/T only or everyone and more things?
1
2
3
4
2
3
4
for i = 0, 9 do
msg(tostring(entity(x, y, "int["..i.."]")))
msg(tostring(entity(x, y, "str["..i.."]")))
end
This leads to a whole bunch of
false
s. for i = 0, 9 do
msg(tostring(entity(x, y, "int["..i.."]")))
msg(tostring(entity(x, y, "str["..i.."]")))
end
false
s. for i = 0, 9 do
msg(tostring(entity(x, y, "int"..i)))
msg(tostring(entity(x, y, "str"..i)))
end