Category: Objects/Commands
Since engine version: 4.6.5.0 CP (extended in 4.9.1.0 GWE and 4.9.5.0 CE)
| iBaseMode | Name | Description | Failure messages and CallFailed calls | Next command |
|---|---|---|---|---|
| 0 | C4CMD_SilentSub | Silent command | Only if this is the last command | Fails |
| 3 | C4CMD_Sub | Command | If the next command has no retries left or this is the last command | Fails |
| 2 | C4CMD_SilentBase | Silent base command | Never | Does not fail |
| 1 | C4CMD_Base | Base command | Always | Does not fail |
Timer:
var obj = FindObject(0, -20, -40, 40, 40, OCF_CrewMember;
if(obj)
if(GetComDir(obj) == COMD_Right)
AddCommand(obj, "Jump");
return();