Fala Galera, eu fiz um Auto Utamo Vita pro bot do Ot client (Tópico desse client http://www.xtibia.com/forum/topic/191755-otclient-novo-e-revolucionario-client-de-tibia/#entry1314228 )
é simples basta ir em
Addons/addon_bot/Bot.otui
Procure por :
BotOptionCheckBox id: AntiIdle text: Anti Idle tooltip: Prevent player to be kicked due to being idle
e encima adicione:
BotOptionCheckBox id: ManaShield text: Mana Shield tooltip: Auto Mana Shield
Agora vá em Addons/addon_bot/Bot.lua
Procure por :
['DashSelect'] = 'Normal',
e embaixo adicione
['ManaShield'] = false,
Agora procure por
elseif key == 'DashSelect' then
if optionsWindow then
Bot.dash(optionsWindow:getChildById('Dash'):isChecked())
end
e embaixo disso adicione
elseif key == 'ManaShield' then
removeEvent(ManaShieldEvent)
if status then
ManaShieldlEvent = addEvent(Bot.ManaShield)
end
Agora procure por
function Bot.dash(status)
local delay = dashDelays[optionsWindow:getChildById('DashSelect'):getText()]
local hotkeyFunction = Bot.onDash
if not status then
delay = WALK_AUTO_REPEAT_DELAY
hotkeyFunction = g_game.walk
end
e embaixo adicione
function Bot.ManaShield()
if g_game.isOnline() then
if optionsWindow:getChildById('ManaShield'):isChecked() then
g_game.talk("Utamo Vita")
end
end
ManaShield = scheduleEvent(Bot.ManaShield, 300000)
end
Pronto só re-abrir seu client e ja esta com o Auto Utamo Vita





