Imate za: Automobile,Motore,Plovidbe,Letjelice...izaberite nesto za sebe 😉
Ovako to izgleda:

----------------------------------------------------------------------------------------------------------------------------------------------------------------------
public VehTimer()
{
print(" ");
print(" ");
print("Ownership");
print("---------------");
print(" ");
print(" Prvi dio ownershipa ucitan! (Automobili)");
for(new i=0; i< 300 ; i++)
{
Buylist = CreateVehicle(Buylist,Buylist,Buylist,Buylist,Buylist,-1,-1,-1);
Spectating=-1;
new string;
format(string, sizeof string, ""COL_RED"Vozilo na Prodaji: {FFFFFF}%s\n"COL_RED"Cijena: {FFFFFF}%i$ ", Buylist,Buylist);
CarLabels = Create3DTextLabel(string,0x0984C2FF,Buylist,Buylist,Buylist-0.5,30.0,0);
Attach3DTextLabelToVehicle(CarLabels, Buylist, 0,0,0.5);
SetVehicleNumberPlate(Buylist, "{FF0000}Prodaje se");
}
return 1;
}
public BikeTimer()
{
print(" Drugi dio ownershipa ucitan! (Motori)");
for(new i=0; i< 600 ; i++)
{
BikeBuylist = CreateVehicle(BikeBuylist,BikeBuylist,BikeBuylist,BikeBuylist,BikeBuylist,-1,-1,-1);
bSpectating=-1;
new string;
format(string, sizeof string, ""COL_SVPLAVA"Motor na Prodaji: {FFFFFF}%s\n"COL_SVPLAVA"Cijena: {FFFFFF}%i$ ", BikeBuylist,BikeBuylist);
MotoBikeLabels = Create3DTextLabel(string,0x0984C2FF,BikeBuylist,BikeBuylist,BikeBuylist-0.5,30.0,0);
Attach3DTextLabelToVehicle(MotoBikeLabels, BikeBuylist, 0,0,0.5);
SetVehicleNumberPlate(BikeBuylist, "{FF0000}Prodaje se");
}
return 1;
}
public BoatTimer()
{
print(" Treci dio ownershipa ucitan! (Plovila)");
for(new i=0; i< 600 ; i++)
{
BoatBuylist = CreateVehicle(BoatBuylist,BoatBuylist,BoatBuylist,BoatBuylist,BoatBuylist,-1,-1,-1);
BrodSpectating=-1;
new string;
format(string, sizeof string, ""COL_YELLOW"Plovilo na Prodaji: {FFFFFF}%s\n"COL_YELLOW"Cijena: {FFFFFF}%i$ ", BoatBuylist,BoatBuylist);
PloviloLabels = Create3DTextLabel(string,0x0984C2FF,BoatBuylist,BoatBuylist,BoatBuylist-0.5,30.0,0);
Attach3DTextLabelToVehicle(PloviloLabels, BoatBuylist, 0,0,0.5);
SetVehicleNumberPlate(BoatBuylist, "{FF0000}Prodaje se");
}
return 1;
}
public PlaneTimer()
{
print(" Cetvrti dio ownershipa ucitan! (Letjelice)");
print(" ");
print(" Gamemode je u potpunosti spreman za koristenje!");
print(" Grand Evolution Role Play");
for(new i=0; i< 600 ; i++)
{
planeBuylist = CreateVehicle(planeBuylist,planeBuylist,planeBuylist,planeBuylist,planeBuylist,-1,-1,-1);
planeSpectating=-1;
new string;
format(string, sizeof string, ""COL_ZELENA"Letjelica na Prodaji: {FFFFFF}%s\n"COL_ZELENA"Cijena: {FFFFFF}%i$ ", planeBuylist,planeBuylist);
PlaneLabels = Create3DTextLabel(string,0x0984C2FF,planeBuylist,planeBuylist,planeBuylist-0.5,30.0,0);
Attach3DTextLabelToVehicle(PlaneLabels, planeBuylist, 0,0,0.5);
SetVehicleNumberPlate(planeBuylist, "{FF0000}Prodaje se");
}
return 1;
}
----------------------------------------------------------------------------------------------------------------------------------------------------------------------

