SetPlayerReportCrime - Game
Member of: Game Script
Set the state of the player as an actor who commits crimes
SyntaxEdit
Function SetPlayerReportCrime(bool abReportCrime = true) native global
ParametersEdit
- abReportCrime : Specifies whether to turn the crime reporting flag on the player on or off
- Default: True
Return ValueEdit
None
ExamplesEdit
; Turn on the player getting crimes reported.
Game.SetPlayerReportCrime()
; Turn off the player getting crimes reported
Game.SetPlayerReportCrime(false)