Signup Now
Page 14 of 38 FirstFirst ... 4121314151624 ... LastLast
Results 131 to 140 of 378
  1. #131
    Free User
    Join Date
    Feb 2014
    Posts
    8
    Reputation
    10
    Rep Power
    0
    -- // Do not edith anything below:

    reachcreature("Sigurd")
    wait(2000)
    if (getcreature("Sigurd").dist <= 3) and (maround(7, "Sigurd") >= 1)
    then
    gotolabel("buySup")
    else
    gotolabel("find_sigurd4")
    end


    Hello The action/script doesnt find the NPC sigurd after converting. hope you find my bugreport constructive ;D

  2. #132
    Banned
    Join Date
    Dec 2013
    Posts
    44
    Reputation
    11
    Rep Power
    0
    When i convert i get this message
    Warning:
    Access to unknown global variable: TargetAll

    In setup i have

    Code:
    function targetAll()
    setsetting("Targeting/Creatures/Spidris/Setting1/Health", "0 to 100 %")
    setsetting("Targeting/Creatures/Kollos/Setting1/Health", "0 to 100 %")
    setsetting("Targeting/Creatures/Spitter/Setting1/Health", "0 to 100 %")
    setsetting("Targeting/Creatures/Crawler/Setting1/Health", "0 to 100 %")
    setsetting("Targeting/Creatures/Insectoid Worker/Setting1/Health", "0 to 100 %")
    setsetting("Targeting/Creatures/Swarmer/Setting1/Health", "0 to 50 %")
    setsetting("Targeting/Creatures/Waspoid/Setting1/Health", "0 to 100 %")
    wait(1000, 1200)
    end
    
    
    function targetNone()
    setsetting("Targeting/Creatures/Spidris/Setting1/Health", "0 to 65 %")
    setsetting("Targeting/Creatures/Kollos/Setting1/Health", "0 to 65 %")
    setsetting("Targeting/Creatures/Spitter/Setting1/Health", "0 to 65 %")
    setsetting("Targeting/Creatures/Crawler/Setting1/Health", "0 to 65 %")
    setsetting("Targeting/Creatures/Insectoid Worker/Setting1/Health", "0 to 65 %")
    setsetting("Targeting/Creatures/Swarmer/Setting1/Health", "0 to 45 %")
    setsetting("Targeting/Creatures/Waspoid/Setting1/Health", "0 to 65 %")
    end
    
    
    function targetNothing()
    setsetting("Targeting/Creatures/Spidris/Setting1/Health", "0 to 0 %")
    setsetting("Targeting/Creatures/Kollos/Setting1/Health", "0 to 0 %")
    setsetting("Targeting/Creatures/Spitter/Setting1/Health", "0 to 0 %")
    setsetting("Targeting/Creatures/Crawler/Setting1/Health", "0 to 0 %")
    setsetting("Targeting/Creatures/Insectoid Worker/Setting1/Health", "0 to 0 %")
    setsetting("Targeting/Creatures/Swarmer/Setting1/Health", "0 to 0 %")
    setsetting("Targeting/Creatures/Waspoid/Setting1/Health", "0 to 0 %")
    end

    in cavebot (action)
    Code:
    targetAll()
    wait(1000)
    when cavebot execute targetAll() i get some problems

  3. #133
    Administrator Lucas Terra's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    2,200
    Reputation
    180
    Rep Power
    10
    Quote Originally Posted by Geex View Post
    When i convert i get this message
    Warning:
    Access to unknown global variable: TargetAll

    In setup i have

    Code:
    function targetAll()
    setsetting("Targeting/Creatures/Spidris/Setting1/Health", "0 to 100 %")
    setsetting("Targeting/Creatures/Kollos/Setting1/Health", "0 to 100 %")
    setsetting("Targeting/Creatures/Spitter/Setting1/Health", "0 to 100 %")
    setsetting("Targeting/Creatures/Crawler/Setting1/Health", "0 to 100 %")
    setsetting("Targeting/Creatures/Insectoid Worker/Setting1/Health", "0 to 100 %")
    setsetting("Targeting/Creatures/Swarmer/Setting1/Health", "0 to 50 %")
    setsetting("Targeting/Creatures/Waspoid/Setting1/Health", "0 to 100 %")
    wait(1000, 1200)
    end
    
    
    function targetNone()
    setsetting("Targeting/Creatures/Spidris/Setting1/Health", "0 to 65 %")
    setsetting("Targeting/Creatures/Kollos/Setting1/Health", "0 to 65 %")
    setsetting("Targeting/Creatures/Spitter/Setting1/Health", "0 to 65 %")
    setsetting("Targeting/Creatures/Crawler/Setting1/Health", "0 to 65 %")
    setsetting("Targeting/Creatures/Insectoid Worker/Setting1/Health", "0 to 65 %")
    setsetting("Targeting/Creatures/Swarmer/Setting1/Health", "0 to 45 %")
    setsetting("Targeting/Creatures/Waspoid/Setting1/Health", "0 to 65 %")
    end
    
    
    function targetNothing()
    setsetting("Targeting/Creatures/Spidris/Setting1/Health", "0 to 0 %")
    setsetting("Targeting/Creatures/Kollos/Setting1/Health", "0 to 0 %")
    setsetting("Targeting/Creatures/Spitter/Setting1/Health", "0 to 0 %")
    setsetting("Targeting/Creatures/Crawler/Setting1/Health", "0 to 0 %")
    setsetting("Targeting/Creatures/Insectoid Worker/Setting1/Health", "0 to 0 %")
    setsetting("Targeting/Creatures/Swarmer/Setting1/Health", "0 to 0 %")
    setsetting("Targeting/Creatures/Waspoid/Setting1/Health", "0 to 0 %")
    end

    in cavebot (action)
    Code:
    targetAll()
    wait(1000)
    when cavebot execute targetAll() i get some problems

    What problems do you get? It should be working just fine.

  4. #134
    Administrator Lucas Terra's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    2,200
    Reputation
    180
    Rep Power
    10
    Quote Originally Posted by senseiblaze View Post
    -- // Do not edith anything below:

    reachcreature("Sigurd")
    wait(2000)
    if (getcreature("Sigurd").dist <= 3) and (maround(7, "Sigurd") >= 1)
    then
    gotolabel("buySup")
    else
    gotolabel("find_sigurd4")
    end


    Hello The action/script doesnt find the NPC sigurd after converting. hope you find my bugreport constructive ;D
    Thank you. I'm adding 3 days to your WindBot account.

  5. #135
    Banned
    Join Date
    Dec 2013
    Posts
    44
    Reputation
    11
    Rep Power
    0
    Quote Originally Posted by Lucas Terra View Post
    What problems do you get? It should be working just fine.
    well, windbot is trying to kill HIVE PORES sometimes, in ibot i no have this problem using this script, i can send my script for you check

  6. #136
    Administrator Lucas Terra's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    2,200
    Reputation
    180
    Rep Power
    10
    Quote Originally Posted by Geex View Post
    well, windbot is trying to kill HIVE PORES sometimes, in ibot i no have this problem using this script, i can send my script for you check
    Hive Pores doesn't even appear on this script you sent me. :O

  7. #137
    Administrator Lucas Terra's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    2,200
    Reputation
    180
    Rep Power
    10
    @Adrimeister, I figured out the depositer problem. Thanks for reporting. I'm adding 5 days to your WindBot account.

  8. #138
    Free User grafix's Avatar
    Join Date
    Jan 2014
    Posts
    535
    Reputation
    20
    Rep Power
    25
    on ibot this action worked and cast UE. while converting it wont cast any UE..


    Code:
    auto(100, 150)
    local MonsterToUe = {"Souleater", "Killer Caiman", "Mutated Bat", "Mutated Tiger"}
    local MonsterToGfb = {"Mutated Rat", "Souleater", "Mutated Bat", "Mutated Tiger", "Killer Caiman"}
    local MonsterToMStrike = {"Souleater", "Killer Caiman", "Mutated Bat", "Mutated Tiger"}
    local MonsterToSStrike = {"Souleater", "Killer Caiman", "Mutated Bat", "Mutated Tiger", "Mutated Rat"}
    local MonsterToStrike = {"Souleater", "Mutated Bat", "Death Blob", "Mutated Rat", "Killer Caiman"}
    local MonsterToMortStrike = {"Mutated Tiger"}
    local ue = UeSpellName
    local MStrike = "exori max tera"
    local SStrike = "exori gran tera"
    local STRIKE = "exori flam"
    
    function ISSHOOTABLE()
        for POSX, POSY, POSZ in Tile.ScreenArea() do
            if Tile.GetByPosition($attacked.POSX, $attacked.POSY, $attacked.POSZ):isShootable() then
                return true
            end
        end
        return false
    end
    
    local HppcToUe = 93
    
    local Amount = 0
    local HPPC_Amount = 0
    local SouleatersCount = 0
    local SouleatersHp = 0
    for CREATURE in Creature.GetAll("ms") do
        if (table.find(MonsterToUe, CREATURE:Name()) and Spell.isOnSpellArea(CREATURE, "5x5", false)) then
            if CREATURE:Name() == "Souleater" then
                SouleatersCount = SouleatersCount + 1
                SouleatersHp = SouleatersHp + CREATURE:HealthPercent()
            end
            Amount = Amount + 1
            HPPC_Amount = HPPC_Amount + CREATURE:HealthPercent()
        end
    end
    
    local AvgHp = HPPC_Amount/Amount
    local AvgHp2 = SouleatersHp/SouleatersCount
    
    if Self.CoolDown(SPELL_GROUP_ATTACK) == 0 and ((($targeting and LureMode) or not LureMode) or $standtime > 10000)  and ($posz < 7 or $standtime > 10000)then
        if CastUE and ((Amount >= CreatureToUe and AvgHp <= HppcToUe) or (SouleatersCount >= 4 and AvgHp2 <= 90)) and cancastspell(ue) and (not PvP_Server or (paroundfloor(10, 15) == 0 and ($timems-$playerlastseen) >= 12000)) and ($posz <= 6 or ($standtime > 10000 and $posz == 7)) then
            cast(ue)
            wait(200)
            
        elseif ((shootarearune("great fireball rune", 2, unpack(MonsterToGfb))) or (maround(5, "Death Blob") > 2)) and (not PvP_Server or (paroundfloor(10, 15) == 0 and ($timems-$playerlastseen) >= 22000)) and itemcount("great fireball rune") > 0 then
            shootarearune("great fireball rune", 1, "Mutated Rat", "Souleater", "Mutated Bat", "Mutated Tiger", "Killer Caiman", "Death Blob")
               
        elseif $attacked.id ~= 0 and $attacked.dist <= 3 then
            if UseMaxStrike and $attacked.hppc >= 60 and cancastspell(MStrike) and table.find(MonsterToMStrike, $attacked.name) and ISSHOOTABLE() then
                cast(MStrike)
                wait(200)
                
            elseif UseStrongStrike and $attacked.hppc >= 45 and cancastspell(SStrike) and table.find(MonsterToSStrike, $attacked.name) and ISSHOOTABLE() then
                cast(SStrike)
                wait(200)
                
            elseif cancastspell(STRIKE) and table.find(MonsterToStrike, $attacked.name) and ISSHOOTABLE() then
                cast(STRIKE)
                wait(200)
                
            elseif cancastspell("exori moe ico") and table.find(MonsterToMortStrike, $attacked.name) and ISSHOOTABLE() then
                cast("exori moe ico")
                wait(200)
                
            end
        end
    end

  9. #139
    Banned
    Join Date
    Dec 2013
    Posts
    273
    Reputation
    36
    Rep Power
    0
    @Lucas Terra

    Bem o script que eu estou tentando converter ele tem inumeros bugs
    por exemplo o "wincount" é dito que não há nada semelhante no windbot
    dentre outros muitos comandos que não são reconhecidos

    ficaria um post muito grande pra eu postar todos, se você puder eu poderia te passar o script que eu estou tentando converter

  10. #140
    Administrator Lucas Terra's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    2,200
    Reputation
    180
    Rep Power
    10
    Quote Originally Posted by Jokerwt View Post
    @Lucas Terra

    Bem o script que eu estou tentando converter ele tem inumeros bugs
    por exemplo o "wincount" é dito que não há nada semelhante no windbot
    dentre outros muitos comandos que não são reconhecidos

    ficaria um post muito grande pra eu postar todos, se você puder eu poderia te passar o script que eu estou tentando converter
    Me mande por PM.

 

 

Posting Permissions

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