SET NEXT DESIRED MOVE STATE
Jump to navigation
Jump to search
Number of parameters: 1 | ||
---|---|---|
Parameter # | Type | Description |
1. | integer | Move type |
Return value: | ||
Type | Description | |
None |
This native actually need only for setting up move state when actor enters in vehicle (as usually in original .sco).
You must use it BEFORE TASK_ENTER_CAR_AS_PASSENGER.
Example:
SET_NEXT_DESIRED_MOVE_STATE(2);
TASK_ENTER_CAR_AS_PASSENGER(Actor, Vehicle, -1, 0);
It will make your actor enter as passenger in vehicle with move state 2 (normal walking)