Signup Now
Page 50 of 65 FirstFirst ... 40484950515260 ... LastLast
Results 491 to 500 of 647
  1. #491
    Wind Tester
    Join Date
    Dec 2013
    Location
    Warsaw, Poland
    Posts
    2,568
    Reputation
    149
    Rep Power
    30
    Quote Originally Posted by Phsycoze View Post
    If u dont know, dont say anything, thanks



    Mals, estava pelo celular, eu preciso de uma action para fazer anuncios no adversting para vender house, itens, etc...
    valeu
    I wouldnt have to guess, if you could write whats on ur mind LOL, and this is english board so write in english so i can understand it also, else 'dont say anything, thanks'

  2. #492
    Free User
    Join Date
    Jun 2014
    Posts
    3
    Reputation
    10
    Rep Power
    0
    would have some hotkey to attack vis hur?

  3. #493
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,437
    Reputation
    309
    Rep Power
    31
    Quote Originally Posted by Phsycoze View Post
    If u dont know, dont say anything, thanks



    Mals, estava pelo celular, eu preciso de uma action para fazer anuncios no adversting para vender house, itens, etc...
    valeu
    You should try and be more polite to those who are trying to help you.

    init start
    -- Time between messages sent, in ms
    local interval = {120000, 180000}

    -- Message to be sent
    local msg = 'some cool message'
    init end

    auto(100)
    say('Advertising', msg)
    wait(math.random(interval[1], interval[2]))


    Also, please keep your comments in English, this is an English forum.

  4. #494
    Free User
    Join Date
    Jan 2014
    Posts
    40
    Reputation
    11
    Rep Power
    0
    Quote Originally Posted by Raphael View Post
    Okey, i'll try and find a char with access to place to test it.
    @Raphael I also tried your code with no success, any update on this? Would be really useful. Thanks!

    Regarding your juicy root collecting code, also possible to make it move the root to loot backpack, sort of like how manas get moved to supplies bp in most scripts?

  5. #495
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,437
    Reputation
    309
    Rep Power
    31
    Quote Originally Posted by Kejtarn View Post
    @Raphael I also tried your code with no success, any update on this? Would be really useful. Thanks!

    Regarding your juicy root collecting code, also possible to make it move the root to loot backpack, sort of like how manas get moved to supplies bp in most scripts?
    I still haven't managed to get a char with enough level to go there, I'm afraid.
    Yes, it would be possible, but first I'd need to make it work.

  6. #496
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,437
    Reputation
    309
    Rep Power
    31
    Quote Originally Posted by Kejtarn View Post
    @Raphael I also tried your code with no success, any update on this? Would be really useful. Thanks!

    Regarding your juicy root collecting code, also possible to make it move the root to loot backpack, sort of like how manas get moved to supplies bp in most scripts?
    Sorry, would you be kind enough to test this other version?

    init start
    -- local SCRIPT_VERSION = '1.0.1'


    -- DO NOT EDIT BELOW THIS LINE --

    local readyRootIds = {21104, 21105}
    local lootId = 21291

    local function findrootspots()
    for x, y in screentiles(ORDER_RADIAL) do
    if table.find(readyRootIds, topuseitem(x, y, $posz).id) then
    return {x = x, y = y}
    end
    end

    return nil
    end
    init end

    auto(100)

    if $lootsaround == 0 and $targetingtarget.hppc == 0 then
    local bestSpot = findrootspots()

    while bestSpot ~= nil do
    pausewalking(6^9) -- Yeah babe!

    if bestSpot ~= nil then
    local lootCount = itemcount(lootId)

    reachlocation(bestSpot.x, bestSpot.y, $posz)
    waitping()
    useitem(0, ground(bestSpot.x, bestSpot.y, $posz))
    waitping()

    if itemcount(lootId) > lootCount then
    increaseamountlooted(lootId, itemcount(lootId) - lootCount)
    end
    end

    -- If starting conditions are no longer met, abort mission!
    if $lootsaround ~= 0 or $targetingtarget.hppc ~= 0 then
    break
    end

    bestSpot = findrootspots()
    end

    pausewalking(0) -- Orgasm.
    end
    Last edited by Raphael; 08-09-2014 at 11:36 PM.

  7. #497
    Free User
    Join Date
    Jan 2014
    Posts
    40
    Reputation
    11
    Rep Power
    0
    Quote Originally Posted by Raphael View Post
    Sorry, would you be kind enough to test this other version?

    init start
    -- local SCRIPT_VERSION = '1.0.1'


    -- DO NOT EDIT BELOW THIS LINE --

    local readyRootIds = {21104, 21105}
    local lootId = 21291

    local function findrootspots()
    for x, y in screentiles(ORDER_RADIAL) do
    if table.find(readyRootIds, topuseitem(x, y, $posz).id) then
    return {x = x, y = y}
    end
    end

    return nil
    end
    init end

    auto(100)

    if $lootsaround == 0 and $targetingtarget.hppc == 0 then
    local bestSpot = findrootspots()

    while bestSpot ~= nil do
    pausewalking(6^9) -- Yeah babe!

    if bestSpot ~= nil then
    local lootCount = itemcount(lootId)

    reachlocation(bestSpot.x, bestSpot.y, $posz)
    waitping()
    useitem(0, ground(bestSpot.x, bestSpot.y, $posz))
    waitping()

    if itemcount(lootId) > lootCount then
    increaseamountlooted(lootId, itemcount(lootId) - lootCount)
    end
    end

    -- If starting conditions are no longer met, abort mission!
    if $lootsaround ~= 0 or $targetingtarget.hppc ~= 0 then
    break
    end

    bestSpot = findrootspots()
    end

    pausewalking(0) -- Orgasm.
    end
    That code worked perfectly, awesome! Now I just need the bot to move the roots to lootbp

  8. #498
    Free User
    Join Date
    Aug 2014
    Posts
    11
    Reputation
    10
    Rep Power
    0
    I need a hotkey for using obsidian knife on minotaur, minotaur guard, minotaur archer and minotaur mage korpses.

  9. #499
    Free User Siton's Avatar
    Join Date
    Jul 2014
    Location
    Poland
    Posts
    20
    Reputation
    10
    Rep Power
    0
    Maybe is possible to make hotkey to use rusty remover on rusty armor in dead monster 'X','X' and if armor 'x',x', put in lootbp ?
    Last edited by Siton; 08-10-2014 at 12:31 PM.

  10. #500
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,437
    Reputation
    309
    Rep Power
    31
    Quote Originally Posted by Kejtarn View Post
    That code worked perfectly, awesome! Now I just need the bot to move the roots to lootbp
    Something as simple as this should work:

    auto(100)
    if itemcount(21291, 0) > 0 then
    moveitems(21291, getlootingdestination('lootbp'), 0)
    waitping()
    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
  •