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

Mathematics

whitevo

Feeling good, thats what I do.
Joined
Jan 2, 2015
Messages
3,452
Solutions
1
Reaction score
626
Location
Estonia
I am so tired >.>
Anyone figures out the formula? xD

targetSpeed = target:getSpeed()

if targetSpeed - slow < 50 then slow = ??? end

speedCondition:setParameter(CONDITION_PARAM_SPEED, slow)

after the slow effect, target:getSpeed() should be 50
 
local slow = player:getSpeed() - 50
speed will always be 50.
facepalm.jpg

^
me
 
yeah, just throw slow into the condition (negative of course) and you'll get 50 every time. the joys of math
 
Back
Top