• 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 people create or post own custom spells(8.5)

uchiha1sasukee

Chillin Boss
Joined
May 18, 2009
Messages
1,522
Reaction score
129
Location
North LA, Van Nuys
The purpose of this post is to show others how to make thier own custom spells :thumbup:

And you can share your custom spells with it ^_^

Hope you could share some good spells.

and i hope Good luck to everyone who helps

Just Post as much as spells you can :)

Iam trying to help the community here :wub:
 
Last edited:
1: Change title to "How people create own custom spells" or something..

2: you should have a example to post before you just doing such post as it risk die even before it was alive..

I've seen many threads like this that contains 1-3 post, and haven't been updated since years back... (some threads are updated by mistake by people say "lol" in a thread without look at time the as post was posted...
 
Massive Paralyze Spell

Here is a good spell that I made some time ago and i want post here :). Its effect is paralyze people in a big area


local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE,COMBAT_PHYSICALDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT,CONST_ME_SOUND_RED)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1.0, -1, 1.6, -10)
local condition = createConditionObject(CONDITION_PARALYZE)
setConditionParam(condition, CONDITION_PARAM_TICKS, 300000)
--setConditionParam(condition, CONDITION_PARAM_SPEED, 99)
setConditionFormula(condition, -1.0, 0, -1.0, 0)
setCombatCondition(combat, condition)

arr = {
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0},
{0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0},
{0, 0, 0, 1, 1, 2, 1, 1, 0, 0, 0},
{0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0},
{0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
}

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

function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
 
If you search the web, there is a program that makes spells for you.
You basically choose what you want and then hit "create" and it's done.

I found one on OTFans.net once.
 

Similar threads

Back
Top