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

Crooked Animation!!

Fairoh

New Member
Joined
Sep 8, 2008
Messages
34
Reaction score
0
Well first of all, thank you very much for the help of neomaximus13, the guide
Delirium (For writing the tutorial, and the main core images)
Talaturen (Old Linux part of this tutorial & The Forgotten old Dev-C + +)
Elf (First Linux compiling tutorial)
Jonern (Mentioned Some errors in the tutorial)
Stian (Second compiling Linux tutorial and current Dev-C + +),
and of course also to "Red"
, thanks to them I could put my animations on my server Indeed, I admire them!,

Now if my problem is this; p:

When I do the spell out to perfection the animation with the attack but goes crooked, someone could help me fit it in the middle?


Example:

kaiten.png

By fairoox at 2010-08-03

Help!!! plz

I want to make something like this, and that hit in a circle, as if "exori"
centro.png

By fairoox at 2010-08-07

tnx.
 
Last edited:
I guess if this is a spell then you have to make the animation to appear diagonaly right-beneath you like this:
Code:
{
	{0, 0, 0},
	{0, 3, 0},
	{0, 0, 1}
}
You have to make it to 2 combats. one that affects only you and one that is like the one i sent and ONLY amkes tha animtaion appear.
LIKE THIS
Lua:
local combat = createCombatObject()
////something that was already there. except the part with/////////////////////
////setCombatParam(combat1, COMBAT_PARAM_EFFECT, A N I M A T I O N)//////////


local combat1 = createCombatObject()
setCombatParam(combat1, COMBAT_PARAM_EFFECT, A N I M A T I O N)
local area = createCombatArea({
	{0, 0, 0},
	{0, 3, 0},
	{0, 0, 1}
})
setCombatArea(combat1, area)

function onCastSpell(cid, var)
	return doCombat(cid, combat, var)
	return doCombat(cid, combat1, var)
end
REP++ if you understood xD I'm tired...
 
Last edited:
Nope. The animation is too big, and can ONLY appear on the squares north, west or north-west of the animation it self. NEVER on the squares south, southeast or east of the targeted square.
The thingy i made will work perfectly.
 
Back
Top