The Hero 7,398 Posted March 5, 2017 Share Posted March 5, 2017 (edited) Wrote a little script today to edit train tracks or flight paths (same thing really) of gta III: It also handles camera definitions (train.dat), see my post below. http://aap.papnet.eu/gta/3dsmax/gtatracks.ms Put into 3ds max' startup directory and open the rollout from the maxscript panel. You can add train stations by putting the distances in the edit box and click "add stations" with the track spline selected. When you click "info", the default (hardcoded) train stops are printed to the maxscript listener for copy and paste convenience. The stops are imported as dummies as children of the spline object. On export all objects that are children of that spline are printed as distance values as used by III in the maxscript listener. Have fun. EDIT: Maybe you want to know how to actually edit the train stations: The calls to CTrain::ReadAndInterpretTrackFile at 54F035 (el-train) and 54F06D (subway) have as arguments the number of stations and the station distances on the path measuring from the first path node. float StationDist[3] at 602284 float StationDist_S[4] at 602290 Moving and removing stations is easy. Just change the distance value and (optionally) decrease the number of distances in the function call. Adding stations might need increasing of arrays. Edited March 6, 2017 by Silent 14 Link to post Share on other sites
fastman92 2,617 Posted March 5, 2017 Share Posted March 5, 2017 (edited) Adding stations might need increasing of arrays. http://gtaforums.com/topic/733982-fastman92-limit-adjuster/ ; Max number of track stations (6)#Max number of track stations = 6; Enables track config loader#Enable track config loader = 0 Edited March 5, 2017 by fastman92 Link to post Share on other sites
The Hero 7,398 Posted March 5, 2017 Author Share Posted March 5, 2017 (edited) Updated the script. It now handles train.dat files (http://www.gtamodding.com/wiki/Train.dat). All bounding boxes have a child camera that can be free (aimed at train in game) or targeted, it also has near and far clip values set. To export select all boxes (or the group which is created on import). EDIT: After looking at the code it looks like what the wiki suggests might be far clip seems to be unused actually. And the value would be too low for far clip, looks more like FOV. EDIT2: FOV is fixed at 70, so either unused or something else. Edited March 6, 2017 by The Hero 2 Link to post Share on other sites
dkluin 29,853 Posted March 6, 2017 Share Posted March 6, 2017 Nice work! Link to post Share on other sites
MrGTAmodsgerman 296 Posted March 6, 2017 Share Posted March 6, 2017 So this is for GTA San Andreas? Could you make one for GTA V? Link to post Share on other sites
The Hero 7,398 Posted March 6, 2017 Author Share Posted March 6, 2017 (edited) No and no. (EDIT: but I really should clarify this is for III, the tags suck) Edited March 6, 2017 by The Hero Link to post Share on other sites
Sneed 12,853 Posted March 6, 2017 Share Posted March 6, 2017 Isn't this technically LCS too? Link to post Share on other sites