Prevents a character from appearing as the driver of the player's vehicles in a level
Scope
This command should be called in a level's load script.
Syntax
MFK
Lua
SuppressDriver( character );Game.SuppressDriver( character )- character: The name of the character who will be unavailable as a driver in the level.
Examples
MFK
Lua
// Used in Level 1 to prevent Homer appearing in his cars since he's the player character
SuppressDriver("homer");-- Used in Level 1 to prevent Homer appearing in his cars since he's the player character
Game.SuppressDriver("homer")Notes
There is a limit of 32 suppressed drivers in a level.