Hi i have this function:
but i want to do something like: CountOnlineGuildMembersWithDifferentIP(cid)
can someone edit it for me?
thanks
PHP:
function CountOnlineGuildMembers(cid)
local pguild = getPlayerGuildName(cid)
count = 0
for _, cid in pairs(getPlayersOnline()) do
if getPlayerGuildName(cid) == pguild then
count = count + 1
end
end
return count
end
but i want to do something like: CountOnlineGuildMembersWithDifferentIP(cid)
can someone edit it for me?
thanks