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.

IsTaggedByOther

Featured Replies

hi all. as the title says, how do i check if target or object is 'IsTaggedByOther' or if target is being attacked by party/raid member?
Note: target doesn't attack or target at all like Kinetic Bomb.

image.png.d67666c0a6c5c2cf7ee4f0d3817ad408.png

Thank you!

hello, try something like this,

note this is pudo code (Made from my phone).

 public List<WoWUnit> GetUnitsAttackingPartyMembers()
 {
   var partyMembers = Party.GetParty();
   var units = ObjectManager.GetObjectWoWUnit();

   return units
     .Where(x => x.IsAlive && x.IsAttackable &&
            (x.InCombat || x.InCombatFlagOnly) &&
            partyMembers.Any(p => x.TargetObject?.Target == p.Guid))
     .ToList();
 }

 

  • Author
On 9/5/2023 at 5:14 PM, Nax said:

hello, try something like this,

note this is pudo code (Made from my phone).

 public List<WoWUnit> GetUnitsAttackingPartyMembers()
 {
   var partyMembers = Party.GetParty();
   var units = ObjectManager.GetObjectWoWUnit();

   return units
     .Where(x => x.IsAlive && x.IsAttackable &&
            (x.InCombat || x.InCombatFlagOnly) &&
            partyMembers.Any(p => x.TargetObject?.Target == p.Guid))
     .ToList();
 }

 

this checks the units attacking partymembers, it should be the other way around. i want to check if mobId 12345 is being targetted or attacked by party members.

public List<WoWPlayer> GetUnitsAttackingPartyMembers(WoWUnit p)
  {
  	return Party.GetParty().Where(x => x.TargetObject?.Target == p.Guid).ToList();
  }

 

  • Author
On 9/7/2023 at 5:20 AM, Nax said:
public List<WoWPlayer> GetUnitsAttackingPartyMembers(WoWUnit p)
  {
  	return Party.GetParty().Where(x => x.TargetObject?.Target == p.Guid).ToList();
  }

 

Thank you for the help!

May I also ask please how to get my character to face it's target? i am trying to make a plug.in that it will stay in a specific position i set and just face the target and use range skills. i am using wrotation and if i set "Manage character movement...." it moves towards it's target. and if wrotation if off, it doesn't face it's target hence not using any range skills. Thank you.

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.