View Full Version : Exura sio on friend?
duducloneuk
04-05-2015, 11:59 PM
Guys do u know any way to put exura sio to heal friend at any life%?
thank you
Nakuu
04-06-2015, 11:24 AM
local targets = {}
targets[#targets + 1] = { name = "Nakux", hp = 80 }
Module("ssSio", function(module)
for k,v in ipairs(targets) do
local player = Creature(v.name)
if player:isOnScreen(false) and (player:HealthPercent() <= v.hp) then
if Self.CanCastSpell("exura") and (Self.Mana() > 100) then
Self.Cast("exura sio \"" .. v.name)
end
end
end
end, false)
function onSpeak(chat, msg)
chat:SendYellowMessage(Self.Name(), msg)
if (msg == "start") then
Module("ssSio"):Start()
chat:SendOrangeMessage("ssSio", "ssSio has started.")
elseif (msg == "stop") then
Module("ssSio"):Stop()
chat:SendOrangeMessage("ssSio", "ssSio has stopped.")
else
targets[#targets + 1] = { name = msg, hp = 80 }
chat:SendOrangeMessage("ssSio", "Added " .. msg .. " to the healing list.")
end
end
function onClose() end
local chat = Channel("ssSio", onSpeak, onClose)
duducloneuk
04-07-2015, 11:11 AM
Thank you Naku for the reply... but i am having problem to put to work, is not working so far any idead?
jnissen
04-07-2015, 11:41 AM
heard this easily gets you delited, just my two cents... No clue if its true as I have no experience with this.
Thank you Naku for the reply... but i am having problem to put to work, is not working so far any idead?
Works perfectly bro you just follow by this steps:
Step.1
targets[#targets + 1] = { name = "Nakux", hp = 80 }, { name = "duducloneuk", hp = 90} -- u can add more before run script.
Step.2
Say 'start' on ssSio chat
http://images66.fotosik.pl/775/a61ce7d8a4762b92med.png
Step.3
You can add more firends by writing Player_Name e.g ... Rif or Nakuu
http://images67.fotosik.pl/777/914b69ee549814abmed.png
Also u can say 'stop' to paused sio-script
duducloneuk
04-07-2015, 09:33 PM
thank you, for the support, all good now...
sholh
12-19-2015, 03:07 AM
how to heal friend by potion?
Floxy
03-13-2016, 11:36 AM
is it also possible to put something like this:
when my hp is below X % heal myself before the sio on my friend, even when he is below the % that i put on the script
if there is something like this ^ i am gonna buy xenobot again instead of windbot
Nakuu
Nakuu
03-13-2016, 12:12 PM
is it also possible to put something like this:
when my hp is below X % heal myself before the sio on my friend, even when he is below the % that i put on the script
if there is something like this ^ i am gonna buy xenobot again instead of windbot
Nakuu
If you add yourself to the list at the very top it'll always heal you first :) Unless you want to use different spell?
Floxy
03-13-2016, 12:14 PM
If you add yourself to the list at the very top it'll always heal you first :) Unless you want to use different spell?
hi, yea i would like to heal myself with exura, exura gran and exura vita.
is there some line to put my own healing before this script? or is it possible to put my own healing above the script?
Nakuu
03-13-2016, 12:23 PM
hi, yea i would like to heal myself with exura, exura gran and exura vita.
is there some line to put my own healing before this script? or is it possible to put my own healing above the script?
Done. It's possible now to heal yourself with different spell (which you can set using 'spell' variable as in an example). If no 'spell' is defined it'll use "Exura Sio".
local targets = {}
targets[#targets + 1] = { name = "Nakuu", hp = 80, spell = "exura gran" }
targets[#targets + 1] = { name = "Nakux", hp = 80 }
Module("ssSio", function(module)
for k,v in ipairs(targets) do
local player = Creature(v.name)
if player:isOnScreen(false) and (player:HealthPercent() <= v.hp) then
if Self.CanCastSpell("exura") and (Self.Mana() > 100) then
if (v.spell) and (v.name == Self.Name()) then
Self.Cast(v.spell)
else
Self.Cast("exura sio \"" .. v.name)
end
end
end
end
end, false)
function onSpeak(chat, msg)
chat:SendYellowMessage(Self.Name(), msg)
if (msg == "start") then
Module("ssSio"):Start()
chat:SendOrangeMessage("ssSio", "ssSio has started.")
elseif (msg == "stop") then
Module("ssSio"):Stop()
chat:SendOrangeMessage("ssSio", "ssSio has stopped.")
else
targets[#targets + 1] = { name = msg, hp = 80 }
chat:SendOrangeMessage("ssSio", "Added " .. msg .. " to the healing list.")
end
end
function onClose() end
local chat = Channel("ssSio", onSpeak, onClose)
Not 100% tested but it should work ;)
Xanzeloo
03-19-2016, 02:37 PM
thx guys
Sponx
03-19-2016, 06:18 PM
Would you suggest this script as being safe, or will it be easily detectable? I've heard a lot about sio scripts getting people deleted.
andrea2429
07-21-2016, 09:05 PM
PLEASE you can teach me how does this work?
i try with this script but my character does not stop the "SIO" to the name of the character that I type in scrip
HELP ME PLEASE I'd be really grateful
andrea2429
07-21-2016, 09:05 PM
Done. It's possible now to heal yourself with different spell (which you can set using 'spell' variable as in an example). If no 'spell' is defined it'll use "Exura Sio".
local targets = {}
targets[#targets + 1] = { name = "Nakuu", hp = 80, spell = "exura gran" }
targets[#targets + 1] = { name = "Nakux", hp = 80 }
Module("ssSio", function(module)
for k,v in ipairs(targets) do
local player = Creature(v.name)
if player:isOnScreen(false) and (player:HealthPercent() <= v.hp) then
if Self.CanCastSpell("exura") and (Self.Mana() > 100) then
if (v.spell) and (v.name == Self.Name()) then
Self.Cast(v.spell)
else
Self.Cast("exura sio "" .. v.name)
end
end
end
end
end, false)
function onSpeak(chat, msg)
chat:SendYellowMessage(Self.Name(), msg)
if (msg == "start") then
Module("ssSio"):Start()
chat:SendOrangeMessage("ssSio", "ssSio has started.")
elseif (msg == "stop") then
Module("ssSio"):Stop()
chat:SendOrangeMessage("ssSio", "ssSio has stopped.")
else
targets[#targets + 1] = { name = msg, hp = 80 }
chat:SendOrangeMessage("ssSio", "Added " .. msg .. " to the healing list.")
end
end
function onClose() end
local chat = Channel("ssSio", onSpeak, onClose)
Not 100% tested but it should work ;)
PLEASE you can teach me how does this work?
i try with this script but my character does not stop the "SIO" to the name of the character that I type in scrip
HELP ME PLEASE I'd be really grateful
andrea2429
07-21-2016, 09:06 PM
Works perfectly bro you just follow by this steps:
Step.1
targets[#targets + 1] = { name = "Nakux", hp = 80 }, { name = "duducloneuk", hp = 90} -- u can add more before run script.
Step.2
Say 'start' on ssSio chat
http://images66.fotosik.pl/775/a61ce7d8a4762b92med.png
Step.3
You can add more firends by writing Player_Name e.g ... Rif or Nakuu
http://images67.fotosik.pl/777/914b69ee549814abmed.png
Also u can say 'stop' to paused sio-script
PLEASE you can teach me how does this work?
i try with this script but my character does not stop the "SIO" to the name of the character that I type in scrip
HELP ME PLEASE I'd be really grateful
andrea2429
07-21-2016, 09:07 PM
local targets = {}
targets[#targets + 1] = { name = "Nakux", hp = 80 }
Module("ssSio", function(module)
for k,v in ipairs(targets) do
local player = Creature(v.name)
if player:isOnScreen(false) and (player:HealthPercent() <= v.hp) then
if Self.CanCastSpell("exura") and (Self.Mana() > 100) then
Self.Cast("exura sio "" .. v.name)
end
end
end
end, false)
function onSpeak(chat, msg)
chat:SendYellowMessage(Self.Name(), msg)
if (msg == "start") then
Module("ssSio"):Start()
chat:SendOrangeMessage("ssSio", "ssSio has started.")
elseif (msg == "stop") then
Module("ssSio"):Stop()
chat:SendOrangeMessage("ssSio", "ssSio has stopped.")
else
targets[#targets + 1] = { name = msg, hp = 80 }
chat:SendOrangeMessage("ssSio", "Added " .. msg .. " to the healing list.")
end
end
function onClose() end
local chat = Channel("ssSio", onSpeak, onClose)
PLEASE you can teach me how does this work?
i try with this script but my character does not stop the "SIO" to the name of the character that I type in scrip
HELP ME PLEASE I'd be really grateful
Spriel
09-07-2016, 01:33 PM
local targets = {}
targets[#targets + 1] = { name = "Nakux", hp = 80 }
Module("ssSio", function(module)
for k,v in ipairs(targets) do
local player = Creature(v.name)
if player:isOnScreen(false) and (player:HealthPercent() <= v.hp) then
if Self.CanCastSpell("exura") and (Self.Mana() > 100) then
Self.Cast("exura sio "" .. v.name)
end
end
end
end, false)
function onSpeak(chat, msg)
chat:SendYellowMessage(Self.Name(), msg)
if (msg == "start") then
Module("ssSio"):Start()
chat:SendOrangeMessage("ssSio", "ssSio has started.")
elseif (msg == "stop") then
Module("ssSio"):Stop()
chat:SendOrangeMessage("ssSio", "ssSio has stopped.")
else
targets[#targets + 1] = { name = msg, hp = 80 }
chat:SendOrangeMessage("ssSio", "Added " .. msg .. " to the healing list.")
end
end
function onClose() end
local chat = Channel("ssSio", onSpeak, onClose)
can you help my to fix it i dont now what i need to do i want sio my friend it a ek you have a scrips for my ?
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.