Cars Invisible, but there. (RP Server)
#1

[SOLVED]
Reply
#2

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.
Reply
#3

Quote:
Originally Posted by judothijs
Посмотреть сообщение
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.
Any recommendations as to which streamer to use? Or is there only one main one that people would use?

~Vexus
Reply
#4

What about the Virtual World && Interior ID?
Reply
#5

Quote:
Originally Posted by judothijs
Посмотреть сообщение
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.
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);
Somewhere in your code for adding vehicles.
Just search for
Код:
LinkVehicleToInterior
In your code and tell us what you come up with.
Reply
#6

Quote:
Originally Posted by nickdodd25
Посмотреть сообщение
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);
Somewhere in your code for adding vehicles.
Just search for
Код:
LinkVehicleToInterior
In your code and tell us what you come up with.
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.
Reply
#7

Quote:
Originally Posted by Vexus
Посмотреть сообщение
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.
As another poster said, even when you reach the limit, the vehicles won't be invisible but will just not spawn.
This problem is mostly caused by interior mess ups, create an easy command like:
pawn Код:
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;
}
Sorry for not indenting but I created it here in the reply box and TAB doesn't work here as it's a webpage.

This ( ZCMD ) command will probably fix your issue OR will give you 100% assurance that this isn't the cause.

Jesse
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)