11.01.2013, 22:17
Instead of this:
Do this:
pawn Код:
VehicleInfo[ID][owner] = PlayerName(playerid);
pawn Код:
format( VehicleInfo[ ID ][ owner ], sizeof( VehicleInfo[ ID ][ owner ] ), "%s", PlayerName( playerid ));
//the spacing is not necessary, it's just how I indent my code to keep it tidy. Personal preference.