Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Created By DraKiNs
- www.ips-team.blogspot.com
- */
- SetOtherVehicleToPlayer(playerid, vehicleid, color1, color2, respawntime)
- {
- new
- Float:xPos,
- Float:yPos,
- Float:zPos,
- Float:aPos,
- iVeh = GetPlayerVehicleID(playerid);
- GetVehiclePos(iVeh, xPos, yPos, zPos);
- GetVehicleZAngle(iVeh, aPos);
- DestroyVehicle(iVeh);
- return PutPlayerInVehicle(playerid, CreateVehicle(vehicleid, xPos, yPos, zPos, aPos, color1, color2, respawntime), 0), true;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement