10.01.2015, 20:45
Two questions:
1. Do these functions do the same thing? what's the diffrence between them if they have?
2. If someone can give me an example/give me a link for script for a dealership system based on mSelection include like skins mSelection? i didnt find anything...
+REP
1. Do these functions do the same thing? what's the diffrence between them if they have?
Код:
stock IsADTCar(carid) { for(new v = 0; v < sizeof(DTVehicles); v++) { if(carid == DTVehicles[v]) return 1; } return 0; }
Код:
stock IsADTCar(carid) { for(new v = 0; v < sizeof(DTVehicles); v++) if(carid == DTVehicles[v]) return 1; return 0; }
+REP