08.06.2009, 09:41
Some of you may remember I once had a tool called kVehicles, or kc's vehicle organizer. Now, that went down forever ago.
Due to a mix of demand for it, and me being bored, its back, under its new name - convertFFS Vehicles!
Now, its pretty self explanatory, but let me explain some of the stuff you can do with the options bar...
- By changing any of the colour fields blank, it will leave it alone - the colour will come out as it came in.
- The array field is optional. But can be very useful. whatever you enter into that box will be assumed to be an array...
e.g. if you enter in "hai" then your vehicles will come out as hai[numhere] = vehicle(stuff,here);
- The indentation drop down changes whether the parameters will be indented. e.g. vehicle(1, 2, 3, 4); setting it to no will remove any indentation on the params. e.g. vehicle(1,2,3,4);
- The comments drop down is pretty self explanatory. The outcome of the options would be...
vehicle(411,2,3,4); //hai -> "Replace with vehicle name" -> vehicle(411,2,3,4); //Infernus
vehicle(411,2,3,4); //hai -> "Merge current with vehicle name" -> vehicle(411,2,3,4); //hai - Infernus
vehicle(411,2,3,4); //hai -> "Remove any comments" -> vehicle(411,2,3,4);
vehicle(411,2,3,4); //hai -> "Leave comments alone" -> vehicle(411,2,3,4); //hai
Okay? Ok, good. Have fun with it!
_________________________________________________
WHAT DOES THIS DO?!??!
Ok, say you have some vehicles. like these...
convertFFS Vehicles! with a quick change of the settings would turn that code into...
You can see that they have all been named, and the colors have changed. And with the settings you can bulk change vehicles in to all sorts of combinations.
Got it? ok, good! just post if you have any further questions
Due to a mix of demand for it, and me being bored, its back, under its new name - convertFFS Vehicles!
Now, its pretty self explanatory, but let me explain some of the stuff you can do with the options bar...
- By changing any of the colour fields blank, it will leave it alone - the colour will come out as it came in.
- The array field is optional. But can be very useful. whatever you enter into that box will be assumed to be an array...
e.g. if you enter in "hai" then your vehicles will come out as hai[numhere] = vehicle(stuff,here);
- The indentation drop down changes whether the parameters will be indented. e.g. vehicle(1, 2, 3, 4); setting it to no will remove any indentation on the params. e.g. vehicle(1,2,3,4);
- The comments drop down is pretty self explanatory. The outcome of the options would be...
vehicle(411,2,3,4); //hai -> "Replace with vehicle name" -> vehicle(411,2,3,4); //Infernus
vehicle(411,2,3,4); //hai -> "Merge current with vehicle name" -> vehicle(411,2,3,4); //hai - Infernus
vehicle(411,2,3,4); //hai -> "Remove any comments" -> vehicle(411,2,3,4);
vehicle(411,2,3,4); //hai -> "Leave comments alone" -> vehicle(411,2,3,4); //hai
Okay? Ok, good. Have fun with it!
_________________________________________________
WHAT DOES THIS DO?!??!
Ok, say you have some vehicles. like these...
pawn Код:
AddStaticVehicleEx(468,806.189,845.013,9.330,112.0,32,5, 10);
AddStaticVehicleEx(468,806.639,843.937,9.330,112.0,53,5, 10);
AddStaticVehicleEx(468,807.064,843.136,9.330,112.0,12,4, 10);
AddStaticVehicleEx(468,807.640,841.985,9.330,112.0,32,3, 10);
AddStaticVehicleEx(468,808.166,841.109,9.330,112.0,43,4, 10);
AddStaticVehicleEx(468,808.716,840.159,9.330,112.0,12,5, 10);
AddStaticVehicleEx(468,809.267,839.108,9.330,112.0,21,1, 10);
AddStaticVehicleEx(468,808.916,837.958,9.330,112.0,32,2, 10);
pawn Код:
AddStaticVehicleEx(468, 806.189, 845.013, 9.330, 112.0, -1, -1, 10); //Sanchez
AddStaticVehicleEx(468, 806.639, 843.937, 9.330, 112.0, -1, -1, 10); //Sanchez
AddStaticVehicleEx(468, 807.064, 843.136, 9.330, 112.0, -1, -1, 10); //Sanchez
AddStaticVehicleEx(468, 807.640, 841.985, 9.330, 112.0, -1, -1, 10); //Sanchez
AddStaticVehicleEx(468, 808.166, 841.109, 9.330, 112.0, -1, -1, 10); //Sanchez
AddStaticVehicleEx(468, 808.716, 840.159, 9.330, 112.0, -1, -1, 10); //Sanchez
AddStaticVehicleEx(468, 809.267, 839.108, 9.330, 112.0, -1, -1, 10); //Sanchez
AddStaticVehicleEx(468, 808.916, 837.958, 9.330, 112.0, -1, -1, 10); //Sanchez
//8 vehicles processed. 1 unique models!
Got it? ok, good! just post if you have any further questions