• 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 Decimal to integer?

Lua:
function math.Round(number) 
if number >= 0 then
	return math.floor(number+.5) 
else 
	return math.ceil(number-.5) 
	end
end
 if (combat == STATSCHANGE_HEALTHLOSS) then
		local damage = ((value/100)*50)
		doSendAnimatedText(getThingPos(attacker),math.Round(damage),143)
		doCreatureAddHealth(attacker,-math.Round(damage))
	end

or:

Lua:
 if (combat == STATSCHANGE_HEALTHLOSS) then
		local damage = ((value/100)*50)
		doSendAnimatedText(getThingPos(attacker),math.ceil(damage),143)
		doCreatureAddHealth(attacker,-math.ceil(damage))
	end
 
Back
Top