Код:
PutPlayerInVehicle(playerid, 411, 0);
you here put player in a vehicle which its id is 411, not it's model.
function's structure:
Код:
PuPlayerInVehicle(playerid, vehicleid, seatid)
i guess you here meant 411 as a vehicle model id, but it's the vehicle id where to put the player, defined by AddStaticVehicle or CreateVehicle, so you need to create the vehicle, and assign a variable for the function's return value, and use that variable that holds the vehicleid in PutPlayerInVehicle, like this
Код:
new veh;
veh = CreateVehicle(411, // the rest of params);
PutPlayerInVehicle(playerid, veh, 0);