Everything posted by iMod
- Bot startet einfach nicht
-
Unable to update WRobot
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.
-
kann man 2 bots auf einem pc laufen lassen?
Welche Subscription hast du? Bekommst du eine Fehlermeldung?
-
Private server license
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.
-
Private server license
Yes you can. 1 IP at the same time means that you are not able to give your friend the key and both of you can use it at the SAME time because of different IP's.
-
Path finding using flying mount
Error
-
Ok I have tried with no success
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.
-
AH Bot settings
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.
-
Ok I have tried with no success
// 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".
- Archäologie funktioniert nicht
-
[Solved] How to detect debuff Type ?
This is a C# condition. If you want to use raw lua just take the lua command (the string part) and put it into your lua condition. EDIT: Nvm reapler still wrote that it is c# code
-
WRobot Targeting Units
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 Protection.cs
-
WRobot Targeting Units
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; }
-
WRobot Targeting Units
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.
-
WRobot Targeting Units
Make sure that your spell validation contains Me.HasTarget && !Me.TargetObject.IsDead Well if you are validating InCombat you will get in trouble if you want that the bot attack enemies who are not in fight.
-
WRobot Targeting Units
Well normaly you just need to make sure that you really stop using skills after the target is dead.
-
WRobot Targeting Units
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
-
WRobot Targeting Units
What kind of botbase are you using? The target engine is in the product so its different.
-
How to cast a area Spell? Like Starfall
You are welcome.
-
NEED HELP PLZ!
Like Droidz always said:
-
NEED HELP PLZ!
Like always, please post the log file
-
How to cast a area Spell? Like Starfall
Just set the spell setting "AOE Spell = true"
-
How to cast a area Spell? Like Starfall
XML or C#?
-
More Remote functions
You could write a webservice and a plugin as client to control what ever you want to.
-
No open
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"?