final case class TargetingInfoMessage(target_list: List[TargetInfo]) extends PlanetSideGamePacket with Product with Serializable
Dispatched by the server to update status information regarding the listed targets.
This packet is often in response to a client-sent TargetingImplantRequest
packet, when related to the implant's operation.
It can also arrive independent of a formal request and will operate even without the implant.
The enumerated targets report their status as two "progress bars" that can be empty (0f) or filled (1f).
When this packet is received, the client will actually update the current fields associated with those values for the target.
For example, for 0x17
player characters, the values are assigned to their health points and armor points respectively.
Allied player characters will have their "progress bar" visuals updated immediately;
the implant is still necessary to view enemy target progress bars, if they will be visible.
This function can be used to update fields properly.
The value between 0 and 255 (0f to 1f) can be inserted directly into ObjectCreateMessage
creations as it matches the scale.
The target will be killed or destroyed as expected when health is set to zero.
- target_list
a list of targets
- Alphabetic
- By Inheritance
- TargetingInfoMessage
- Product
- Equals
- PlanetSideGamePacket
- PlanetSidePacket
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new TargetingInfoMessage(target_list: List[TargetInfo])
- target_list
a list of targets
Type Members
- type Packet = TargetingInfoMessage
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def encode: Attempt[BitVector]
- Definition Classes
- TargetingInfoMessage → PlanetSidePacket
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def opcode: GamePacketOpcode.Value
- Definition Classes
- TargetingInfoMessage → PlanetSideGamePacket → PlanetSidePacket
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val target_list: List[TargetInfo]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()