Signup Now
Page 28 of 38 FirstFirst ... 182627282930 ... LastLast
Results 271 to 280 of 378
  1. #271
    Free User
    Join Date
    Mar 2014
    Posts
    26
    Reputation
    10
    Rep Power
    0
    any explains? when you will fix errors, we want better playing

  2. #272
    Free User
    Join Date
    Mar 2014
    Posts
    9
    Reputation
    10
    Rep Power
    0
    This is BUGWT green djinns script for Ibot, its not working for Windbot.
    When the char its on dp to deposit itens looted, the bot is not oppening the lootbp!
    How can I fix this in a way to deposit itens on dp?



    openitem(MainBPname, "back")
    reachgrounditem("depot")
    while (windowcount("Locker") ==0) do
    openitem("depot")
    wait(700,900)
    end

    while (windowcount("Depot Chest") == 0) do
    openitem(3502, "locker")
    wait(800,1000)
    end

    openitem(MainDepotname, "Depot Chest", false)
    wait(800,1000)

    for i=1,4 do
    wait(1000,1500)
    depotdeposit_ib(AddonDepotname, "small emerald", "dirty turban", "green piece of cloth", "noble turban", "jewelled belt", "seeds", "strong mana potion")
    wait(500,1000)
    depotdeposit_ib(LootDepotname, "mystic turban", "green gem", "magma monocle", "wand of inferno")
    openitem(LootBPname, LootBPname, false)
    wait(1000)
    end

    setsetting("Cavebot/WalkThroughPlayers","no")

  3. #273
    Free User
    Join Date
    Mar 2014
    Posts
    61
    Reputation
    10
    Rep Power
    23
    Loot Alert Script from Ibot:
    Code:
    local serverlog_lines = getnewmessages("Server Log") 
    local serverlog_q = serverlog_lines.count - 1 
    
    for i = 0, serverlog_q do 
        if (serverlog_lines[serverlog_q - i].text:find("boots of haste", "royal helmet") and serverlog_lines[serverlog_q - i].type == 19) then 
            playsound("alert.wav")
        end 
    end
    Converted to windbot:
    Code:
    foreach newmessage serverlog_lines "Server Log" do 
        if (serverlog_lines.text:find("boots of haste", "royal helmet") and serverlog_lines.type == 19) then 
            playsound("alert.wav")
        end 
    end
    Doesnt work =/

  4. #274
    Free User
    Join Date
    Dec 2013
    Posts
    90
    Reputation
    20
    Rep Power
    24
    Quote Originally Posted by renatogg View Post
    this is bugwt green djinns script for ibot, its not working for windbot.
    When the char its on dp to deposit itens looted, the bot is not oppening the lootbp!
    How can i fix this in a way to deposit itens on dp?



    openitem(mainbpname, "back")
    reachgrounditem("depot")
    while (windowcount("locker") ==0) do
    openitem("depot")
    wait(700,900)
    end

    while (windowcount("depot chest") == 0) do
    openitem(3502, "locker")
    wait(800,1000)
    end

    openitem(maindepotname, "depot chest", false)
    wait(800,1000)

    for i=1,4 do
    wait(1000,1500)
    depotdeposit_ib(addondepotname, "small emerald", "dirty turban", "green piece of cloth", "noble turban", "jewelled belt", "seeds", "strong mana potion")
    wait(500,1000)
    depotdeposit_ib(lootdepotname, "mystic turban", "green gem", "magma monocle", "wand of inferno")
    openitem(lootbpname, lootbpname, false)
    wait(1000)
    end

    setsetting("cavebot/walkthroughplayers","no")

    same on bugwt sea serpent script!

  5. #275
    Moderator RoxZin xD's Avatar
    Join Date
    Dec 2013
    Location
    Rio de Janeiro
    Posts
    4,911
    Reputation
    109
    Rep Power
    34
    Quote Originally Posted by Simona View Post
    Loot Alert Script from Ibot:
    Code:
    local serverlog_lines = getnewmessages("Server Log") 
    local serverlog_q = serverlog_lines.count - 1 
    
    for i = 0, serverlog_q do 
        if (serverlog_lines[serverlog_q - i].text:find("boots of haste", "royal helmet") and serverlog_lines[serverlog_q - i].type == 19) then 
            playsound("alert.wav")
        end 
    end
    Converted to windbot:
    Code:
    foreach newmessage serverlog_lines "Server Log" do 
        if (serverlog_lines.text:find("boots of haste", "royal helmet") and serverlog_lines.type == 19) then 
            playsound("alert.wav")
        end 
    end
    Doesnt work =/
    It doesn't work because the type is 20 and not 19. Converter can't fix scripts that already comes with an error, you know?



    Troubled Animals Quest [100+]
    ALL
    Feyrist Animals Surface [160+]
    RP
    Feyrist Silencers Underground X1 [180+]
    RP | EK
    Feyrist Silencers Underground X2 [200+]
    RP | EK
    Feyrist Silencers Surface [210+]
    RP | EK
    Rathleton Sewers [240+]
    RP
    Glooth Fairy [350+]
    ED/MS
    Hardcore Draken Walls [400+]
    EK

  6. #276
    Free User
    Join Date
    Mar 2014
    Posts
    61
    Reputation
    10
    Rep Power
    23
    I dont thats why i Posted :d

  7. #277
    Free User
    Join Date
    Mar 2014
    Posts
    9
    Reputation
    10
    Rep Power
    0
    -- // Do not edit anything below:

    --ID of mana potions to count:
    local idMpToCount = (nameManaPot)

    --Minimum amount of mana potions:
    local minMpAmount = (minManaPot)

    --ID of runes to count:
    local idRuneToCount = (nameRune)

    --Minimum amount of runes:
    local minRuneAmount = (minRune)

    --Minimum amount of cap:
    local minCapAmount = (minCapacity)

    if ((itemcount(idMpToCount, 'all') <= minMpAmount) or (itemcount(idRuneToCount, 'all') <= minRuneAmount) or ($cap <= minCapAmount))
    then
    gotolabel("leave_path_demon_forge1")
    end



    Not checking manas! How can I fix it?

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

    --ID of mana potions to count:
    local idMpToCount = (nameManaPot)

    --Minimum amount of mana potions:
    local minMpAmount = (minManaPot)

    --ID of runes to count:
    local idRuneToCount = (nameRune)

    --Minimum amount of runes:
    local minRuneAmount = (minRune)

    --Minimum amount of cap:
    local minCapAmount = (minCapacity)

    if ((itemcount(idMpToCount, 'all') <= minMpAmount) or (itemcount(idRuneToCount, 'all') <= minRuneAmount) or ($cap <= minCapAmount))
    then
    gotolabel("leave_path_demon_forge1")
    end



    Not checking manas! How can I fix it?
    I don't see why it wouldn't work. You do have your mana potions visible on your backpacks, right?

  9. #279
    Free User
    Join Date
    Mar 2014
    Posts
    18
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by llausas View Post
    I found another bug... even if u set opening corpses after mele kill it doesnt open them right after, it waits until every monster is killed to start opening the loot.

    Other bug is that when the character opens more than 2 corpses, it start missing loot, it start putting loot in dead bodies, fir example if i have 4 windows open

    1 main bp
    2 supplies
    3 loot
    4 gold
    and
    5 dead monster
    6 dead monster
    7 dead monster

    sometimes put the loot in the dead monsters instead in the right bp, also sometimes put loot in gold bp, supplies bp, this happen with all of my ibot scripts blackw and bugwt scripters
    still waiting to somone check this...

  10. #280
    Free User rafisokol's Avatar
    Join Date
    Dec 2013
    Location
    Poland / Warsaw
    Posts
    3
    Reputation
    10
    Rep Power
    0
    hello i have problem with one script... All is good but when bot going to buy supplys. he say hi and trade and... nothing. Not buy manas, healths etc. Just stay. When i buy(not bot) supplys, then he going to next waypoint and all is good. here that script:
    if not islocation(1) then gotolabel("w019")
    end


    sellflasks()
    wait(500)


    local CurrentManas = itemcount(mananame, 'all')
    local CurrentHealths = itemcount(healthname, 'all')


    buyitemsupto(healthname,healthtobuy,CurrentHealths )
    wait(200,300)


    amount = manatobuy - CurrentManas
    while amount > 0 do
    buyitems(mananame, amount)
    wait(500,1000)
    moveitems(mananame,SupplyBPname, nil, 1000)
    wait(300,400)
    moveitems(healthname,SupplyBPname, nil, 1000)
    wait(300,400)
    amount = amount-100
    end

 

 

Posting Permissions

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