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

Solved A question about spells

3oom

Infected
Joined
Aug 4, 2012
Messages
60
Reaction score
4
Ok, I've faced the problem when I create spells that they dont damage as they should
example this
Lua:
function getDmg_Dora_Flam(cid, level, maglevel)
	return (100)*-1,(200)*-1
Doesn't make the player attack @100-200 when using the spell,
I later on tried this
Lua:
function getDmg_Dora_Flam(cid, level, maglevel)
	return (900000)*-1,(1100000)*-1
And it was from x-100.000 in damage,

Now my question is, if it stands 1,(1100000) does this means that the maximum damage is 100.000?
And if so, why?
I need an answer on this as quick as possible.
 
Last edited:
Back
Top