mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-04-30 17:49:20 +02:00
17 lines
597 B
Lua
17 lines
597 B
Lua
function onSay(player, words, param)
|
|
if not player:getGroup():getAccess() then
|
|
return true
|
|
end
|
|
|
|
local resultId = db.storeQuery("SELECT `account_id`, `lastip` FROM `players` WHERE `name` = " .. db.escapeString(param))
|
|
if resultId == false then
|
|
return false
|
|
end
|
|
|
|
db.asyncQuery("DELETE FROM `account_bans` WHERE `account_id` = " .. result.getDataInt(resultId, "account_id"))
|
|
db.asyncQuery("DELETE FROM `ip_bans` WHERE `ip` = " .. result.getDataInt(resultId, "lastip"))
|
|
result.free(resultId)
|
|
player:sendTextMessage(MESSAGE_EVENT_ADVANCE, param .. " has been unbanned.")
|
|
return false
|
|
end
|