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

Bless Bug

Liimpiish

New Member
Joined
Jul 6, 2016
Messages
12
Reaction score
1
Not enough details
Hello, folks!

I have currently faced some issues regarding my bless command, it isn't working properly as it should be doing.

---

[INFORMATION]

  • 0.4 TFS - Error: When using the bless-command "!bless", it works properly as it should do. However, we're facing an issue if you are killed you will be downgraded to level 1.
  • Script: I'm not sure, but I believe it's something in the talkactions/scripts/bless.lua and/or creaturescripts/scripts/death.lua

Signed, Limpish!
Staff member within the server.
 
Last edited:
Solution
In your config.lua try changing this
Lua:
    blessings = true
    blessingOnlyPremium = true
    blessingReductionBase = 30
    blessingReductionDecrement = 5
    eachBlessReduction = 8
to
Lua:
    blessings = true
    blessingOnlyPremium = true
    blessingReductionBase = 30
    blessingReductionDecrement = 5
    eachBlessReduction = 20
Please read Support board rules before posting a thread.

#5 Incomplete Problem Description:
- Post as much useful information as possible. If the problem is about something on your server, post the server version and client version. Also always post the errors you get and the scripts with the problems.
Give as much information as possible(TFS version, OS, errors, scripts)

Edit after your post edit :
Post your data\creaturescripts\scripts\login.lua
and post your config.lua
 
Last edited:
Execute this db query (shutdown the server before executing) and then retest.
If you still back to level 1 post your blessing script from data\talkactions\scripts
SQL:
UPDATE `players` SET `loss_experience` = 100;
UPDATE `players` SET `loss_mana` = 100;
UPDATE `players` SET `loss_skills` = 100;
UPDATE `players` SET `loss_containers` = 100;
UPDATE `players` SET `loss_items` = 100;
 
In your config.lua try changing this
Lua:
    blessings = true
    blessingOnlyPremium = true
    blessingReductionBase = 30
    blessingReductionDecrement = 5
    eachBlessReduction = 8
to
Lua:
    blessings = true
    blessingOnlyPremium = true
    blessingReductionBase = 30
    blessingReductionDecrement = 5
    eachBlessReduction = 20
 
Solution
Great, Feel free to post any other issues in the Support board, Also still you didn't read Support board rules properly.

#11. Marking "Best Answer"
- Once your problem is resolved, please MARK SOLUTION AS "BEST ANSWER".
Read more in the announcement.
 
Back
Top