• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [QB][N] Voidtalon of the Dark Star

    Discussion in 'Honorbuddy Profiles' started by Vengent, Mar 1, 2015.

    1. havoc874

      havoc874 New Member

      Joined:
      Nov 30, 2014
      Messages:
      4
      Likes Received:
      0
      Trophy Points:
      0
      same here
       
    2. havoc874

      havoc874 New Member

      Joined:
      Nov 30, 2014
      Messages:
      4
      Likes Received:
      0
      Trophy Points:
      0
      can someone tell ?

      the Camp only one does it move when it detects an Portal or do i have to stay next to the portal?
       
    3. Vengent

      Vengent Community Developer

      Joined:
      Nov 23, 2012
      Messages:
      130
      Likes Received:
      3
      Trophy Points:
      18
      When it detects the portal it will move towards it and click it (in theory). Camp only won't navigate to any spawn spots.
       
    4. havoc874

      havoc874 New Member

      Joined:
      Nov 30, 2014
      Messages:
      4
      Likes Received:
      0
      Trophy Points:
      0
      Okay i tell you if i found an portal with your profile
       
    5. havoc874

      havoc874 New Member

      Joined:
      Nov 30, 2014
      Messages:
      4
      Likes Received:
      0
      Trophy Points:
      0
      Only an idea:

      Is it possible to make an Radar Only one?
      so i move around kill some mobs and when he found an Portal i get an notify or something else?
       
    6. Vengent

      Vengent Community Developer

      Joined:
      Nov 23, 2012
      Messages:
      130
      Likes Received:
      3
      Trophy Points:
      18
      That would require a plugin, well beyond the scope of this profile.
       
    7. Kesmarkidavid

      Kesmarkidavid New Member

      Joined:
      Sep 15, 2014
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0
      Hello. From how far can it detect the portal?
       
    8. Noct157

      Noct157 New Member

      Joined:
      May 28, 2014
      Messages:
      44
      Likes Received:
      0
      Trophy Points:
      0
      I still get disconnected if I leave it by it's self for to long, anyone else having this issue?
       
    9. Exystredofar

      Exystredofar New Member

      Joined:
      Jun 22, 2010
      Messages:
      51
      Likes Received:
      0
      Trophy Points:
      0
      I managed to fix the out of memory issue, I added a few extra seconds onto the portal check timer and now it runs for at least 9 hours with no issues, as long as I close and reopen the program every 9 hours or so there's no issues at all.
       
    10. Vengent

      Vengent Community Developer

      Joined:
      Nov 23, 2012
      Messages:
      130
      Likes Received:
      3
      Trophy Points:
      18
      Kesmarkidavid,

      Collection Distance is set to 100. So fairly good distance. Easy enough to increase.

      Noct157,

      How long is too long? My max so far is about 6 hours. I'm hearing now the respawn thing on this might be 48 hours, had no idea it was so long when I started this. =(

      Exystredofar,

      So it was just too much activity? or too much logging? I've thought maybe I don't need to message every single time it moves. I can't imagine any particular line of code is causing a memory leak its all standard profile stuff.
       
    11. Princeofdarkness

      Princeofdarkness Member

      Joined:
      Feb 14, 2010
      Messages:
      63
      Likes Received:
      0
      Trophy Points:
      6
      bad me
       
      Last edited: Mar 13, 2015
    12. Noct157

      Noct157 New Member

      Joined:
      May 28, 2014
      Messages:
      44
      Likes Received:
      0
      Trophy Points:
      0
      Attach log then so creator can fix it?
       
    13. Vengent

      Vengent Community Developer

      Joined:
      Nov 23, 2012
      Messages:
      130
      Likes Received:
      3
      Trophy Points:
      18
      You did see the repeated comments about untested right? How well do you think anyone can test a profile for something that pops up randomly every 2 days and you can only click once per account? Help me make it better if you can, if not, well you got your moneys worth. (ie free.)
       
    14. Princeofdarkness

      Princeofdarkness Member

      Joined:
      Feb 14, 2010
      Messages:
      63
      Likes Received:
      0
      Trophy Points:
      6
      Already sent you a log in private message and yes you can actually test this by having it run on a portal thats in a city or another object. Interaction with objects with a stand alone profile and others woudl be a simple checking for the same ID, aka SW portal or IF Portal. Something similar. Testing the script to accept a scenario would be to queue a scenario yourself and test it that way. I understand Beta, but also understand that you don't require the exact item to interact with to test your code.
       
    15. Vengent

      Vengent Community Developer

      Joined:
      Nov 23, 2012
      Messages:
      130
      Likes Received:
      3
      Trophy Points:
      18
      You gave me a tiny excerpt that showed my profile attempting to interact with the portal correctly. And yes, I have of course tested with other portals, as I have lots of private profiles I don't share that use a wide variety of portals. It's very simple code that's extremely well used.

      HTML:
      <While Condition="Object(239828) != null ">
        <CustomBehavior File="Message" Text="Portal Found, Interacting!!" LogColor="Orange" />
        <CustomBehavior File="InteractWith" WaitForNpcs="false" WaitTime="3000" MobId="239828" NumTimes="2" Range="1" CollectionDistance="100" PreInteractMountStrategy="DismountOrCancelShapeshift" />
        <If Condition="Me.ZoneId != 7519">
          <CustomBehavior File="RunMacro" Macro="/click LFGDungeonReadyDialogEnterDungeonButton" />
          <CustomBehavior File="WaitTimer" WaitTime="2000" />				
        </If>
      </While>
      
      Walking through it it enters a while loop ONLY if the object with that ID is detected. It bypasses this as long as the object is not found. (that part works fine.)

      Then a message. Then InteractWith. (Which is used in a gazillion places in quest scripts).

      Going through the options. Waitfornpc=false means it won't stand there waiting, it'll continue to loop (meaning instead of trying once, we'll try every time it loops (as long as the we haven't changed zones (ie entered the scenario, and the object still exists (someone else clicks it).

      Mobid is what we click. Numtimes the number of times it "clicks". One is probably sufficient, 2 was just in case since I haven't to lay eyes on it. Range is how close your character moves before "clicking" Collection distance is how far away it can be from where we're standing before we consider it a valid object to intearct with. Preinteract just tells it to dismount and drop shapeshift prior to clicking. That's it. Nothing all that special there. Nothing that hasn't been tested with other portals a zillion times. Nothing I uniquely wrote for just this specific situation.

      The part I am more concerned about is the clicking the scenario button.
       
    16. Princeofdarkness

      Princeofdarkness Member

      Joined:
      Feb 14, 2010
      Messages:
      63
      Likes Received:
      0
      Trophy Points:
      6
      bad me
       
      Last edited: Mar 13, 2015
    17. Vengent

      Vengent Community Developer

      Joined:
      Nov 23, 2012
      Messages:
      130
      Likes Received:
      3
      Trophy Points:
      18
      That's just a warning, it doesn't stop it from continuing the interact. Nothing in your log shows an error. It found it started moving towards it, got sidetracked by a monster, then the log ends.
       
    18. Exystredofar

      Exystredofar New Member

      Joined:
      Jun 22, 2010
      Messages:
      51
      Likes Received:
      0
      Trophy Points:
      0
      Honestly I'm not sure, keeping log files rotating didn't seem to fix it, it seemed almost as though the program itself ran out of memory from scanning the WoW client too much, closing and restarting honorbuddy would fix the entire issue. I have no idea why this would happen.
       
    19. smokeythesquare

      smokeythesquare New Member

      Joined:
      Dec 27, 2011
      Messages:
      33
      Likes Received:
      0
      Trophy Points:
      0
      Hopefully we just need it to click on the portal and then it will send it to us in the mail. People who are relam hopping and click on the portal get an error saying they cannot que for scenario while in group and then it gets mailed to them. I hope that if you click on the portal and the timer for the scenario runs out it that it will just mail it. People have stated it taking up to half an hour to get it in the mail so idk how the mailing works
       
    20. Vengent

      Vengent Community Developer

      Joined:
      Nov 23, 2012
      Messages:
      130
      Likes Received:
      3
      Trophy Points:
      18

      ajziegle,

      Given what we found in your logs, would you like to amend this statement?
       

    Share This Page