Hello, I wonder what steps in total do I have to do in order to properly add/remove vehicle from autoroom.
By search I found if for example
Number 15 in code represents what? And number 999000 represent price, right?
In database I found only "bus_products" that is related to ordering a products in the biz.
I can spawn the car that's no issue but regarding all the steps into properly replacing cars for another cars without real life badges that's not clear to me.
Thanks in advance for reading.
By search I found if for example
C++:
new List<string>() // elite
{
"Caddy",
"new_vehicle" // example of the vehicle name
} // elite
};
C++:
{ NAPI.Util.GetHashKey("Deathbike3"), new VehicleInfo("Elite Autoroom", 5, 700000, "Deathbike3")},
{ NAPI.Util.GetHashKey("new_vehicle"), new VehicleInfo("Elite Autoroom", 15, 999000, "New Vehicle")} // example of the new vehicle
Number 15 in code represents what? And number 999000 represent price, right?
In database I found only "bus_products" that is related to ordering a products in the biz.
I can spawn the car that's no issue but regarding all the steps into properly replacing cars for another cars without real life badges that's not clear to me.
Thanks in advance for reading.