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

Damage Color.

Joined
May 23, 2010
Messages
185
Reaction score
23
Hi guys, how are you? I'm having some problems. I'm making a Pokémon Server, for that i made new colors like that:

Code:
	// colorPokemon - Begin //
	
	TEXTCOLOR_NORMAL	= 180,
	TEXTCOLOR_FLYING	= 180,
	TEXTCOLOR_BUG	= 126,
	TEXTCOLOR_VENOM	= 110,
	TEXTCOLOR_GRASS	= 96,
	TEXTCOLOR_FIRE	= 192,
	TEXTCOLOR_WATER	= 83,
	TEXTCOLOR_GROUND	= 162,
	TEXTCOLOR_ROCK	= 171,
	TEXTCOLOR_ELECTRIC	= 204,
	TEXTCOLOR_ICE	= 131,
	TEXTCOLOR_GHOST	= 74,
	TEXTCOLOR_PSYCHIC	= 207,
	TEXTCOLOR_FIGHTING	= 180,
	TEXTCOLOR_DRAGON	= 43,
	
	// colorPokemon - End //

And i tested it on venom race like venom text color:

Code:
case RACE_VENOM:
		textColor = TEXTCOLOR_VENOM;
		break;

When i hit a GS in the game, the game doesn´t show any damage, but from the other colors yes, how can i fix it? Are problems on add new types of text color? Because i tested the new colors in the original TEXT_COLOR and works.
 
Last edited:
Back
Top