brother everyday i watch at scripts its new for me , look even my english every day is different... brother i fight seriuos ilness in my life and working on my passion with is server /ot... yes i shoud be able to make all myself within such time , but i cant!Member since 2008, and still can't make the most basic of spells.
Nor can you use the search function apparently.
Will you ever stop leeching and start learning this shit?
If I could make that script when I was 12, I'm sure you can figure out how to make it after 8-9 years of using the software/systems provided to you.
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY)
setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1499)
local arr = {
{1, 1, 1},
{1, 2, 1},
{1, 1, 1}
}
local area = createCombatArea(arr)
setCombatArea(combat, area)
function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
will test it after i get on pcLUA:local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY) setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1499) local arr = { {1, 1, 1}, {1, 2, 1}, {1, 1, 1} } local area = createCombatArea(arr) setCombatArea(combat, area) function onCastSpell(cid, var) return doCombat(cid, combat, var) end