QuickBreakdown Posted August 2, 2007 Share Posted August 2, 2007 Hey guys... This is my code: on *:SIGNAL:mta.command: { if ($3 == !report) { mta.text $1 Police Officer $mta.nick($1,$2) is chasing $4- ! The suspect was last seen at: $iif($5, $5-,Not Reported.) } else { mta.pm $1 $2 No nickname specified! } } But now i get this: Police Officer Recon is chasing Wizkid ! Wang Cars The suspect was last seen at: Wang Cars But i want it like this: Pollice Officer Recon is Chasing Wizkid ! The Suspect was last seen at: Wang Cars Can somebody fix this code for me? Im making it for MTA:SA Race Version Thanks!!! Link to comment
lil Toady Posted August 2, 2007 Share Posted August 2, 2007 on *:SIGNAL:mta.command: { if ($3 == !report) { mta.text $1 Police Officer $mta.nick($1,$2) is chasing $4 $+ ! The suspect was last seen at: $iif($5, $5-,Not Reported.) } else { mta.pm $1 $2 No nickname specified! } } Link to comment
Recommended Posts