• 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.4] The Forgotten Server v0.3 beta 3

Status
Not open for further replies.
[20/01/2009 20:25:04] FATAL: [OTBM loader] Unknown map node.

help-me please :(
 
So there is still problem with shutdown ?? =/ It crashes or not ?
 
it crashes but server is no saved, so you won't lose houses anymore.
 
player.cpp:
Find:
Code:
if(isPromoted())
	{
		if(lostPercent <= 3)
			return 0;

		lostPercent -= 3;
	}

Change to:
Code:
if(isPromoted())
	{
		if(lostPercent <= g_config.getNumber(ConfigManager::PROMOTION_LOSS))
			return 0;

		lostPercent -= g_config.getNumber(ConfigManager::PROMOTION_LOSS);
	}

configmanager.cpp:
Below:
Code:
m_confNumber[EXTRA_PARTY_LIMIT] = getGlobalNumber(L, "extraPartyExpLimit", 20);
Add:
Code:
m_confNumber[PROMOTION_LOSS] = getGlobalNumber(L, "promotionLoss", 3);

configmanager.h:
Below:
Code:
EXTRA_PARTY_LIMIT,
Add:
Code:
PROMOTION_LOSS,

Config.lua:
Add anywhere:
Code:
promotionLoss = yournumber

Rebuild, should work fine. :p

Thanks dude :D
 
it crashes but server is no saved, so you won't lose houses anymore.

Yes but, is there possibility to "remove" the windows about reporting to developers? SO my restarter could work. Now i have to click ok, what if i'm not at home?
 
Is that question? Or ur telling it doesn't crash on console for u
 
Is that question? Or ur telling it doesn't crash on console for u

I am asking because I had no time to try it ;p I was moving my codes from beta 2 to beta 3 and I was working on Ubuntu with this version, so does it crash on console version?
 
Is it new map or the old map? :p
If is it the old map. Could someone recommend a good map to TFS v0.3 :)
 
Damn what the hell. When i try to use the command /owner it's changing different house's owner. When i stay for example in house 2 and write /owner god kleks it's chaning the owner of house 1 and not 2, also when i stay for example in hosue 55 it's still changing the house owner in hosue 1, why? :O When i do !buyhouse and buy the house with god kleks it says i bought the house but when i try to do @leavehosue it says i'm not owner of the house -.- though, i can do leavehouse in the hosue 1. Why is that? I didn't have this problem on beta 2.
 
When player buy house he can't leave it then, the leavehouse talkaction doesn't work properly. It says "You are not owner of this house, while doors say something else >.>
 
i have change GetItemName to GetItemNameById but its dosent works :S
how can i fix it? it is in every chest that happend. when i right klick on it, it just open normaly i dont any item.

help me please
 
i have change GetItemName to GetItemNameById but its dosent works :S
how can i fix it? it is in every chest that happend. when i right klick on it, it just open normaly i dont any item.

help me please


Add this to your actions.lua

Code:
	<!--Own Quests-->
	<action uniqueid="8165" script="quest.lua" />
	<action uniqueid="3347" script="quest.lua" />
	<action uniqueid="8103" script="quest.lua" />
	<action uniqueid="3462" script="quest.lua" />
	<action uniqueid="3348" script="quest.lua" />
	<action uniqueid="4672" script="quest.lua" />
	<action uniqueid="5631" script="quest.lua" />
	<action uniqueid="6600" script="quest.lua" />
	<action uniqueid="6601" script="quest.lua" />
	<action uniqueid="6602" script="quest.lua" />
	<action uniqueid="6603" script="quest.lua" />
	<action uniqueid="6201" script="quest.lua" />
	<action uniqueid="6202" script="quest.lua" />
	<action uniqueid="4671" script="quest.lua" />
	<action uniqueid="6334" script="quest.lua" />
	<action uniqueid="9413" script="quest.lua" />
	<action uniqueid="6131" script="quest.lua" />
	<action uniqueid="3567" script="quest.lua" />
	<action uniqueid="7895" script="quest.lua" />
	<action uniqueid="6145" script="quest.lua" />
	<action uniqueid="4168" script="quest.lua" />
	<action uniqueid="4673" script="quest.lua" />
	<action uniqueid="4691" script="quest.lua" />
	<action uniqueid="6123" script="quest.lua" />
	<action uniqueid="6371" script="quest.lua" />
	<action uniqueid="7894" script="quest.lua" />
	<action uniqueid="4362" script="quest.lua" />
	<action uniqueid="4361" script="quest.lua" />
	<action uniqueid="3165" script="quest.lua" />
	<action uniqueid="51413" script="quest.lua" />
	<action uniqueid="3152" script="quest.lua" />
	<action uniqueid="3151" script="quest.lua" />
	<action uniqueid="6103" script="quest.lua" />
	<action uniqueid="6100" script="quest.lua" />
	<action uniqueid="8101" script="quest.lua" />
	<action uniqueid="9000" script="quest.lua" />
	<action uniqueid="9001" script="quest.lua" />
	<action uniqueid="9002" script="quest.lua" />
	<action uniqueid="9003" script="quest.lua" />
	<action uniqueid="9004" script="quest.lua" />
	<action uniqueid="9005" script="quest.lua" />
	<action uniqueid="9006" script="quest.lua" />
	<action uniqueid="9007" script="quest.lua" />
	<action uniqueid="9008" script="quest.lua" />
	<action uniqueid="9009" script="quest.lua" />
	<action uniqueid="9010" script="quest.lua" />
	<action uniqueid="9011" script="quest.lua" />
	<action uniqueid="9012" script="quest.lua" />
	<action uniqueid="9013" script="quest.lua" />
	<action uniqueid="9014" script="quest.lua" />
	<action uniqueid="9015" script="quest.lua" />
	<action uniqueid="9016" script="quest.lua" />


Change in quests/quests.lua getItemWeight to getItemWeightById
and change getItemName to getItemNameById.
Helped for me.
Btw the tfs doesn't crash on xp, it did on vista for me.
 
Status
Not open for further replies.
Back
Top