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

How to make an item that gives you speed?

well looking at the sources there is something called speedDelta and thats related to the speedcondition, u can also do a script with something like this
Code:
local speed = Condition(CONDITION_HASTE)
speed:setParameter(CONDITION_PARAM_TICKS, 10000)
speed:setFormula(-0.7, 56, -0.7, 56)
combat:setCondition(speed)
 
Look at for example boots of haste, take the speed variable to your new item, then take a look at example soft boots anf take the duration from those and then just change both to your needs.
 
Back
Top