Jump to content

iMod

Elite user
  • Posts

    581
  • Joined

  • Last visited

Posts posted by iMod

  1. 2 hours ago, wonkadoodle said:

    02:38:57 - Update has finished.
    02:38:57 - error: System.Net.WebException: An exception occurred during a WebClient request. ---> System.IO.IOException: The process cannot access the file 'C:\Program Files (x86)\wRob\WRobot\Bin\robotManager.dll' because it is being used by another process.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access)
       at System.Net.WebClient.DownloadFile(Uri address, String fileName)
       --- End of inner exception stack trace ---
       at System.Net.WebClient.DownloadFile(Uri address, String fileName)
       at System.Net.WebClient.DownloadFile(String address, String fileName)
       at UpdateManager.UpdateManager.Kuoguwunipevae()
    02:38:57 - Update file: Bin/robotManager.dll
    02:38:57 - error: System.Net.WebException: An exception occurred during a WebClient request. ---> System.IO.IOException: The process cannot access the file 'C:\Program Files (x86)\wRob\WRobot\Bin\wManager.dll' because it is being used by another process.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access)
       at System.Net.WebClient.DownloadFile(Uri address, String fileName)
       --- End of inner exception stack trace ---
       at System.Net.WebClient.DownloadFile(Uri address, String fileName)
       at System.Net.WebClient.DownloadFile(String address, String fileName)
       at UpdateManager.UpdateManager.Kuoguwunipevae()
    02:38:57 - Update file: Bin/wManager.dll
    02:38:57 - 2 file(s) need to be updated
    02:38:57 - Check for updated files.
    02:38:53 - 2 file(s) need to be updated
    02:38:53 - Check for updated files.
    02:38:53 - Product changed: WRobot for Wow Wrath of the Lich King (3.3.5a.12340)

    How do you update?
    1. Restart the pc and just execute the "Updater.exe"
    2. Make sure the updater is closed and start the bot as admin.
     

  2. 12 minutes ago, pum6aster said:

    Добрый день . И как избавиться от IP-адреса . если у меня на разных местах дома работать

     

    I bet your house has only 1 public IP (router) so everything is fine. Internal IP's does not count, only the public one.
    Oh and btw please write english if you are writing in a international thread, thanks.

  3. 8 hours ago, King Smilie said:

    iMod Thank You!!! If I knew it was that easy then I wouldn't feel so incompetent right now..... lol Thanks again!!!. Ok so when I use this I would have to put this CSharp code in each Move? or can I put all my moves in this and the that would make the bot only do the rotation is this is set with No Runes on Cool Down and Full Runic Power. then it will do the rotation I have set in the ( Do Your stuff ) area right? So yeah I will need to put only the moves in the rotation that need the Setting for the rotation and then the moves that I need to do only to get full runic power as a second set of CSharp rotation moves. So all total I will need to build 3 CSharp rotations. One to build Runic power. One to stop the bot and make it White Hit till all Runes are off cool down. And then one to execute the Top DPS rotation once all the Vars are met?

    Well it depends on how you write your fight class in c#. What do you mean with each move? "Do your stuff" will only be executed if the "if" conditions match, which means if you have 0 runes ready and 100% runic power.

  4. 38 minutes ago, Hugo123 said:

    Hello folks, is there some way to copy my AH bot settings from character 1 to character 2? 

    Cheers

    Take a look into the "Settings" folder, there should be something like {product}{realm}{character name}.xml (Just an example)
    Just adjust the character name and you should be fine.

  5. 8 hours ago, King Smilie said:

    Droidz I know I have said this before but Ill say it again THANKS SOOOO MUCH!!!! But you see I need to know how to make the bot Pool its resources Like say your a Death Knight. You have to have Full Rune Power and All of your Runes Have to be off Cool Down in order to use Breath of Sindragosa Properly. So I need to know how to code the Fight Class so that these two resources are at full When Using the move. So I have to fight to build Rune Power then when fighting my runes are spent. So I will have to White Hit for a while in order to wait for the, to all to refresh. I cant figure out how to do this.

    // All runes at cooldown and 100% runic power
    if(ObjectManager.Me.RunesReadyCount() == 0 && ObjectManager.Me.RunicPowerPercentage == 100)
    {
       // do your stuff
    }

    Hope this will answer your question.
    You can find all your character specific stuff in "ObjectManager.Me".
     

  6. On 29.7.2017 at 6:30 PM, Nathu said:

    Hallöchen,

    leider klappt die Archäologie im bot nicht. Ich klicke auf start mit meinem Dudu und dann kommt ein Fehlercode und beendet den bot von alleine. Was muss ich tun damit es funktioniert?

     

    Und die Fight Class kann ich auch nicht auswählen, alles ist in der Farbe Weiß. Was muss ich tun damit es funktioniert?

     

    Danke im voraus!

    Als erstes mal die Log Datei zur Verfügung stellen, damit man sehen kann was überhaupt schief läuft.
    Du musst eine FightClass runterladen und in den Ordner kopieren, damit in der Dropdown-Liste etwas ausgewählt werden kann. 

  7. 6 minutes ago, Apexx said:

    The Protection Warrior Fight Class I am making is more for those that would rather control their own character in game. Such things like targeting and initial pulling would be up to the player.
    However, if the user would like to allow the Fight Class to pull (Found in Settings), it was an issue with Wrath of the Lich King that once the initial targeted mob died, the in-game auto target
    feature continuously makes my character go as long as there are mobs around me (despite setting the advanced settings for eating at certain health percentage) because of how quick the
    auto target reacts.

    Ah i see, well i'm doing the same.

    Its a bit out of topic but here is my small rotation i made to tank some stuff. Its way not optimized :rolleyes:
    Protection.cs

  8. those checks should be enough i think. Just modified my own one.

            /// <summary>
            /// Determine if the spell can be cast
            /// </summary>
            /// <param name="target">The target we want to cast at</param>
            /// <returns>Returns true if we can cast the spell, otherwise false</returns>
            public bool IsValid(WoWUnit target, WoWSpell spell)
            {
                // Target available?
                if (target == null)
                {
                    // Skip
                    return false;
                }
    
                // Validate own conditions
                if (ObjectManager.Me.Silenced || ObjectManager.Me.IsStunned)
                {
                    // Skip
                    return false;
                }
    
                // Valid?
                if (target.IsDead || !spell.IsKnown || !spell.IsSpellUsable || !spell.IsDistanceGood || TraceLine.TraceLineGo(target.Position))
                {
                    // Skip
                    return false;
                }
    
                // Return
                return true;
            }

     

  9. 17 minutes ago, Apexx said:

    I can add those checks. What do you mean get in trouble?

    I mean that if you use wrotation and use a validation like this:
     

    // Invalid
    if(ObjectManager.Me.TargetObject.IsDead || !ObjectManager.Me.TargetObject.InCombat)
    {
     return; 
    }

    The bot wont attack any mobs who are not in combat. You need attack them by yourself first before the bot does something.
     

  10. 8 minutes ago, Apexx said:

    It appears to be happening in Wrath of the Lich King. I turned the bot off, disabled all addons, and checked settings.
    When I initiated combat with one unit (surrounded by other units not in aggro range) and killed the mob, If I was to continue
    mashing the ability buttons, it automatically targets the next mob around me despite not being in combat anymore.

    Yeah noticed it, too. Thats why i was asking if its happenm to you too. Didn't know you are playing wotlk, too. Welcome to the club:wub:

  11. 4 minutes ago, lindir91 said:

    Hello everyone!

    I payed 3 days Subscription, 1 questing+grinding profile, and loaded up a fight class for my new alt on wow TBC 2.4.3.

    The question is, why when i click the button START, the bot dont do nothing?

     

    Please guys help me! 

     

    Like always, please post the log file:wub:

  12. 21 minutes ago, Blobby said:

    Is there a way to implement more remote functions for the bot?
    The worst thing is when you see on the remote page that the bot is trying to sell items eg. forever and the only thing you can do is to shutdown the bot.
    Teamviewer is a way yeah, but not the best at work ;)

    You could write a webservice and a plugin as client to control what ever you want to.

  13. 4 minutes ago, Philipe said:

    No open, i tried everthing.:sad:

    Try to knock. Seriously take 1 min and think about your post. No one can help you without any informations.
    What would your answer if i write you something like "I have a error"?

×
×
  • Create New...