O que eu faço em relação ao script?
Nao sei se é esse script que se encontra em: \data\creaturescripts\scripts
function onReportBug(cid, comment)
local pos = getCreaturePosition(cid)
if(db.executeQuery("INSERT INTO `server_reports` (`id`, `world_id`, `player_id`, `posx`, `posy`, `posz`,
`timestamp`, `report`) VALUES (NULL, " ..
getConfigValue('worldId') .. ", " .. getPlayerGUID(cid) ..
", " ..
pos.x .. ", " .. pos.y .. ", " .. pos.z .. ", " ..
os.time() .. ", " ..
db.escapeString(comment) .. ")"))
then
doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT, "Your report has been sent to " .. getConfigValue('serverName')
.. ".")
else
doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT, getConfigValue('serverName') .. " couldn't save your report,
please contact with gamemaster.")
end
return true
end
Como o titulo ja diz, as pessoas sao banidas assim que dão um report no server. Tem algum jeito de arrumar?