• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Explain Formula

flaviiojr

Active Member
Joined
Jan 20, 2017
Messages
230
Solutions
13
Reaction score
39
LUA:
local condition = Condition(CONDITION_PARALYZE)
condition:setParameter(CONDITION_PARAM_TICKS, 20000)
condition:setFormula(-0.6, 0, -0.8, 0)

How does this paralyze formula work?
What is the final value of this formula?
TFS 1.3, thanks in advance!
 
Solution
I did some testing of my own and it seems to work like this.

(A, B, A, B)

A = increase/decrease % of base speed.
B = increase/decrease flat quantity of speed / 2.

base speed = 200
exemple A: (0.2, 0, 0.2, 0) = 240 speed. (20% of base speed)
exemple B: (0, 20, 0, 20) = 210 speed. (20/2)

Hope it helps.
I did some testing of my own and it seems to work like this.

(A, B, A, B)

A = increase/decrease % of base speed.
B = increase/decrease flat quantity of speed / 2.

base speed = 200
exemple A: (0.2, 0, 0.2, 0) = 240 speed. (20% of base speed)
exemple B: (0, 20, 0, 20) = 210 speed. (20/2)

Hope it helps.
 
Solution
I did some testing of my own and it seems to work like this.

(A, B, A, B)

A = increase/decrease % of base speed.
B = increase/decrease flat quantity of speed / 2.

base speed = 200
exemple A: (0.2, 0, 0.2, 0) = 240 speed. (20% of base speed)
exemple B: (0, 20, 0, 20) = 210 speed. (20/2)

Hope it helps.
I think it also randomises between the two values.
So if they are set to 0.6% and 0.8%..
You'd get 0.6-0.7-.0.8.
Not sure how many decimal places it randomises too though.
 
I did some testing of my own and it seems to work like this.

(A, B, A, B)

A = increase/decrease % of base speed.
B = increase/decrease flat quantity of speed / 2.

base speed = 200
exemple A: (0.2, 0, 0.2, 0) = 240 speed. (20% of base speed)
exemple B: (0, 20, 0, 20) = 210 speed. (20/2)

Hope it helps.

Thanks, it was very explanatory!
but is this something concrete or just a theory?

I think it also randomises between the two values.
So if they are set to 0.6% and 0.8%..
You'd get 0.6-0.7-.0.8.
Not sure how many decimal places it randomises too though.
So, would it be something random where the percentage of speed base would decrease?
How would it work?
 
Im certain, not a theory.

on your formula for example is:
(-0.6, 0, -0.8, 0) -0.6 -0.8 / 2 = -0.7 which will be 70% base speed reduction.
 
Back
Top