Can someone send me an exura sio script? to download, im not the smartest person at this bot.
Printable View
Can someone send me an exura sio script? to download, im not the smartest person at this bot.
lua code:
local friends = { -- add targets u want to heal and at what percent
['FRIEND'] = percent,
['Sheradial'] = 70
}
Module.New('HEAL', function(mod)
for name, percent in pairs(friends) do
local c = Creature.New(name)
if c:isOnScreen() then
if c:HealthPercent() <= percent then
Self.Say('exura sio "' .. name)
break
end
end
end
mod:Delay(500)
end)
Thanks for sharing @Sheradial
This is where im dumb, what do i do with that? and where do i put it, ive tried making new notepad and bot can't find it. and i tried breaking a cfla.lia notepad that it did read and nothing happends. :(
Documents/XenoBot/Scripts
name it to "whatever.lua"
important to add .lua in the end
Download notepad ++ if your having problems...