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

TFS 1.2 Kill monster, remove stone

henkas

Well-Known Member
Joined
Jul 8, 2015
Messages
1,051
Solutions
5
Reaction score
62
Hello,
so i found only one thread about this question and there is no answer for it. So basically when you kill monster it removes stone which should be based on stone actionid or uniqueid, because if you want to remove same id stones with order. So for example this is how i imagine local
LUA:
local config = {
    {monsters = {"Rat Boss"}, stoneRestIn = 2(hours), StoneUniqueID = 1111},
    {monsters = {"Rat Boss Second"}, stoneRestIn = 2(hours), StoneUniqueID = 1112},
}
But i dont know if its even possible to use actionid uniqueid outside "action", basically i have no idea :D
 
Solution
Hello,
so i found only one thread about this question and there is no answer for it. So basically when you kill monster it removes stone which should be based on stone actionid or uniqueid, because if you want to remove same id stones with order. So for example this is how i imagine local
LUA:
local config = {
    {monsters = {"Rat Boss"}, stoneRestIn = 2(hours), StoneUniqueID = 1111},
    {monsters = {"Rat Boss Second"}, stoneRestIn = 2(hours), StoneUniqueID = 1112},
}
But i dont know if its even possible to use actionid uniqueid outside "action", basically i have no idea :D
You can try this, hope i understand what you are requesting. Untested so let me know.
LUA:
local config = { -- reset is per hour
    {name = {"Rat Boss"}...

Similar threads

Back
Top