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

Config.lua skill multipliers

eric92

New Member
Joined
Jul 17, 2009
Messages
8
Reaction score
0
Hello, I was wondering if anyone could help me get my skill multiplyers to be as close to real tibia as possible. Right now my skills seem to go up a bit to fast. I am using Tibia 7.8 here is what my code looks like right now. For some reason when I put in 0.5 or .5 they wont work.


-- skill multipliers: 1 - rl tibia, 10 - ten times faster etc. {no-voc, sorcerer, druid, paladin, knight}
weaponmul = {"0", "0", "0", "1", "1.5"}
distmul = {"0", "0", "0", "1", "0"}
shieldmul = {"0", "1", "1", "1", "1.5"}
manamul = {"0", "1.5", "1.5", "1", "1"}


Could someone please give me a code of the skillmultipliers that is as close to real tibia as possible? please.
 
Hello, I was wondering if anyone could help me get my skill multiplyers to be as close to real tibia as possible. Right now my skills seem to go up a bit to fast. I am using Tibia 7.8 here is what my code looks like right now. For some reason when I put in 0.5 or .5 they wont work.


-- skill multipliers: 1 - rl tibia, 10 - ten times faster etc. {no-voc, sorcerer, druid, paladin, knight}
weaponmul = {"0", "0", "0", "1", "1.5"}
distmul = {"0", "0", "0", "1", "0"}
shieldmul = {"0", "1", "1", "1", "1.5"}
manamul = {"0", "1.5", "1.5", "1", "1"}


Could someone please give me a code of the skillmultipliers that is as close to real tibia as possible? please.

Answer in your post (lol).
-- skill multipliers: 1 - rl tibia, 10 - ten times faster etc.
Code:
-- skill multipliers: 1 - rl tibia, 10 - ten times faster etc. {no-voc, sorcerer, druid, paladin, knight}
weaponmul = {"0", "0", "0", "1", "1"}
distmul = {"0", "0", "0", "1", "0"}
shieldmul = {"0", "1", "1", "1", "1"}
manamul = {"0", "1", "1", "1", "1"}

Regards,
Shawak
 
Back
Top