• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

getGuildCreationDate(guildname)

Scooty

Enemia.EU
Joined
Jul 24, 2010
Messages
564
Reaction score
14
Location
Kraków
hi, i need this function:


PHP:
getGuildCreationDate(guildname)


can someone write it?

thank you
 
LUA:
function getGuildCreationDate(n) -- public int
local r = db.getResult("SELECT creationdata FROM guilds WHERE `name` = '"..db.escapeString(n).."';")
local d;
if(r:getID() ~= -1) then
d = getDataInt("creationdata")
result:free()
end
return d or -1
end
 
Back
Top