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

Auto utito tempo

pansuchar

Member
Joined
Dec 29, 2008
Messages
68
Reaction score
5
Hi all,
I need script for utito tempo when it end up. I cannot find in forum.
Cheers
 
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false)

local condition = createConditionObject(CONDITION_ATTRIBUTES)
setConditionParam(condition, CONDITION_PARAM_TICKS, 10000)
setConditionParam(condition, CONDITION_PARAM_SKILL_MELEEPERCENT, 135)
setConditionParam(condition, CONDITION_PARAM_SKILL_SHIELDPERCENT, -100)
setConditionParam(condition, CONDITION_PARAM_BUFF, true)
setCombatCondition(combat, condition)

function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
 
I create utitotempo.lua inside config file, relog, and have this error:
1592732181549.png
 
Last edited:
I've created this simple one for me...

macro(500, "Auto Blood Rage", function()
saySpell("utito tempo", 200)
delay(10000)
end)
 
Back
Top