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

PLz i want help with this

killer hemoz

DOTA PRO PLAYER
Joined
Mar 16, 2009
Messages
53
Reaction score
0
Location
UNknown
this is the first thing i have mystic spirit the console version when i load the server this goes on and i dont know what is that coz when i use the gui version nothing of this appers but the gui have a proplem the !serverinfo is not workin
but /clean do i dont know what to do and the console also dose not do clean

so the console does not do /clean and have this errors and the gui doesnt show
!serverinfo but it do /clean
so i want either a way to fix the console or the gui and i prefer the gui
some one help plz

Errors from loading the console version
>> Loading commands
Unknown command /banip
Unknown command /unbanip
Unknown command !banlist
Unknown command /bc
Unknown command /pvp
Unknown command /premium
Unknown command /z
Unknown command /zt
Unknown command /save
Unknown command /serverdiag
Unknown command !zimba
Unknown command !acc
Warning: Missing group id for command /b
Warning: Missing acctype level for command /b
Warning: Missing group id for command /q
Warning: Missing acctype level for command /q

untitleds-2.gif



Cleaning time: 1.797 seconds, collected 0 items.
 
Last edited:
cleanProtectedZones = "yes" in config.lua
sorry, my fault: for mystic spirit change
map.cpp:
Code:
									if(!tile->hasFlag(TILESTATE_PROTECTIONZONE))
									{
										for(uint32_t i = 0; i < tile->getThingCount(); ++i)
										{
											item = tile->__getThing(i)->getItem();
											if(item && !item->isLoadedFromMap() && !item->isNotMoveable())
											{
												g_game.internalRemoveItem(item);
												i--;
												count++;
											}
										}
									}
to
Code:
								//	if(!tile->hasFlag(TILESTATE_PROTECTIONZONE))
								//	{
										for(uint32_t i = 0; i < tile->getThingCount(); ++i)
										{
											item = tile->__getThing(i)->getItem();
											if(item && !item->isLoadedFromMap() && !item->isNotMoveable())
											{
												g_game.internalRemoveItem(item);
												i--;
												count++;
											}
										}
									//}
 
i dont know how to compile the source i had it compiled from one of my friend

ant btw there is no codes in the code area that you posted
 
I'll compile it for you...

Mystic Spirit Patch 23 ??

EDIT: Included it in attachment now.

Also included sources.


EDIT 2: Fixed house cleaning, it should no longer clean house items
Code:
map.cpp
Line 1311;

if(!tile->hasFlag(TILESTATE_[B]HOUSE[/B]))
 
Last edited:
Back
Top