Difference between revisions of "Osiris/API/CharacterBlockedBy"

From Divinity Engine Wiki
Jump to: navigation, search
m
m
Line 11: Line 11:
 
===== See Also =====
 
===== See Also =====
 
* [[Osiris/API/AttackedByObject|AttackedByObject]]
 
* [[Osiris/API/AttackedByObject|AttackedByObject]]
* [[Osiris/API/CharacterBlockedBy|CharacterBlockedBy]]
 
 
* [[Osiris/API/CharacterCriticalHitBy|CharacterCriticalHitBy]]
 
* [[Osiris/API/CharacterCriticalHitBy|CharacterCriticalHitBy]]
 
* [[Osiris/API/CharacterKilledByCharacter|CharacterKilledByCharacter]]  
 
* [[Osiris/API/CharacterKilledByCharacter|CharacterKilledByCharacter]]  
 +
* [[Osiris/API/CharacterKilledBy|CharacterKilledBy]]
 
* [[Osiris/API/CharacterMissedBy|CharacterMissedBy]]
 
* [[Osiris/API/CharacterMissedBy|CharacterMissedBy]]
* [[Osiris/API/CharacterKilledBy|CharacterKilledBy]]
 
 
   
 
   
 
[[Category:Osiris Events|CharacterBlockedBy]]
 
[[Category:Osiris Events|CharacterBlockedBy]]

Revision as of 14:55, 25 February 2018

Full Definition(s)
  • event CharacterBlockedBy((CHARACTERGUID)_Defender, (CHARACTERGUID)_AttackerOwner, (CHARACTERGUID)_Attacker)
Description

Thrown when a character blocks an attack from another character.

Parameters
  • _Defender: The character that received/defended the attack.
  • _Attacker: The character that attacked the _Defender.
  • _AttackerOwner: The character that owns the _Attacker character.
Notes
  • _AttackerOwner can be the same character as _Attacker; _AttackOwner will be different in the case of summoned characters.
See Also