1771
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Currently Banned, Application Suspended.
Lol that made me laughed. So are you saying that i am spamming ?
I don't try to display my gender. If I accidentally do, I honestly do not mean to.
I apologize if it seemed like so.
D':
Well I mean sometimes I do poke around a little for some humor around that area. I go along with the jokes they come up with.
I know I'm rare so sometimes, I just like to joke around and be sexist towards myself and girls online to be funny.. But then again, I'm not a funny person and people take it the wrong way.. I need to stop to be honest -.-
I apologize if I seem like I'm emphasizing my womanhood to everyone. I just thought this thread would explain my point of reference. And I just thought I'd joke around as well. But those never seem to work out too well.
All these techniques are shit. Untested.Code: [Select]local names = {}
for k , v in ipairs(player.GetAll()) do
table.insert(names , {v , v:Nick()})
end
function table.HasMember(tbl , val) -- table.HasValue only works on tables with singular indexes
for k ,v in ipairs(tbl) do
for a , b in ipairs(v) do
if val == b then
return true
end
end
if v == val then
return true
end
end
end
local function CheckNames(p , c , a)
for k , v in ipairs(player.GetAll()) do
if not table.HasMember(names , v) then
table.insert(names , {v , v:Nick()})
end
for a , b in pairs(names) do
if b[1] == v then
if b[2] != v:Nick() then
print(v:SteamID().. " is using a name changer")
end
end
end
end
end
concommand.Add("check_names" , CheckNames)