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

how to make exori gran hit higher and

pwner123

New Member
Joined
Jul 1, 2009
Messages
211
Reaction score
1
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_HITAREA)
setCombatParam(combat, COMBAT_PARAM_USECHARGES, TRUE)
setCombatFormula(combat, COMBAT_FORMULA_SKILL, 0.8, 0, 1.6, 0)

local area = createCombatArea(AREA_SQUARE1X1)
setCombatArea(combat, area)

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

how do i make exori gran hit higher thats my script and how do i make knights not suck so much
 
Ty to change your COMBAT_FORMULA_SKILL to COMBAT_FORMULA_MAGICLEVEL

no.. thats not good ;)


@pwner123, change the red numbers to whatever you want, just write any higher number than the one that's now.

Code:
setCombatFormula(combat, COMBAT_FORMULA_SKILL, [COLOR="Red"]0.8, 0, 1.6, 0[/COLOR])
 
Back
Top