Jump to content

eeny

Elite user
  • Posts

    987
  • Joined

  • Last visited

Reputation Activity

  1. Like
    eeny got a reaction from maylu in Dungeon Profile creation tutorial video   
    Eeny_RFC.xml
  2. Like
    eeny got a reaction from BetterSister in Dungeon Profile creation tutorial video   
    Still died on a geared 100 rogue =P... in an instance built for lvl 15's
  3. Like
    eeny got a reaction from Droidz in how to make a profile to quest dungeon?   
    Simpletons way of instance profile making... Best of luck
     
     
    ...its not simple.
  4. Like
    eeny got a reaction from kilimich in Dungeon Profile creation tutorial video   
    Eeny_RFC.xml
  5. Like
    eeny got a reaction from BetterSister in getting a crash   
    Your logs are a mess with:
    22:03:16 - Combatlooter.Routine.Pulse(): System.NullReferenceException: Object reference not set to an instance of an object.
    at Routine.Pulse()
    to see whats actually going on here, lets get that cleared up first.  
    Either turn off combat looter or see the original combat looter page by Pasterke an find he has made a fix already:  Fixed null reference :  CombatLooter2.zip
     
    once thats done lets see how it looks without all that noise
  6. Like
    eeny got a reaction from Droidz in gatherer profiles not working tanaan g   
    On the first log with ur shaman you actually got some farms.. you could always make a copy of the tanaan mesh's, move them out of the directory they are now and start the bot.
     
    The bot will need to re-download new mesh's and you may have a bit more luck... Maybe worth a shot
  7. Like
    eeny reacted to Bugreporter in download statistic cleanup   
    I dont know why, but I have a lot of duplicates of downloads at the same time and from the same user. Good for the statistic, but not really informative. Maybe it would better to cleanup all statistics from duplicate User-downloads and count only the latest download from the same user. And I think this problem is not only at my file.statistics.
    Additional feature: Inform the Users, who have downloaded an older Version, that a new version is available. (i.e. Forum Notification, enable/disable per file)
    Additional feature: Statistic how many users downloaded which Version (make only sense with the feature above)
  8. Like
    eeny reacted to Droidz in Iscomplete condition of "within X yds of <<GPS co-ords>>"   
    Hello, yes with "IsCompleteCondition" like: 
    return ObjectManager.Me.Position.DistanceTo(new Vector3(1, 2, 3)) < 10;  
  9. Like
    eeny got a reaction from Shariis in Quest profile creation video tutorial   
    So, i had a few drinks and decided that a quest profile creation tutorial was in order.
     
    Result:  
     
     
    Chain Quests and Gathering 
     
    Hope this helps...someone, might make a better one
  10. Like
    eeny got a reaction from Dreamful in How to sell your profiles/fightclasses   
    I thought this was a no-brainer.  Surprised its not done already. 
  11. Like
    eeny reacted to Dreamful in How to sell your profiles/fightclasses   
    Maybe we can first set the Download Section on paid User only?
    Thats the Reason i dont even Upload my stuff here, cracked user can download my stuff just easily.
  12. Like
    eeny got a reaction from Droidz in Maximum Profile size crashing bot?   
    Fresh install of wrobot on the new SSD (G:/Wrobot).. all working fine at this time.... shrugs 
     
    Same OS, same profiles no crash.  The old install has been running pretty hard for a few months.. maybe something just got messed up
  13. Like
    eeny got a reaction from Gargaroth95 in Get quest item from grinding mobs   
    I assume you want the bot to grind mobs till it finds the item that starts a quest. 
     take a look at the below profile.. The first pulse is a kill and loot, however the <iscomplete> condition is:
          <IsCompleteCondition>return ItemsManager.GetItemCountById(113578) &gt;= 240;</IsCompleteCondition>
    What that does is checks you bags for ITEMID- in this case 113578 and if its bigger than or equal to 240 the quest is complete.
    All i would do is change the ITEM id to the quest start object and set value to =1.  the next quest profile step will be to "pick up the quest" .  In the Quest you need to set true "pickup from item" and add the item ID. ( pic attached).
     
    Without doing it for you i cant give you much else- hope that helps
     
     

  14. Like
    eeny got a reaction from Runaro in Maximum Profile size crashing bot?   
    Today i learneded something

  15. Like
    eeny got a reaction from BetterSister in Only Use Vendor that is in Profile selected   
    Seen this exact issue.  This is especially a problem while leveling as the bot may walk into a high lvl area to sell / repair and just chain die.
  16. Like
    eeny got a reaction from Dreamful in Only Use Vendor that is in Profile selected   
    Seen this exact issue.  This is especially a problem while leveling as the bot may walk into a high lvl area to sell / repair and just chain die.
  17. Like
    eeny got a reaction from KevinVapes in What are you guys doing before legion   
    With the price of my staples : leather / herbs / feblight falling to almost vendor prices.. Tanaan isnt the best place to send my bots atm.
     
    What are you guys doing to fill the gap before legion drops?  anything we should be farming to prep us for legion?
  18. Like
    eeny got a reaction from KevinVapes in LEGION quest ID's ....off?   
    42 minutes.. nice
    EDIT: your the man!
  19. Like
    eeny reacted to Droidz in LEGION quest ID's ....off?   
    Hello, thank you. Problem resolved, if you can wait next update.
  20. Like
    eeny got a reaction from Pudge in Snippets codes for quest profiles   
    Use item on dead mob ( after looting)
    Use like the use item on weakened mob- you need to modify the item ID and Quest ID for your quest.
     
     
    Thread t = new Thread(() => { uint itemId = 9618; int questId = 25336; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; if (ObjectManager.Target.IsValid && ObjectManager.Target.IsDead) { ItemsManager.UseItem(itemId); } } Thread.Sleep(500); } }); t.Start();  
  21. Like
    eeny got a reaction from Batman in How do I cast shadowmeld after I drink / eat?   
    Put it in the fight class??
    Just have shadowmeld in the fight class with a condition that the bot needs to be eating to cast it.

  22. Like
    eeny got a reaction from BetterSister in Cast Shadow Bolt on Shadow Trance Proc   
    Jumping is possible for people who write profiles in C# i think. 
    Using flight class editor: For instances like this i simply make a second Shadow bolt entry up the top of the rotation with a "has buff :  shadow trance = true".  Honestly- some times the bot will do something else instead .... but realistically its a bot.. most of the time it will do the right thing, if it skips a proc...meh
  23. Like
    eeny got a reaction from Batman in Cast Shadow Bolt on Shadow Trance Proc   
    Jumping is possible for people who write profiles in C# i think. 
    Using flight class editor: For instances like this i simply make a second Shadow bolt entry up the top of the rotation with a "has buff :  shadow trance = true".  Honestly- some times the bot will do something else instead .... but realistically its a bot.. most of the time it will do the right thing, if it skips a proc...meh
  24. Like
    eeny got a reaction from KevinVapes in [Tutorial] - Create a Sucessfully FightClass Profile   
  25. Like
    eeny got a reaction from Batman in [Tutorial] - Create a Sucessfully FightClass Profile   
×
×
  • Create New...