05.06.2012, 10:24
(
Последний раз редактировалось carbonzero; 05.06.2012 в 11:07.
)
I have a problem with Showplayermarkers
I added "ShowPlayerMarkers(2);" and (1) but on mini-map don't apear players
I use Gm Raven's RolePlay 4.3
Код:
public OnGameModeInit() // Do not add vehicles Above the next lines. - CuervO
{
UsePlayerPedAnims(1);
ShowPlayerMarkers(1);
LoadCar();
new string2[64];
for(new h = 1; h < sizeof(CarInfo); h++)
{
format(string2, sizeof(string2), "LARP/Vehicles/%d.ini",h);
if(dini_Exists(string2))
{
ownedcar[h] = AddStaticVehicleEx(CarInfo[h][cModel],CarInfo[h][cLocationx],CarInfo[h][cLocationy],CarInfo[h][cLocationz]+1.0,CarInfo[h][cAngle],CarInfo[h][cColorOne],CarInfo[h][cColorTwo],60000);
if(CarInfo[h][cPaintjob] != 999)
{
ChangeVehiclePaintjob(h, CarInfo[h][cPaintjob]);
}
SetVehicleVirtualWorld(h, CarInfo[h][cVirWorld]);
SetVehicleModifications(h);
}
I use Gm Raven's RolePlay 4.3


(