You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In vanilla Half-Life NPCs default to having a use function that forces their state to the alert state which stops the SCHED_WAIT_TRIGGER schedule. Because this function allowed NPCs to come back from the dead when triggered in the middle of their death schedule it was disabled, but this also broke triggering NPCs that have a targetname.
Not all NPCs can be triggered this way; if they use a different use function (like friendly NPCs having a follower use function) then it won't work anyway.
A proper solution for this is needed to make sure NPCs can be woken from their wait schedule. Otherwise they'll wait 5 seconds to activate their AI properly.
The text was updated successfully, but these errors were encountered:
In vanilla Half-Life NPCs default to having a use function that forces their state to the alert state which stops the
SCHED_WAIT_TRIGGER
schedule. Because this function allowed NPCs to come back from the dead when triggered in the middle of their death schedule it was disabled, but this also broke triggering NPCs that have a targetname.Not all NPCs can be triggered this way; if they use a different use function (like friendly NPCs having a follower use function) then it won't work anyway.
A proper solution for this is needed to make sure NPCs can be woken from their wait schedule. Otherwise they'll wait 5 seconds to activate their AI properly.
The text was updated successfully, but these errors were encountered: