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

Search results

  1. xiduzo

    [LUA] Automatic generating exp stages

    can't seem to find the edit buttons anywhere so... EDIT: You'll need to have a max level at any stage, use this code below to get working stages local MAX_LEVEL = 350 local MAX_EXP_RATE = 125 local LEVEL_STEPS = 10 local LEVEL_STAGES_SIZE = math.floor(MAX_LEVEL / LEVEL_STEPS) stages = {}...
  2. xiduzo

    [LUA] Automatic generating exp stages

    Looking for a way to have balanced experience stages and can't find an easy way to do so? Try out this little piece of code I made: -- MADE BY: Xiduzo -- If you want to enable exp_stages, make sure that you have experience_stages = true at your config.lua local MAX_LEVEL = 350 local...
Back
Top