Signup Now
Page 11 of 65 FirstFirst ... 9101112132161 ... LastLast
Results 101 to 110 of 647
  1. #101
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,437
    Reputation
    309
    Rep Power
    31
    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.

  2. #102
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,098
    Reputation
    433
    Rep Power
    42
    Okey, i will use it then ;-)

  3. #103

  4. #104
    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.

  5. #105
    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,

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

  7. #107
    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

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

  9. #109
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,437
    Reputation
    309
    Rep Power
    31
    Quote Originally Posted by jkaberg View Post
    How exactly would this work? Something like this, for example?

    Log in
    Chars has 6h of offline training
    Start training
    Log back in 16~18hrs
    Repeat

  10. #110
    Wind Powered Voltzin's Avatar
    Join Date
    Dec 2013
    Posts
    212
    Reputation
    31
    Rep Power
    24
    Quote Originally Posted by Raphael View Post
    How exactly would this work? Something like this, for example?

    Log in
    Chars has 6h of offline training
    Start training
    Log back in 16~18hrs
    Repeat
    I think that would be great this way o.o it's possible?

 

 

Posting Permissions

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