2023-05-04 22:56
#0
Similar to the issue here:
The animal lore and animal taming skill don't trigger the hotbar cooldowm timers.
The animal lore and animal taming skill don't trigger the hotbar cooldowm timers.
In
textparsing.lua, add the below to TextParsing.TimersNbuff
Moderator, feel free to move to the bugs subforum -- BUT I've read the "General Discussions" may get more reading attention from the developer(s), however (reference: link)?
-- animal lore
if (SystemData.TextID == 500328 ) then -- What animal should I look at?
HotbarSystem.SkillDelayTimeMax = 1
HotbarSystem.SkillDelayTime = 1
return
end
-- animal taming
if (SystemData.TextID == 502789 ) then -- Tame which animal?
HotbarSystem.SkillDelayTimeMax = 12
HotbarSystem.SkillDelayTime = 12
return
end
Moderator, feel free to move to the bugs subforum -- BUT I've read the "General Discussions" may get more reading attention from the developer(s), however (reference: link)?
