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

Anty Paralize and other rune

TriamerA

The Mystic One.
Joined
Nov 16, 2008
Messages
1,256
Reaction score
17
Location
Poland
Hello I've got a good idea but I don't know how to make those.
First rune or Spell is that makes every player on the screen paralized. The spell should be for GameMasters only. And the second one which will make people loss 60% of their hp, so I would know who is using Bot
 
Code:
local combat = createCombatObject() 
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED) 
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGYBALL) 

local condition = createConditionObject(CONDITION_PARALYZE) 
setConditionParam(condition, CONDITION_PARAM_TICKS, 20000) 
setConditionFormula(condition, -0.9, 0, -0.9, 0) 
setCombatCondition(combat, condition) 

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

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


Code:
<rune name="multi para" id="2271" allowfaruse="1" charges="1" lvl="1" maglv="0" exhaustion="2000" event="script" value="attack/multipara.lua"/>

You have problem beacuse GM can't paralyze any players.
 
Back
Top