PlayCrimeReportForPlayer - not working. - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: PlayCrimeReportForPlayer - not working. (
/showthread.php?tid=102985)
PlayCrimeReportForPlayer - not working. -
Striker_Moe - 18.10.2009
I dont know why, but PlayCrimeReportForPlayer is not working - both ID 0 and me hear nothing. Whats the problem?
Re: PlayCrimeReportForPlayer - not working. -
Mike Garber - 18.10.2009
Post your code,
this Is an example of a WORKING command to execute the function, I made It for test only.
pawn Код:
// --- PlayCrimeReportForPlayerTest----------------
if(!strcmp(cmdtext,"/suspect"))
{
PlayCrimeReportForPlayer(playerid,0,3);
SendClientMessage(playerid,0xFFFFFFFF,"ID 0 is now a suspect.");
return 1;
}