Everything posted by iMod
- How good is WRobot?
-
Out-of-party mode (power leveling)?
Source: https://dl.dropboxusercontent.com/u/108189699/iSupportSource.zip
-
Out-of-party mode (power leveling)?
If i'm at home in around a week i can give you the source, sure.
-
Multiple Wrobot
You can use the bot as often you want from the same IP, doesn't matter what kind of license you use.
-
Lifetime kaufen
Also du kannst so viele Sessions starten wie du möchtes, so lange alles von der selben IP aus gemacht wird.
- Autoequip
-
Sind hier irgendwelche Gemeinschaftsprojekte am laufen?
Hi, ich wollte mal fragen ob hier Gemeinschaftsprojekte am laufen sind und eventuell noch Leute suchen. Interessant wären fuer mich Dinge wie: - Plugins - BotBase - Quests - Generatoren Ich lasse mich aber auch gerne fuer andere Dinge begeistern.
-
Out-of-party mode (power leveling)?
i updated some parts of the plugin. tested with melee and caster as supporter without any problems. Mount support implemented. make sure you disable the movement of wrotation and set the spelldistance!
-
Out-of-party mode (power leveling)?
Yeah i know has something todo with the range. i need to change the movement routine a bit. Thats why i said its an alpha version i made it in around 15 min. ;)
-
Out-of-party mode (power leveling)?
It depens at your leveling style. if you use it with more than one supporter it should be possible but never tried. I just used it for helping my low toon at quests.
-
Fight class editor (TBC)
Jemand der mal gebottet hat erkennt so gut wie jeden bot ;) es gibt dinge die kann man einfach nicht "menschlich" erscheinen lassen. Was das angreifen betrifft, das ist alles eine Sache der Einstellungen.
-
Fight class editor (TBC)
Hast du bei den spells "Friendly" = true gesetzt? Da ist irgendwo ein Flag was aussagt ob der Heal halt ein support spell ist
-
Out-of-party mode (power leveling)?
Well we can create a teamviewer session and i can compile it right infront of your eyes.
-
Out-of-party mode (power leveling)?
Maybe its something you are looking for... it is just an alpha version ;) https://dl.dropboxusercontent.com/u/108189699/iSupport.zip Put the dll into the Plugin folder and use the settings to set it up. (Follow range should be somethig around 30 as caster und maybe 5-10 for a melle) SpellDistance is important now to set Use WRotation and set "Manage character movement" to false. I just test it with a boomkin(supporter) and a low melee It has no mount support atm but this will come later. Feedback and bugs are wellcome Greez iMod
- Automation
-
Wrobot refuses to attack mobs on timeless island
Are you sure couz i bet its possible to write a empty rotation and the bot will walk but not fight ;) I'm just asking couz i wrote such routine for some tests paths.
-
[Wotlk][Source] GetSpecialization
Since there is no method to get the specialization of the character in wotlk i took another way to find it out. It wont be 100% accurate if you use mixed talends but for the most spec's it should work. /// <summary> /// Returns the talent tree with the most invested points /// </summary> /// <returns>Returns the tree index</returns> public static int GetSpecialization() { KeyValuePair<int, int> highestPointTree = new KeyValuePair<int, int>(0, 0); // Process talent trees for (int i = 1; i <= 3; i++) { // Get current talent points int treePointValue = Lua.LuaDoString<int>($"local _, _, talentPoints = GetTalentTabInfo({i}); return talentPoints;"); // Bigger than old value? if (treePointValue > highestPointTree.Value) { // Set new value highestPointTree = new KeyValuePair<int, int>(i, treePointValue); } } // Return return highestPointTree.Key; } This will give you the the talent tree with the most invested points. Now you just need to define each talent tree based on the wow class For example DK: if(ObjectManager.Me.WowClass != WoWClass.DeathKnight) { throw new NotSupportedException("You need to be a DK to use this rotation."); } // Get the main talent tree int mainTalent = GetSpecialization(); // Choose the right rotation switch (mainTalent) { case 1: { // Set rotation this._rotation = new Blood(); Logging.WriteDebug("Choosing Blood rotation."); break; } case 2: { // Set rotation this._rotation = new Frost(); Logging.WriteDebug("Choosing Frost rotation."); break; } case 3: { // Set rotation this._rotation = new Unholy(); Logging.WriteDebug("Choosing Unholy rotation."); break; } default: { this._rotation = null; throw new NotSupportedException("Your spec is not supported."); } } This is just a small and fast coded example but hope it helps some ppl. Greez iMod
-
Wrobot refuses to attack mobs on timeless island
Maybe a stupid question but you selected the right fight routine for your character?
-
Question before purchase regarding IP addresses
One IP per time. You can use the bot from different IP's as far you don't use the bot at the same time with different IP's.
-
how to create a player object from player name
It checks if the object you got is valid to interact with. Yes you can call protected lua functions.
-
how to create a player object from player name
Get player object by name: WoWPlayer player = ObjectManager.GetObjectWoWPlayer().Where(p => p.IsValid && p.Name == "PlayerName").FirstOrDefault(); Target player: Interact.InteractGameObject(player.GetBaseAddress, true); Cast spell at the specified target: string targetName = "blubb"; int spellID = 999; Lua.LuaDoString($"CastSpellByID({spellID}, \"{targetName}\")"); Hope it helps.
-
wie grinder profile herstellen?
Ich kann dir anbieten das wir mal eine teamviewer session machen die tage. allerdings kann ich dir noch nicht zu 100% zusagen fuer morgen zB da ich variable arbeitszeiten habe. spätestens am sonntag sollte ich aber zeit haben. ich schreib dir dann einfach eine private message.
-
wie grinder profile herstellen?
Bin ich mir nicht sicher, weil ich das noch nie gemacht habe aber hier gibt es ein Beispiel: http://wrobot.eu/forums/topic/1925-sample-dungeon-profile/
- [WOTLK] How to get the tank
- [WOTLK] How to get the tank