XenoBot Forums - Powered by vBulletin

User Tag List

Page 2 of 2 FirstFirst 12
Results 11 to 19 of 19

Thread: Exura sio on friend?

  1. #11
    Moderator Nakuu's Avatar
    Join Date
    Feb 2013
    Location
    EU
    Posts
    5,194
    Mentioned
    642 Post(s)
    Tagged
    2 Thread(s)
    Quote Originally Posted by Floxy View Post
    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".

    lua code:
    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
    Last edited by Nakuu; 03-13-2016 at 12:29 PM.

  2. #12

    Join Date
    Aug 2015
    Posts
    3
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thx guys

  3. #13
    Lifetime Subscriber Sponx's Avatar
    Join Date
    Dec 2011
    Location
    United Kingdom
    Posts
    231
    Mentioned
    10 Post(s)
    Tagged
    0 Thread(s)
    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.

  4. #14

    Join Date
    Jun 2012
    Location
    Sweden
    Posts
    201
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    beautiful script mate <3

  5. #15

    Join Date
    Jul 2016
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

  6. #16

    Join Date
    Jul 2016
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Nakuu View Post
    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".

    lua code:
    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

  7. #17

    Join Date
    Jul 2016
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Rif View Post
    Works perfectly bro you just follow by this steps:

    Step.1
    lua code:
    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


    Step.3
    You can add more firends by writing Player_Name e.g ... Rif or Nakuu


    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

  8. #18

    Join Date
    Jul 2016
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Nakuu View Post
    lua code:
    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

  9. #19

    Join Date
    Jun 2016
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Nakuu View Post
    lua code:
    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 ?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •