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

Reborn exp stages

kozoso

New Member
Joined
Mar 9, 2013
Messages
2
Reaction score
0
Hi ;)
Could you help me with exp reduce per rebirth?

local rates = {
[0] = {rate = 1.0},
[1] = {rate = 0.8},

local v = rates[getPlayerStorageValue(cid,85987)]
if v then
doPlayerSetRate(cid, SKILL__LEVEL, v.rate)
end

I've found this one, but i need it to be exp-x%exp

tfs 0.3.6
 
I resigned doing this. For me it is better to make each 10 reborns new vocation.

Could you help me with new vocation with reborn.
I have sth like that

function onLogin(cid)
if getPlayerVocation(cid) <= 6 and getCreatureStorage(cid, 85987) >= 10 then
doPlayerSetVocation(cid, 15)
doPlayerSendTextMessage(cid, 22, "You are now "..getPlayerVocationName(cid)..".")
end
return true
end

But this one keeps changing my vocation with every login. On every login it shows me "you are now ...." .
Maybe it should be function advance but i have now idea how to make it.
Please help :D
 
Last edited by a moderator:
Back
Top