Signup Now
Page 52 of 65 FirstFirst ... 242505152535462 ... LastLast
Results 511 to 520 of 650
  1. #511
    Wind Powered
    Join Date
    Aug 2014
    Posts
    11
    Reputation
    10
    Rep Power
    0
    Level spy so you could look on floors above and below

  2. #512
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    Quote Originally Posted by afridelle View Post
    Level spy so you could look on floors above and below
    There's one included in the bot, check your HUDs tab.

  3. #513
    Wind Tester
    Join Date
    Dec 2013
    Location
    Warsaw, Poland
    Posts
    2,579
    Reputation
    149
    Rep Power
    27
    @Raphael Is there easy way to iterate through ground items? Or every visible sqm.
    Last edited by Imba; 08-12-2014 at 11:33 PM.

  4. #514
    Free User
    Join Date
    Mar 2014
    Posts
    61
    Reputation
    10
    Rep Power
    21
    I need something like this
    Code:
    If self.$skull then
    cast('utana vid')
    cast('exana pox')
    wait(62000,65000)
    end
    It will cast exana pox and utana vid if you are are skull and then wait the seconds, or something like this
    Code:
    if self skull then
    setcavebot('off')
    else if not self skull then
    setcavebot('on')

  5. #515
    Wind Tester
    Join Date
    Dec 2013
    Location
    Warsaw, Poland
    Posts
    2,579
    Reputation
    149
    Rep Power
    27
    @Simona
    auto(200)
    if $self.skull > 0 then
    if $invistime < 65000 then
    cast('utana vid')
    end
    if $poisoned then
    cast('exana pox')
    end
    wait(62000, 65000)
    end



    auto(200)
    if $self.skull > 0 then
    setcavebot('off')
    else
    if not $cavebot then
    setcavebot('on')
    end
    end

  6. #516
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    Quote Originally Posted by Imba View Post
    @Raphael Is there easy way to iterate through ground items? Or every visible sqm.
    You can use @Leonardo's screentiles() iterator.

    Example:

    for x, y, z in screentiles() do
    print(x, y, z)
    end

  7. #517
    Moderator Leonardo's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    758
    Reputation
    77
    Rep Power
    22
    Or

    for tile in screentiles(false, false, gettile) do
    ...

  8. #518
    Free User
    Join Date
    May 2014
    Posts
    68
    Reputation
    12
    Rep Power
    20
    i need help on a script to change th atack method:

    Keep away ===> Lure & Keep away

    thanks

  9. #519
    Wind Tester
    Join Date
    Dec 2013
    Location
    Warsaw, Poland
    Posts
    2,579
    Reputation
    149
    Rep Power
    27
    setsetting('Targeting/Creatures/Pirate Marauder/Setting1/Stance', 'Keep Away')
    setsetting('Targeting/Creatures/Pirate Marauder/Setting1/Stance', 'Lure & Keep Away')

    @aafaz just right click on attack method and select 'Copy Lua setsetting(...)'


    @Raphael and @Leonardo thanks, exactly what i needed.
    Last edited by Imba; 08-14-2014 at 01:29 AM.

  10. #520
    Free User
    Join Date
    May 2014
    Posts
    68
    Reputation
    12
    Rep Power
    20
    Quote Originally Posted by Imba View Post
    setsetting('Targeting/Creatures/Pirate Marauder/Setting1/Stance', 'Keep Away')
    setsetting('Targeting/Creatures/Pirate Marauder/Setting1/Stance', 'Lure & Keep Away')

    @aafaz just right click on attack method and select 'Copy Lua setsetting(...)'

    @Raphael and @Leonardo thanks, exactly what i needed.

    thanks man.. didnt know it!!

 

 

Posting Permissions

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