• 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!

[8.5] The Forgotten Server 0.3.5pl1 (Crying Damson)

Status
Not open for further replies.
The Black Skull are bugged!
When u get the black skull... its never leave!
Why?

Pass the days ... and u still Black Skull!
 
-- Unjustified kills
redSkullLength = 30 * 24 * 60 * 60
blackSkullLength = 45 * 24 * 60 * 60
dailyFragsToRedSkull = 3
weeklyFragsToRedSkull = 5
monthlyFragsToRedSkull = 10
dailyFragsToBlackSkull = 6
weeklyFragsToBlackSkull = 10
monthlyFragsToBlackSkull = 20
dailyFragsToBanishment = dailyFragsToRedSkull
weeklyFragsToBanishment = weeklyFragsToRedSkull
monthlyFragsToBanishment = monthlyFragsToRedSkull
blackSkulledDeathHealth = 40
blackSkulledDeathMana = 0
useBlackSkull = "yes"
advancedFragList = "no"


So... its a bug or bad configuration?
 
my server is fucking crashing for mega bomb and this
[13/09/2009 13:28:31] [Warning - Protocol::RSA_decrypt] Not valid packet size
HELP ME!!!!!
 
Well I was going to try this server out but when I clicked the link it took over a minute for the page to open then took the d/l almost as long to start. Once it finally started it got to 5KB then said it was done... I don't think I like this hyperupload (or whatever) site. :/
 
It has a program that blocks port TelNet, I use it more will not help.

My server goes down anyway.

Does anyone know any solution?

Thanks!
 
Elf , you server It has protection for them attack for the elf bot?


Player Protection against debuging client with ElfBot NG

You server fixed???

Or Crash for magebomb
¿?

To answer please
To answer please
 
-- Unjustified kills
redSkullLength = 30 * 24 * 60 * 60
blackSkullLength = 45 * 24 * 60 * 60
dailyFragsToRedSkull = 3
weeklyFragsToRedSkull = 5
monthlyFragsToRedSkull = 10
dailyFragsToBlackSkull = 6
weeklyFragsToBlackSkull = 10
monthlyFragsToBlackSkull = 20
dailyFragsToBanishment = dailyFragsToRedSkull
weeklyFragsToBanishment = weeklyFragsToRedSkull
monthlyFragsToBanishment = monthlyFragsToRedSkull
blackSkulledDeathHealth = 40
blackSkulledDeathMana = 0
useBlackSkull = "yes"
advancedFragList = "no"


So... its a bug or bad configuration?

bad config

you set red skull for 30 days and black for 45


-- Unjustified kills
redSkullLength = 2 * 60 * 60
blackSkullLength = 4 * 60 * 60
dailyFragsToRedSkull = 4
weeklyFragsToRedSkull = 21
monthlyFragsToRedSkull = 84
dailyFragsToBlackSkull = 8
weeklyFragsToBlackSkull = 56
monthlyFragsToBlackSkull = 224
dailyFragsToBanishment = dailyFragsToRedSkull
weeklyFragsToBanishment = weeklyFragsToRedSkull
monthlyFragsToBanishment = monthlyFragsToRedSkull
blackSkulledDeathHealth = 40
blackSkulledDeathMana = 0
useBlackSkull = "yes"
advancedFragList = "no"


that is how my is configured
 
XD....you forgot to add `groups` to mysql text i cant edit the gods and such..
 
autoBanishUnknownBytes = "no"

that will ban all who send unknown bytes

also who try to log with game port 7172
In Config.lua:

Code:
forceSlowConnectionsToDisconnect = "yes"

Code:
  loginTries = 2
  retryTimeout = 99 * 1000
  loginTimeout = 199 * 1000

in data/creaturescripts/scripts add:

magebomb.lua

Code:
local config = {
	seconds = 2,		-- in seconds
	onlyWithSameIP = "yes"	-- will work for all players ("no"), or only check player with same IP? ("yes")
}

--DONT MODIFY
config.onlyWithSameIP = getBooleanFromString(config.onlyWithSameIP)

local m_lastLogin, m_lastIP = 0, 0

function onLogin(cid)
	local timeNow, playerIP = os.time(), getPlayerIp(cid)
	if(m_lastLogin + config.seconds >= timeNow and (config.onlyWithSameIP == FALSE or m_lastIP == playerIP)) then
		return FALSE
	end

	m_lastIP = playerIP
	m_lastLogin = timeNow
	return TRUE
end

in data/creaturescripts/creaturescripts.xml

Code:
	<event type="login" name="PlayerLogin" event="script" value="magebomb.lua"/>

repp++
 
Status
Not open for further replies.
Back
Top