• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

Exana fire script

rox666

Active Member
Joined
May 19, 2011
Messages
702
Reaction score
26
Location
why would i tell you
~~ Kernkraft ~~

heres the exana fire script will destory your fire from body.
Script is simple but maybe someone needs it rep++ if help =) here you go :

Lua:
local combat = createCombatObject() 
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED) 
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0) 
setCombatParam(combat, COMBAT_PARAM_DISPEL, CONDITION_FIRE) 

function onCastSpell(cid, var) 
    return doCombat(cid, combat, var) 
end

XML:
<instant name="Antidote Fire" words="exana fire" lvl="10" mana="30" aggressive="0" selftarget="1" exhaustion="1000" needlearn="0" event="script" value="healing/fire antidote.lua">
		<vocation id="1"/>
		<vocation id="2"/>
		<vocation id="3"/>
		<vocation id="4"/>
		<vocation id="5"/>
		<vocation id="6"/>
		<vocation id="7"/>
		<vocation id="8"/>
	</instant>
 
so easy change from exana pox to exana fire and you changed only

Lua Code:

local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0)
setCombatParam(combat, COMBAT_PARAM_DISPEL, CONDITION_FIRE) <-- changed only FIRE there was POISON

function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
 
First of all use the codes
second you see that i posted this for people who dont know/need? next time u better read instead of posting dumb things
 
How bout I contribute to this too! :D

This one is for all in one! :D
Code:
setCombatParam(combat, COMBAT_PARAM_DISPEL, CONDITION_GIGADY)
 
First of all use the codes
second you see that i posted this for people who dont know/need? next time u better read instead of posting dumb things

there cant be so idiot people i learned that self whitout tutorials or website
 
Back
Top