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

Colors

Raiden

Developer
Joined
Sep 16, 2008
Messages
486
Reaction score
32
Location
Venezuela
Hey! any know about the damage color? for example the FIREDAMAGE have a number who define the color... the color are 8 and with that color the damage appear in orange an a lot of other damages have others color...

but i want know what numbers are what colors any have a table or anything for help me?
 
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_FIREDAMAGE)

COMBAT_ENERGYDAMAGE
COMBAT_DEATHDAMAGE
COMBAT_ICEDAMAGE
COMBAT_TERRADAMAGE

etc?

I dunno it you need this
 
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_FIREDAMAGE)

COMBAT_ENERGYDAMAGE
COMBAT_DEATHDAMAGE
COMBAT_ICEDAMAGE
COMBAT_TERRADAMAGE

etc?

I dunno it you need this

:huh: nono look i need the numbers of color... in global.lua the FIREDAMAGE have a color and want to know what numbers are what colors...

example of global.lua:

Code:
COMBAT_NONE = 0
COMBAT_PHYSICALDAMAGE = 1
COMBAT_ENERGYDAMAGE = 2
COMBAT_EARTHDAMAGE = 4
COMBAT_POISONDAMAGE = 4
COMBAT_FIREDAMAGE = [B]8[/B] -- this 8 is the number of teh color orange.. 
COMBAT_UNDEFINEDDAMAGE = 16
COMBAT_LIFEDRAIN = 32
COMBAT_MANADRAIN = 64
COMBAT_HEALING = 128
COMBAT_DROWNDAMAGE = 256
COMBAT_ICEDAMAGE = 512
COMBAT_HOLYDAMAGE = 1024
COMBAT_DEATHDAMAGE = 2048

i want know what color are the blue!
 
Back
Top