XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 7 of 7

Thread: Ban E-Mail?

  1. #1
    Senior Member derkonsito's Avatar
    Join Date
    Jul 2013
    Location
    Costa Rica
    Posts
    452
    Mentioned
    37 Post(s)
    Tagged
    0 Thread(s)

    Ban E-Mail?

    Hey guys I just got deleted and wanted to know if someone can tell me were is that i can send the e-mail for MAYBE getting undeleted... I didn´t bot that acc so i think its possible i can get undelete Thank you
    “When you want to succeed as bad as you want to breathe, then you'll be successful.”


    ― Eric Thomas, The Secret To Success

  2. #2
    Lifetime Subscriber ewulmofo's Avatar
    Join Date
    Jun 2013
    Posts
    51
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    [email protected]

    Let us know how it went out for you

  3. #3
    Senior Member derkonsito's Avatar
    Join Date
    Jul 2013
    Location
    Costa Rica
    Posts
    452
    Mentioned
    37 Post(s)
    Tagged
    0 Thread(s)
    @ewulmofo We have reviewed the deletion carefully, but I am sorry to say we have found it was justified. I am afraid we are not prepared to revoke it.
    “When you want to succeed as bad as you want to breathe, then you'll be successful.”


    ― Eric Thomas, The Secret To Success

  4. #4
    Lifetime Subscriber Stusse's Avatar
    Join Date
    Dec 2011
    Location
    solid-scripts.com
    Posts
    3,523
    Mentioned
    346 Post(s)
    Tagged
    1 Thread(s)
    What did you write?

    /Stusse

  5. #5
    Lifetime Subscriber ewulmofo's Avatar
    Join Date
    Jun 2013
    Posts
    51
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    guys btw can you just get me a exura sio script? couldnt fint it at the search section.. ty ^^ (didnt work)

  6. #6
    Senior Member derkonsito's Avatar
    Join Date
    Jul 2013
    Location
    Costa Rica
    Posts
    452
    Mentioned
    37 Post(s)
    Tagged
    0 Thread(s)
    @ewulmofo
    PHP Code:
    --[[
        
    Auto Healer
        Version 1.02
        Created by Syntax
    ]]
    local config = {                                                --This Controls healing friendly playersit you want to add a friend just add in
        WhiteList 
    = {"Mountie""Lalo Kita"},
        
    healWhiteList true, -- heal players specified in the whitelist
        healParty 
    true, -- heal party members
        healAlly 
    true, -- heal war allies
         
        range 
    4, -- max distance to heal players
        mana 
    140, -- minimum mana needed to cast
        health 
    60, -- % of friend's health to heal at
         
        method = "exura sio" -- this is the only method currently, rune healing will be added later
    }
     
     
    local function sio(name)
        if(Self.Mana() >= config.mana)then
            Self.Say("exura sio \""..name)
            sleep(math.random(200,600))
        end
    end
     
    Module.New('
    CheckFriend', function(Mod)                 --This function checks your teammates health, if your friends health is below
            for i = CREATURES_LOW, CREATURES_HIGH do        --60% and your health is above 80% you will heal them.
            local creature = Creature.GetFromIndex(i)
                if (creature:isValid()) then
                    if (creature:isOnScreen() and creature:isVisible() and creature:isAlive()) then
                        local name = creature:Name()
                        if(creature:isWarAlly() and config.healAlly) or (creature:isPartyMember() and config.healParty) or (table.find(config.WhiteList, name, false) and config.healWhiteList)then
                            if(creature:DistanceFromSelf() <= config.range) and (creature:HealthPercent() <= config.health)then
                                if(config.method == "exura sio") then
                                    sio(name)
                                end
                            end
                        end
                    end
                end
            end
            sleep(math.random(100,300))
    end) 
    “When you want to succeed as bad as you want to breathe, then you'll be successful.”


    ― Eric Thomas, The Secret To Success

  7. #7
    Lifetime Subscriber ewulmofo's Avatar
    Join Date
    Jun 2013
    Posts
    51
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    ty :d

Posting Permissions

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