24.10.2012, 19:02
(
Последний раз редактировалось Vexus; 11.07.2013 в 09:31.
)
[SOLVED]
Use a vehicle streamer.
You've obviously reached the maximum amount of vehicles that you can spawn without a streamer. Look on the internet for a vehicle streamer, and add it to your script. That should solve the problem for you. |
Use a vehicle streamer.
You've obviously reached the maximum amount of vehicles that you can spawn without a streamer. Look on the internet for a vehicle streamer, and add it to your script. That should solve the problem for you. |
LinkVehicleToInterior(vehicleid, interior id);
LinkVehicleToInterior
Um the vehicle system doesn't work that way. If you reach the 2000 vehicle limit, the server will just stop creating the cars.
But as Yamakei said you must have Код:
LinkVehicleToInterior(vehicleid, interior id); Just search for Код:
LinkVehicleToInterior |
I do have LinkVehicleToInterior yes, but I can almost guarantee I havn't reached my 2,000 vehicle limit. There must be some other problem. It isn't to do with the Virtual World or the Interiors. That's all covered, and working fine.
|
CMD:setvehicleinterior(playerid, params[])
{
LinkVehicleToInterior(GetPlayerVehicleID(playerid), GetPlayerInterior(playerid));
format(string, sizeof(string), "> Vehicle ID: %d's interior set to %d.", GetPlayerVehicleID(playerid), GetPlayerInterior(playerid));
SendClientMessage(playerid, 0xFFFFFFFF, string);
return 1;
}