yep. thats the 1st clue i needed. it says that you need a certain skillscore (as reporter) to get into newcar 83 to 87 (thats not a car-ID, its more like an array where the vehicles are stored in, i guess its the 83th vehicle created in the gamemode).
so, the news-chopper is THE hint: its vehicleID is 488, so search for that. the lines for creating all vehicles should be at least 87 lines in size, so its not difficult to find.
team 9 is the reporter-faction which is stored in Playerinfo[][pMember], you could search for both: "488" (creating the chopper) and "pMember" / "PLeader". this will lead you to the lines you need/want to modify your teams.
if you only want to get rid of the ejection part and leave the messages intact (for testing), only the
Код:
RemovePlayerFromVehicle(playerid);
needs to be remarked,
Код:
// RemovePlayerFromVehicle(playerid);
two times, of course.