• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Color Codes

Jfrye

Mapper, trying to learn scripting
Joined
Jan 8, 2009
Messages
366
Solutions
5
Reaction score
86
Location
Mexico Missouri
Hey, im trying to find the color codes for the colors used in Tibia. I have searched, but only found a couple threads from around 5 years ago.

I had some monster files that were messed up, and I am having a hard time getting the colors right.

Any help is apprecated.
 
Solution
X
1,2,3,4,5,6
7,8,9,10,11,12
et cetera, afaik..

maybe it's
0,1,2,3,4,5
6,7,8,9,10,11
though

That's for light levels though..

For outfits, the colour palette though.. are you wanting this?
npchelp.png
1,2,3,4,5,6
7,8,9,10,11,12
et cetera, afaik..

maybe it's
0,1,2,3,4,5
6,7,8,9,10,11
though

That's for light levels though..

For outfits, the colour palette though.. are you wanting this?
npchelp.png
 
Last edited by a moderator:
Solution
1,2,3,4,5,6
7,8,9,10,11,12
et cetera, afaik..

maybe it's
0,1,2,3,4,5
6,7,8,9,10,11
though

That's for light levels though..

For outfits, the colour palette though.. are you wanting this?
npchelp.png

well the monster file doesn't match those colors. I have body 16, which is purple. in this code chart, 16 would be pink.
 
Last edited by a moderator:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Zavarash" nameDescription="a Zavarash" race="fire" experience="21000" speed="380" manacost="0">
    <health now="35000" max="35000"/>
    <look type="12" head="1" body="16" legs="0" feet="118" corpse="6068"/>

Here is the start of the file, along with an ingame shot. You can see that the body is 16, and this is the color it shows up in game, unless thats just the way color 16 looks on him. If it is, then that is a lot of misunderstanding on my part.
 

Attachments

Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Zavarash" nameDescription="a Zavarash" race="fire" experience="21000" speed="380" manacost="0">
    <health now="35000" max="35000"/>
    <look type="12" head="1" body="16" legs="0" feet="118" corpse="6068"/>

Here is the start of the file, along with an ingame shot. You can see that the body is 16, and this is the color it shows up in game, unless thats just the way color 16 looks on him. If it is, then that is a lot of misunderstanding on my part.
Yup. The colourable demon has a lot of shading.
That is definitely light pink, on him.

If you set your colour on your god, then use /newtype 12, to turn into the demon, it might be easier for you to see the colour changes.
 

Attachments

Back
Top