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

Utamo Armor [SPELL]

GOD Wille

Excellent OT User
Joined
Jan 11, 2010
Messages
2,826
Solutions
2
Reaction score
815
Location
Sweden
I need a spell that, when i say Utamo Armor (only for palas) i got the double amount of life and of mana (100%) for 10 minutes.


I use tfs 0.3.6
 
Last edited:
LUA:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false)
 
local condition = createConditionObject(CONDITION_ATTRIBUTES)
setConditionParam(condition, CONDITION_PARAM_SUBID, 4)
setConditionParam(condition, CONDITION_PARAM_BUFF, true)
setConditionParam(condition, CONDITION_PARAM_STAT_MAXHEALTHPERCENT, 200)
setConditionParam(condition, CONDITION_PARAM_TICKS, 10 * 60 * 1000)
setCombatCondition(combat, condition)

function onCastSpell(cid, var)
	return doCombat(cid, combat, var)
end
 
tyy <33 but if you already is strenghened you cant do this again right? ( i mean it wont give any effect for doing this 100 times)
 
PHP:
setConditionParam(condition, CONDITION_PARAM_STAT_MAXHEALTHPERCENT, 200)

beware, it's bugged on every TFS, try to cast this spell when u wearing an item with gives u example 200 life :D
your life will pump very fast to around 1000000000+
same with mana and cap
 
Back
Top