27/04/2024 05:51
(Esta mensagem foi modificada pela última vez a: 28/04/2024 00:29 por xbruno1000x.)
Como coletar no spawn do veículo, muda automaticamente de forma aleatória (Pickup)
IMG
https://ibb.co/ryJ3GCP
Video, talvez 2 dias expirado D:
https://streamable.com/nsomqr
Os veículos não mudam automaticamente? sem OnFoot?, acho que funciona quando o OnFoot é trocado no veículo, tem como sem OnFoot?
Código:
new trocarVeh;
new RandomVeh[] = {411, 400, 402, 404, 415, 418, 422, 424, 434, 444, 451, 457, 482, 495, 508, 514, 535, 541, 560, 573, 601, 571, 562};
OnGamemodeInit
trocarVeh = CreatePickup(12957, 1, -1461.8420,-523.9481,14.1776, 0);
OnPlayerPickUpPickup
if (pickupid == trocarVeh)
{
new vehicleId = AddStaticVehicle(RandomVeh[random(sizeof(RandomVeh))], -1449.7061,-526.0865,14.1719, 1, 1, 0);
PutPlayerInVehicle(playerid, vehicleId, 0);
}
https://ibb.co/ryJ3GCP
Video, talvez 2 dias expirado D:
https://streamable.com/nsomqr
Os veículos não mudam automaticamente? sem OnFoot?, acho que funciona quando o OnFoot é trocado no veículo, tem como sem OnFoot?