January 28, 201610 yr i've been trying to improve druid heal profile but my skills aren't enough at this point. Could someone help me with this? it is in C#
January 29, 201610 yr // Get tank WoWPlayer tank = // Get target WoWUnit target = tank.TargetObject; // Select target Interact.InteractGameObject(target.GetBaseAddress); // Do Spell This is a quick and dirty example. Hope it helps.
January 29, 201610 yr 35 minutes ago, betterSister said: otherwise good but now i can't get it to read the name from settings :/ Since when?
January 29, 201610 yr Author var tank = getTanks(); WoWUnit target = ; Interact.InteractGameObject(target.GetBaseAddress); _wrath.Launch(); now i got the tank but then i can't get it to find the target... if i tried to use wowplayer then it threw shit ton of error.
January 29, 201610 yr Hello, look this sample: http://wrobot.eu/forums/topic/1743-how-to-add-players-unit-to-a-list/?do=findComment&comment=8653
January 29, 201610 yr Author it's working now :) Server is just laggy as fuck so it's causing the bot to be little weird
January 29, 201610 yr var tank = getTanks(); WoWUnit target = ; Interact.InteractGameObject(target.GetBaseAddress); _wrath.Launch(); Thats why i said don't use var ^_- // Get all available tanks List<WoWPlayer> tankList = getTanks(); // Get the first tank in the list WoWPlayer tank = tankList.First(); // Get the target of the tank WoWUnit target = tank.TargetObject; // Focus at target Interact.InteractGameObject(target.GetBaseAddress, true); // Use the skill _wrath.Launch(); It is way essiert to read ^_-
Create an account or sign in to comment