TRACKING

By Épiméthée

You can detect the general direction of the enemy character nearest to yours. Upon detection, your character will turn in the direction of the nearest enemy.

Customisations

FX: The FX that plays when you're tracking. Command: The command name used to trigger the scan.

For modders

You can capture players triggering this power by setting missionobjvar.Mission_SetVar('ffq_trackingCS', 'functionName') where "functionName" is a user-defined function with the character using the precognitive power as parameter. Ex.:
missionobjvar.Mission_SetVar('ffq_trackingCS', 'senseOminousEvent')
will call
senseOminousEvent(char)
Important: after calling your function, reset missionobjvar.Mission_SetVar('ffq_trackingCS', '') to avoid triggering your function more than once.