Extrodus
|| Blazera.net ||
@xinn - Please investigate this issue with your server list and unban the effected servers.
Situation: Logged in to OTServList to buy advertising, turns out my server is removed from the list for spoofing #2. I use the x-logged compile edit, 100 minute idle time (confirmed by Xinn that is is okay to do this as long as you compile with x-log edit), no-logout zones are only in events that run for 10 minutes every 3 hours.
So I have emailed Xinn and he told me I have been banned for not using the x-logged edit. But thing is, I do use that.. he also went on to say that my idle.lua may have a common bug that allows players to still be counted when attacking a monster. But I'm pretty sure I dont have that problem, I have included my script for anyone who knows the problem.
Banned for Data Spoof #2 - I was not spoofing in any way though.
Idle Timer: 100 minutes <-- Xinn said this is allowed as long as I am compiled with the below edit.
Currently Compiled with:
http://otland.net/f451/how-not-count-x-logged-players-81370/
Idle.lua <-- Is there anything wrong with this?
So from what I see, I have done absolutely nothing wrong yet I am banned from OTServList.
I have emailed him multiple times and each time he responds it goes something like "You must not count x-logged players or log in extra characters that dont log out to spoof, if you do not follow this you will be banned"
Thing is, I follow all the rules.. anyone have an explanation for this? All my No-Logout zones are also PvP zones and are only in Events that run for 10 minutes max each time. So, please let me know what I'm missing.
Other people that seem to be getting banned for no reason:
http://otland.net/threads/why-my-server-has-been-banished-from-otservlist.208313/
http://otland.net/threads/my-server-banned.208167/
http://otland.net/threads/my-server-got-banned-warloria-servegame-com.207558/
Xinn, if you read this please email back the information I need to fix if there is a problem with my server. But right now it seems I have been following all the rules so there is no reason for this ban.
Situation: Logged in to OTServList to buy advertising, turns out my server is removed from the list for spoofing #2. I use the x-logged compile edit, 100 minute idle time (confirmed by Xinn that is is okay to do this as long as you compile with x-log edit), no-logout zones are only in events that run for 10 minutes every 3 hours.
So I have emailed Xinn and he told me I have been banned for not using the x-logged edit. But thing is, I do use that.. he also went on to say that my idle.lua may have a common bug that allows players to still be counted when attacking a monster. But I'm pretty sure I dont have that problem, I have included my script for anyone who knows the problem.
Banned for Data Spoof #2 - I was not spoofing in any way though.
Idle Timer: 100 minutes <-- Xinn said this is allowed as long as I am compiled with the below edit.
Currently Compiled with:
http://otland.net/f451/how-not-count-x-logged-players-81370/
Idle.lua <-- Is there anything wrong with this?
Code:
local config = {
idleWarning = getConfigValue('
idleWarningTime'),
idleKick = getConfigValue('idleKickTime')
}
function onThink(cid, interval)
if(getTileInfo(getCreaturePosition(cid)).nologout or getCreatureNoMove(cid) or
getPlayerCustomFlagValue(cid, PLAYERCUSTOMFLAG_ALLOWIDLE)) then
return true
end
local idleTime = getPlayerIdleTime(cid) + interval
doPlayerSetIdleTime(cid, idleTime)
if(config.idleKick > 0 and idleTime > config.idleKick) then
doRemoveCreature(cid)
elseif(config.idleWarning > 0 and idleTime == config.idleWarning) then
local message = "You have been idle for " .. math.ceil(config.idleWarning / 60000) .. " minutes"
if(config.idleKick > 0) then
message = message .. ", you will be disconnected in "
local diff = math.ceil((config.idleWarning - config.idleKick) / 60000)
if(diff > 1) then
message = message .. diff .. " minutes"
else
message = message .. "one minute"
end
message = message .. " if you are still idle"
end
doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, message .. ".")
end
return true
end
So from what I see, I have done absolutely nothing wrong yet I am banned from OTServList.
I have emailed him multiple times and each time he responds it goes something like "You must not count x-logged players or log in extra characters that dont log out to spoof, if you do not follow this you will be banned"
Thing is, I follow all the rules.. anyone have an explanation for this? All my No-Logout zones are also PvP zones and are only in Events that run for 10 minutes max each time. So, please let me know what I'm missing.
Other people that seem to be getting banned for no reason:
http://otland.net/threads/why-my-server-has-been-banished-from-otservlist.208313/
http://otland.net/threads/my-server-banned.208167/
http://otland.net/threads/my-server-got-banned-warloria-servegame-com.207558/
Xinn, if you read this please email back the information I need to fix if there is a problem with my server. But right now it seems I have been following all the rules so there is no reason for this ban.
Last edited: