milbradt
New Member
- Joined
- Dec 25, 2011
- Messages
- 177
- Solutions
- 1
- Reaction score
- 4
Code:
local player = {}
for _, pid in pairs(getPlayersOnline()) do
if isInRange(getPlayerPosition(pid), positionTop, positionBot) then
if getPlayerGUID(cid) ~= pid then
table.insert(player, pid)
end
end
end
I do not want to put myself in the table.
how do I do that?