Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Targeting tanks target and casting spells on it

Featured Replies

            // 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.

  • 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. 

EAA1H7G.png

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

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.