Signup Now
Page 50 of 65 FirstFirst ... 40484950515260 ... LastLast
Results 491 to 500 of 650
  1. #491
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    Quote Originally Posted by lele View Post
    Hey, @Raphael I need an action to

    if $posz == X and local time > 4:15 and local time < 4:59 and $pzone then
    logout()


    it's possible?
    if $posz == X and timebetween('4:15', '4:59') and $pzone then
    logout()
    end

  2. #492
    Free User lele's Avatar
    Join Date
    Dec 2013
    Location
    Erechim, Brazil
    Posts
    24
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Raphael View Post
    if $posz == X and timebetween('4:15', '4:59') and $pzone then
    logout()
    end
    thanks bro!

  3. #493
    Free User
    Join Date
    Jul 2014
    Posts
    11
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Imba View Post
    I think he wants to be just like one of those 1lvl spammers on rook.
    If u dont know, dont say anything, thanks

    Quote Originally Posted by Raphael View Post
    waatt
    Mals, estava pelo celular, eu preciso de uma action para fazer anuncios no adversting para vender house, itens, etc...
    valeu

  4. #494
    Wind Tester
    Join Date
    Dec 2013
    Location
    Warsaw, Poland
    Posts
    2,579
    Reputation
    149
    Rep Power
    27
    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'

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

  6. #496
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    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.

  7. #497
    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?

  8. #498
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    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.

  9. #499
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    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.

  10. #500
    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

 

 

Posting Permissions

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