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

Bug Light in Character

Dogrinha

New Member
Joined
Oct 6, 2019
Messages
206
Solutions
1
Reaction score
2
My characters when using torch or Utevo lux, works, after finishing it does not work anymore, just dislogging. Does anyone know how to solve this?
tfs 0.4 tíbia 8.6
 
everyone who gives a little light, by using the torch it rises, by removing from the character the character continues with the torch light, by removing the torch and the light is gone, the character no longer receives the torch light. utevo lux too
 
I didn't understand yet, it happens with all torch/frozen starlight and all light items or only "Torch"?
it happen with all light spells "utevo lux" "utevo gran lux" "utevo vis lux" or only "utevo lux"?
 
only utevo lux and torch, "light 3 sqm"
Also when I use a light item, it overlaps with lux, or gran lux, such as a light item that is red.
 
Torch and light items should have duration in items.xml check if its there or not.
post your utevo lux script.
 
LUA:
<item id="2050" article="a" name="torch">
        <attribute key="weight" value="500" />
        <attribute key="stopduration" value="1" />
    </item>

local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local condition = createConditionObject(CONDITION_LIGHT) setConditionParam(condition, CONDITION_PARAM_LIGHT_LEVEL, 6) setConditionParam(condition, CONDITION_PARAM_LIGHT_COLOR, 215) setConditionParam(condition, CONDITION_PARAM_TICKS, (6 * 60 + 10) * 1000) setCombatCondition(combat, condition) function onCastSpell(cid, var) return doCombat(cid, combat, var) end
 
Back
Top