Signup Now
Page 11 of 65 FirstFirst ... 9101112132161 ... LastLast
Results 101 to 110 of 650
  1. #101
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,440
    Reputation
    283
    Rep Power
    27
    Quote Originally Posted by K4r4biN View Post
    So well, as I asked you in PM, there was a hotkey I used on Elf and then on Neo, it's called hold target

    @PM, lol, I'm about to be sure it was closed when I was writting PM xD
    Done:

    http://forums.tibiawindbot.com/showt...st-Hold-Target
    Last edited by Raphael; 01-04-2014 at 01:46 AM.
    RaphSeller
    PayPal Instantaneous Reseller


    raphseller.com

  2. #102
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,105
    Reputation
    433
    Rep Power
    39
    I would like to ask about some Rune Shooter with getting settings from User Options for player security ;> + Ue Hotkey with player security
    Regards

  3. #103
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,440
    Reputation
    283
    Rep Power
    27
    Quote Originally Posted by Dworak View Post
    I would like to ask about some Rune Shooter with getting settings from User Options for player security ;> + Ue Hotkey with player security
    Regards
    There's really no need to remake functionality, this is builtin in the bot on the targeting.
    setsettings for targeting should come in the next update.
    RaphSeller
    PayPal Instantaneous Reseller


    raphseller.com

  4. #104
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,105
    Reputation
    433
    Rep Power
    39
    Okey, i will use it then ;-)

  5. #105

  6. #106
    Free User Robin's Avatar
    Join Date
    Dec 2013
    Posts
    157
    Reputation
    9
    Rep Power
    0
    finded.
    Last edited by Robin; 01-07-2014 at 10:01 PM.

  7. #107
    Banned
    Join Date
    Dec 2013
    Posts
    556
    Reputation
    18
    Rep Power
    0
    @Raphael, sorry for asking you for many hotkeys, just doing same as on neobot forums haha xD

    Well, I need a hotkey to play alarm when same NPC is seeing for more than 60 seconds.
    You know Buddel, there are 3 with same name, but still, sometimes when my noob char is going back from depositing, he is not withdrawind money to travel (it's caused ppl push him in bank I'm sure), so it's getting stuck, trying to travel but no money. I'm using follow/reach NPC so stand alert won't work I just don't know how to make this hotkey,

  8. #108
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,440
    Reputation
    283
    Rep Power
    27
    Quote Originally Posted by K4r4biN View Post
    @Raphael, sorry for asking you for many hotkeys, just doing same as on neobot forums haha xD

    Well, I need a hotkey to play alarm when same NPC is seeing for more than 60 seconds.
    You know Buddel, there are 3 with same name, but still, sometimes when my noob char is going back from depositing, he is not withdrawind money to travel (it's caused ppl push him in bank I'm sure), so it's getting stuck, trying to travel but no money. I'm using follow/reach NPC so stand alert won't work I just don't know how to make this hotkey,
    It would probably be smarter to check if you have the money at the moment you leave the bank, wouldn't it?
    Something like this at the end of your bank action:

    if gold() < moneyToWithdraw then
    gotolabel($wptid - 1)
    end


    Remember to change moneyToWithdraw to whatever the name of the variable you used to store it.
    RaphSeller
    PayPal Instantaneous Reseller


    raphseller.com

  9. #109
    Banned
    Join Date
    Dec 2013
    Posts
    556
    Reputation
    18
    Rep Power
    0
    Quote Originally Posted by Raphael View Post
    It would probably be smarter to check if you have the money at the moment you leave the bank, wouldn't it?
    Something like this at the end of your bank action:

    if gold() < moneyToWithdraw then
    gotolabel($wptid - 1)
    end


    Remember to change moneyToWithdraw to whatever the name of the variable you used to store it.
    Yea ok, but anyway, is that NPC action I asked available? I know there is smth like $lastplayeronscreen or w/e

  10. #110
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,440
    Reputation
    283
    Rep Power
    27
    Quote Originally Posted by K4r4biN View Post
    Yea ok, but anyway, is that NPC action I asked available? I know there is smth like $lastplayeronscreen or w/e
    init start
    local npcName = 'Buddel'
    local lastSeen = false
    init end

    auto(100)

    local npc = findcreature(npcName)
    if not npc then
    lastSeen = false
    else
    if lastSeen == false then
    lastSeen = $timems
    end

    if $timems - lastSeen > 60000 then
    beep()
    end
    end
    RaphSeller
    PayPal Instantaneous Reseller


    raphseller.com

 

 

Posting Permissions

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