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

Lua Exp Stages

yoiker

Member
Joined
Jan 21, 2012
Messages
194
Solutions
1
Reaction score
9
Hello very good morning from Venezuela, thanks in advance to see the post... My question is this; it is possible to make the stages operating below 1? as they try to put 0.8, 0.6 and players gained experience not only with natural numbers.
I appreciate your time to respond and if you can make it work with 0.1+ also would appreciate that could help :D

Sorry for my bad English.
 
If you're asking for an older TFS (0.3.6/0.4) then yes, other than that I don't know, I've never used 1.2
 
If you're asking for an older TFS (0.3.6/0.4) then yes, other than that I don't know, I've never used 1.2
I think he is asking if it is possibly for example

My stages:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
    <config enabled="1"/>
        <stage minlevel="1" maxlevel="20" multiplier="8"/>
        <stage minlevel="21" maxlevel="40" multiplier="6"/>
        <stage minlevel="41" maxlevel="60" multiplier="4"/>
        <stage minlevel="61" maxlevel="90" multiplier="3"/>
        <stage minlevel="91" maxlevel="120" multiplier="2"/>
        <stage minlevel="121" multiplier="1"/>
</stages>

What he is asking for example:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
    <config enabled="1"/>
        <stage minlevel="1" maxlevel="20" multiplier="0.8"/>
        <stage minlevel="21" maxlevel="40" multiplier="0.6"/>
        <stage minlevel="41" maxlevel="60" multiplier="0.4"/>
        <stage minlevel="61" maxlevel="90" multiplier="0.3"/>
        <stage minlevel="91" maxlevel="120" multiplier="0.2"/>
        <stage minlevel="121" multiplier="0.1"/>
</stages>

I have tried this for tfs 1.2 and it doesnt work ;o
 
I think he is asking if it is possibly for example

My stages:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
    <config enabled="1"/>
        <stage minlevel="1" maxlevel="20" multiplier="8"/>
        <stage minlevel="21" maxlevel="40" multiplier="6"/>
        <stage minlevel="41" maxlevel="60" multiplier="4"/>
        <stage minlevel="61" maxlevel="90" multiplier="3"/>
        <stage minlevel="91" maxlevel="120" multiplier="2"/>
        <stage minlevel="121" multiplier="1"/>
</stages>

What he is asking for example:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
    <config enabled="1"/>
        <stage minlevel="1" maxlevel="20" multiplier="0.8"/>
        <stage minlevel="21" maxlevel="40" multiplier="0.6"/>
        <stage minlevel="41" maxlevel="60" multiplier="0.4"/>
        <stage minlevel="61" maxlevel="90" multiplier="0.3"/>
        <stage minlevel="91" maxlevel="120" multiplier="0.2"/>
        <stage minlevel="121" multiplier="0.1"/>
</stages>

I have tried this for tfs 1.2 and it doesnt work ;o
Ah, but you can also set rates with a function, and you can easily set your exp rate to 0.8 with something like:
doPlayerSetRate(cid, SKILL__LEVEL, 0.8)
 
Back
Top