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

Solved showing 0 rune in hotkey

tibera

Active Member
Joined
Nov 9, 2014
Messages
105
Reaction score
33
Location
Governador Valadares - MG
im using sabrehaven tfs 1.2

i changed in spells.cpp for use stackble runes.

before:
Code:
        int32_t newCount = std::max<int32_t>(0, item->getCharges() - 1);
        g_game.transformItem(item, item->getID(), newCount);

after:
Lua:
       int32_t newCount = std::max<int32_t>(0, item->getItemCount() - 1);

        g_game.transformItem(item, item->getID(), newCount);

1711117011986.png
1711117045704.gif

using hotkey show 0 runes.

any can help me to fix this bug?? call me in Discord id: 275658220649971714 - magnunrocha
I can give you a reward for your help!!
 
Back
Top