note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
PlayCrimeReportForPlayer
Description
This function plays a crime report for a player - just like in single-player when CJ commits a crime.
Name | Description |
---|---|
playerid | The ID of the player that will hear the crime report. |
suspectid | The ID of the suspect player whom will be described in the crime report. |
crime | The crime ID, which will be reported as a 10-code (i.e. 10-16 if 16 was passed as the crimeid). |
Returns
true - The function was executed successfully.
false - The function failed to execute. This means the player specified does not exist.
Examples
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/suspect"))
{
PlayCrimeReportForPlayer(playerid, 0, 16);
SendClientMessage(playerid, 0xFFFFFFFF, "ID 0 committed a crime (10-16).");
return 1;
}
return 0;
}
Related Functions
- PlayerPlaySound: Play a sound for a player.