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

Cant load items.otb

Tsukune

New Member
Joined
Aug 9, 2009
Messages
13
Reaction score
0
[Error - Items::loadFromOtb] Another (client) version of items.otb is required.

this is the error i get from the ot starter..

my items.otb version OTB 3.17.103-8.54
and my tfs version 0.3.6

how can i fix that? im trying to make new items ><

-edit-

here is my items.otb
http://www.megaupload.com/?d=22SLM86D
 
0.3.6 requires version 16, so save it as version 16 with otitemeditor (edit graphics.dat if needed) or remove the check from items.cpp:
Code:
	else if(Items::dwMinorVersion != CLIENT_VERSION_854)
	{
		std::cout << "[Error - Items::loadFromOtb] Another (client) version of items.otb is required." << std::endl;
		return ERROR_INVALID_FORMAT;
	}

you can try this otb too: http://www.speedy*****malware.localhost/files/29499260/download/items.rar
 
Last edited:
Back
Top