Page 10 of 10 FirstFirst ... 8910
Results 91 to 95 of 95

Thread: Bigshot Updates

  1. #91

    Default

    Something I don't like about your bigshot version Haldrik, it walks away after killing a creature if someone new walks into the room. It shouldn't do that.

  2. #92

    Default

    Quote Originally Posted by SashaFierce View Post
    Something I don't like about your bigshot version Haldrik, it walks away after killing a creature if someone new walks into the room. It shouldn't do that.
    Hmmm. So if someone walks in and stays in the room between when you kill it and try it loot?

    If someone attacks your monster it definitely should walk away, regardless of who was in the room first.

  3. #93

    Default

    I've been using it for awhile now and haven't noticed that when people run through.
    Last edited by Soulance; 04-21-2016 at 07:00 AM.

  4. #94

    Default

    It happens for sure.
    Under def do_hunt()
    this line
    Code:
    while( (target = find_target(target, just_arrived)) && !should_rest? && no_players == true)
    The "no_players" call there causes the issue.

    I fixed it by creating a second no_players called no_players_hunt

    change the above line to below
    Code:
    while( (target = find_target(target, just_arrived)) && !should_rest? && no_players_hunt == true)
    Add this code snippet after def no_players .... end section
    Code:
    def no_players_hunt()
        return false if $ambusher_here
        return true
    end
    This will stop players from making you move, but still let the ambusher move you.

    My version of bigshot.lic, has changes and additions from the last code added here.
    So compare the two versions and copy what you need.
    Dont complain if you copy it straight out and find it does things you dont want.
    https://www.dropbox.com/s/a32kkaoyh7...gshot.lic?dl=0
    Last edited by Hazado; 04-21-2016 at 09:03 AM.

  5. #95

    Default

    Quote Originally Posted by Haldrik View Post
    Hmmm. So if someone walks in and stays in the room between when you kill it and try it loot?

    If someone attacks your monster it definitely should walk away, regardless of who was in the room first.
    Someone is poaching so you walk away? Why?

Similar Threads

  1. Bigshot Lag
    By Tyros in forum The Lich Project
    Replies: 11
    Last Post: 05-16-2020, 01:32 AM
  2. Bigshot and 312
    By Erous in forum The Lich Project
    Replies: 2
    Last Post: 05-01-2020, 08:54 PM
  3. Run Bigshot Once
    By Loumeer in forum The Lich Project
    Replies: 7
    Last Post: 04-30-2017, 07:28 PM
  4. Bigshot tail without bigshot head?
    By Erez in forum The Lich Project
    Replies: 2
    Last Post: 11-26-2016, 06:15 PM
  5. need some bigshot help, also hi
    By Luftstreitkräfte in forum Gemstone: Shattered
    Replies: 4
    Last Post: 04-12-2014, 01:34 PM

Posting Permissions

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