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

questions about reborn

Animera

* * * * *
Joined
Dec 9, 2008
Messages
2,449
Solutions
5
Reaction score
618
Location
ANIMERARPG.ONLINE
Leftwing closed my thread without having a clear anwer.. So i continue here again since i dont feel like pming to open up my topic again.

I dont wanna know what that system is in maple story but hows about it in the ot server, i see much time this feature but whats the goal of it? Instead of getting very high? Still wanna know about the formulas etc.
Like a tile where you nEd level 50 and you are level 43 with a reborn on level 100 that you can get past of it or not (like level 143) etc. And how about the erxperience each level

Thanksl
 
Well, there are 2 possible scenarios, if you store how many resets the player had or if you store how many levels the player has gained in the past

the first one is impossible to be 100% exact, but this is as close as you can get
LUA:
local storageID = 1111 --Change this to yours
local levelReborn = 100 --Insert here the level required for reborn

function getPlayerRealLevel(cid)
    return getPlayerLevel(cid) + getPlayerStorageValue(cid, storageID) * levelReborn
end

if you have saved how many levels a player has reseted, then it's this:
LUA:
local storageID = 1111 --Change this to yours

function getPlayerRealLevel(cid)
    return getPlayerLevel(cid) + getPlayerStorageValue(cid, storageID)
end
 
Im not using a translator -.-

But incase of script 1, you need still 4200 exp to go from level 1 to 8(101 to 108)?

I was thinking about using reborn system in my server since my exp rate is x65 and a level 600
Is looking kinda amateurish but if i make a reborn system at level 100 they will get very easy to level 1000 since the exp they need is a lot lesser and it brought me a lot of confusion so thats why im asking this
 
Leftwing closed my thread without having a clear anwer.. So i continue here again since i dont feel like pming to open up my topic again.

I dont wanna know what that system is in maple story but hows about it in the ot server, i see much time this feature but whats the goal of it? Instead of getting very high? Still wanna know about the formulas etc.
Like a tile where you nEd level 50 and you are level 43 with a reborn on level 100 that you can get past of it or not (like level 143) etc. And how about the erxperience each level

Thanksl

Apologies that I closed your thread without helping you understand, but like others have said the way you asked seemed like you only wanted to know about the system and not actually the system itself. Also to all those posting troll images I ask that you avoid posting such images as they will be regarded as offtopic and trolling.

Sincerely,
Leftwing
 
apology accepted, Well then its kinda my fault either.
So can someone answer my last questions @previous post?
 
Back
Top