Difference between revisions of "Osiris/Shared/PROC Follow"

From Divinity Engine Wiki
Jump to: navigation, search
(Osiris Helper Mod APIs)
 
m
Line 2: Line 2:
 
* PROC '''ProcCharacterFollowCharacter'''(''(CHARACTERGUID)'''''_Char''',''''(CHARACTERGUID)'''''_Target''',(INTEGER)'''''_Running''')
 
* PROC '''ProcCharacterFollowCharacter'''(''(CHARACTERGUID)'''''_Char''',''''(CHARACTERGUID)'''''_Target''',(INTEGER)'''''_Running''')
 
===== Description =====
 
===== Description =====
Same as the Osiris call '''CharacterFollowCharacter''', except that it also first automatically cancels '''_Char''' from following if it was already following someone else. Additionally, it stops the following behaviour when '''_Char''' gets involved in combat and resumes it afterwards.  Stop following through '''ProcCharacterStopFollow'''.
+
Same as the Osiris call '''CharacterFollowCharacter''', except that it also first automatically cancels '''_Char''' from following if it was already following someone else. Additionally, it stops the following behaviour when '''_Char''' gets involved in combat and resumes it afterwards.  Stop following through [[Osiris/Shared/ProcCharacterStopFollow|ProcCharacterStopFollow]].
 
===== Return Values =====
 
===== Return Values =====
 
* /
 
* /
Line 8: Line 8:
 
* /
 
* /
 
===== See Also =====
 
===== See Also =====
* Helper [[Osiris/Shared/ProcCharacterStopFollow]]
+
* Helper [[Osiris/Shared/ProcCharacterStopFollow|ProcCharacterStopFollow]]
 
   
 
   
 
[[Category:Osiris Shared Mod Helpers]]
 
[[Category:Osiris Shared Mod Helpers]]

Revision as of 23:08, 25 August 2017

Full Definition(s)
  • PROC ProcCharacterFollowCharacter((CHARACTERGUID)_Char,'(CHARACTERGUID)_Target,(INTEGER)_Running)
Description

Same as the Osiris call CharacterFollowCharacter, except that it also first automatically cancels _Char from following if it was already following someone else. Additionally, it stops the following behaviour when _Char gets involved in combat and resumes it afterwards. Stop following through ProcCharacterStopFollow.

Return Values
  • /
Notes
  • /
See Also