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

How can i mak my 8.54 server compile to 8.61

Animera

* * * * *
Joined
Dec 9, 2008
Messages
2,449
Solutions
5
Reaction score
618
Location
ANIMERARPG.ONLINE
How can i mak my 8.54 server compile to 8.61 without getting any bugs or something and without the new gay pvp features (trapping is now ruined) :(
 
You can't compile a server to be compatible with 8.61 from 8.54, and without all of those features without bugs..
 
Last edited:
i only ant to compile because of the new creatre looktypes and more people then come at newer server
the stackable shit os a bit important
but other features i don't care
 
Follow this tutorial when compiling, pretty hard to follow, but it's bug free, and proven.. Although I would just stick with 8.57 until a release comes out if you don't know how to script.

http://otland.net/f481/how-make-your-server-client-8-61-tutorial-90537/


Although if you just want looktypes then add this in your Definitions.H

Replace The Old Line With This :
Code:
#define CLIENT_VERSION_MIN 860
#define CLIENT_VERSION_MAX 861
#define CLIENT_VERSION_STRING "Only clients with protocol 8.61 and 8.60 are allowed!"

#define STATUS_SERVER_NAME "TheForgottenServer"
#define STATUS_SERVER_VERSION "0.3.5"
#define STATUS_SERVER_CODENAME "Crying Damson"
#define STATUS_SERVER_PROTOCOL "8.61"

then go to Itemsloader.h and search for this ::: CLIENT_VERSION_854 = 16,

Replace with :

Code:
	CLIENT_VERSION_854 = 16,
	CLIENT_VERSION_855 = 17,
	CLIENT_VERSION_856 = 18,
	CLIENT_VERSION_857 = 19,
	CLIENT_VERSION_860 = 20,
	CLIENT_VERSION_861 = 21


Then go to Outfit.XML, in your XML Folder and replace it with this :

Code:
<?xml version="1.0"?>
<outfits>
	<outfit id="1">
		<list gender="0" lookType="136" name="Citizen"/>
		<list gender="1" lookType="128" name="Citizen"/>
	</outfit>
 
	<outfit id="2">
		<list gender="0" lookType="137" name="Hunter"/>
		<list gender="1" lookType="129" name="Hunter"/>
	</outfit>
 
	<outfit id="3">
		<list gender="0" lookType="138" name="Mage"/>
		<list gender="1" lookType="130" name="Mage"/>
	</outfit>
 
	<outfit id="4">
		<list gender="0" lookType="139" name="Knight"/>
		<list gender="1" lookType="131" name="Knight"/>
	</outfit>
 
	<outfit id="5" premium="yes">
		<list gender="0" lookType="140" name="Noblewoman"/>
		<list gender="1" lookType="132" name="Nobleman"/>
	</outfit>
 
	<outfit id="6" premium="yes">
		<list gender="0" lookType="141" name="Summoner"/>
		<list gender="1" lookType="133" name="Summoner"/>
	</outfit>
 
	<outfit id="7" premium="yes">
		<list gender="0" lookType="142" name="Warrior"/>
		<list gender="1" lookType="134" name="Warrior"/>
	</outfit>
 
	<outfit id="8" premium="yes">
		<list gender="0" lookType="147" name="Barbarian"/>
		<list gender="1" lookType="143" name="Barbarian"/>
	</outfit>
 
	<outfit id="9" premium="yes">
		<list gender="0" lookType="148" name="Druid"/>
		<list gender="1" lookType="144" name="Druid"/>
	</outfit>
 
	<outfit id="10" premium="yes">
		<list gender="0" lookType="149" name="Wizard"/>
		<list gender="1" lookType="145" name="Wizard"/>
	</outfit>
 
	<outfit id="11" premium="yes">
		<list gender="0" lookType="150" name="Oriental"/>
		<list gender="1" lookType="146" name="Oriental"/>
	</outfit>
 
	<outfit id="12" premium="yes">
		<list gender="0" lookType="155" name="Pirate"/>
		<list gender="1" lookType="151" name="Pirate"/>
	</outfit>
 
	<outfit id="13" premium="yes">
		<list gender="0" lookType="156" name="Assassin"/>
		<list gender="1" lookType="152" name="Assassin"/>
	</outfit>
 
	<outfit id="14" premium="yes">
		<list gender="0" lookType="157" name="Beggar"/>
		<list gender="1" lookType="153" name="Beggar"/>
	</outfit>
 
	<outfit id="15" premium="yes">
		<list gender="0" lookType="158" name="Shaman"/>
		<list gender="1" lookType="154" name="Shaman"/>
	</outfit>
 
	<outfit id="16" premium="yes">
		<list gender="0" lookType="252" name="Norsewoman"/>
		<list gender="1" lookType="251" name="Norseman"/>
	</outfit>
 
	<outfit id="17" premium="yes">
		<list gender="0" lookType="269" name="Nightmare"/>
		<list gender="1" lookType="268" name="Nightmare"/>
	</outfit>
 
	<outfit id="18" premium="yes">
		<list gender="0" lookType="270" name="Jester"/>
		<list gender="1" lookType="273" name="Jester"/>
	</outfit>
 
	<outfit id="19" premium="yes">
		<list gender="0" lookType="279" name="Brotherhood"/>
		<list gender="1" lookType="278" name="Brotherhood"/>
	</outfit>
 
	<outfit id="20" premium="yes">
		<list gender="0" lookType="288" name="Demonhunter"/>
		<list gender="1" lookType="289" name="Demonhunter"/>
	</outfit>
 
	<outfit id="21" premium="yes">
		<list gender="0" lookType="324" name="Yalaharian"/>
		<list gender="1" lookType="325" name="Yalaharian"/>
	</outfit>
 
	<outfit id="22" premium="yes">
		<list gender="0" lookType="336" name="Warmaster"/>
		<list gender="1" lookType="335" name="Warmaster"/>
	</outfit>
 
	<outfit id="23" default="0">
		<list gender="0" lookType="329" name="Wife"/>
		<list gender="1" lookType="328" name="Husband"/>
	</outfit>
 
	<outfit id="24" premium="yes">
		<list gender="0" lookType="366" name="Wayfarer"/>
		<list gender="1" lookType="367" name="Wayfarer"/>
	</outfit>
</outfits>


Now, i'm not guaranteeing it to work perfectly if you JUST did the OUTFITS and LOOK TYPES, but there ya go <_<



Rep++ If I Helped Any, Flame Me If I Didn't...
 
Last edited:
thanks a lot i rep you ^^ the most important reason was because i had over 100+ custom creaatures and few had the new creature looktypes from newer client thats why i do that.
 
Back
Top