Execute_AddHowling
Description
Activates a howling effect on the entity specified by BaseObject. The howling can optionally target a specific emitter type; if none is given, the default emitter is used.
Note
If S2 contains an invalid HowlingEmitterType value, the script logs an error and returns without activating.
Parameters
| Parameter | Description |
|---|---|
| BaseObject | The entity to activate the howling effect on (Self or Target). |
| S1 | Howling DtId to activate. |
| S2 | (Optional) HowlingEmitterType to target a specific emitter. Uses default if None. |
| F1 | (Optional) Duration or intensity parameter for the howling effect. |
Examples
| Description | BaseObject | Command | S1 | S2 | F1 |
|---|---|---|---|---|---|
| Activate howling on Self with default emitter | Self | AddHowling | Howling_Wolf | 5.0 | |
| Activate howling on Target with default emitter | Target | AddHowling | Howling_Wolf | 5.0 | |
| Activate howling on Self with custom emitter | Self | AddHowling | Howling_Ghost | EmitterType_A | 10.0 |
| Activate howling on Target with custom emitter | Target | AddHowling | Howling_Ghost | EmitterType_A | 10.0 |