dazholmes 4 Posted October 25, 2015 Nice i added the trailer into mission and added this to it cursortarget animate ["HideCargo",-1]; but it's not showing cargo on it? also can you make it so you can detach trailer without having to jump out the truck ty Share this post Link to post Share on other sites
dscha 147 Posted October 25, 2015 Detaching: change "CursorTarget" to "vehicle player" maybe? Do you look at the Trailer, when executing the command?! +If you added it to the init of the Trailer -> exchange "CursorTarget" with "this" Share this post Link to post Share on other sites
dazholmes 4 Posted October 25, 2015 Detaching: change "CursorTarget" to "vehicle player" maybe? Do you look at the Trailer, when executing the command?! +If you added it to the init of the Trailer -> exchange "CursorTarget" with "this" Hey thanks that worked, How did you get other things on the trailer like vehicles etc? did you get my pm? Also is there anyway to make these rise up? cus i cant even cross bridges cus it hits the floor and detaches the trailer :/ Share this post Link to post Share on other sites
MrSanchez 243 Posted October 25, 2015 Hey thanks that worked, How did you get other things on the trailer like vehicles etc? did you get my pm? Also is there anyway to make these rise up? cus i cant even cross bridges cus it hits the floor and detaches the trailer :/ Go to the trailer and use the scroll menu? Works for me. Share this post Link to post Share on other sites
mdtorch 39 Posted October 26, 2015 This mod works like a charm. Very nice work! 2 Questions: 1. Do you work on stuff thats less.... "civilian"... like heavy military transport trailers and towing machines to transport tanks? The last RHS update gave us a russian "kinda amphibic" vehicle which can transport small vehicles. Could work that way? 2. Would you consider adding a script version of your towing system so we can add towing and towable units in missions? I guess one would have to determine the right locationpoints to attach the ropes, but I'm sure I'm not the only one who would do that. Like I said, I would love to make jets towable to taxi them around the airfield with a towing tractor (Vanilla planes or RHS ones, towing machine provided by CUP ARMA II or Airfield logistics mod) or tow the C-RAM on a trailer (Which is static atm, but can be dragged around with ropes... tried it but never looked as good as in your mod). Wouldn't be a problem someone would have to sit in the plane during the taxidrive to trick that magical handbrake... In fact I think it would be kinda realistic Share this post Link to post Share on other sites
dscha 147 Posted October 26, 2015 1. Since i am currently working on a new Mod i won't create any new Trailer Models, for now. Thats why i released the Source Files, so anyone can lay a hand on it, if he want's to (I just heard, that 2 People are already working on new a Trailer) 2. The only way, to make that possible is to create a "invisble" Trailer, where the Jet/Car/Tank/Player/House will be attached to. Otherwise -> Uberhandbrake gets involved and nothing is moving or is bugging around like a Rat on Cocain. 1 Share this post Link to post Share on other sites
mdtorch 39 Posted October 26, 2015 1. Since i am currently working on a new Mod i won't create any new Trailer Models, for now. Thats why i released the Source Files, so anyone can lay a hand on it, if he want's to (I just heard, that 2 People are already working on new a Trailer)2. The only way, to make that possible is to create a "invisble" Trailer, where the Jet/Car/Tank/Player/House will be attached to. Otherwise -> Uberhandbrake gets involved and nothing is moving or is bugging around like a Rat on Cocain. Even if someones sitting in the jet when its towed? Share this post Link to post Share on other sites
dscha 147 Posted October 27, 2015 erm, no idea. Never tested it. Share this post Link to post Share on other sites
Kyon 16 Posted December 16, 2015 Sort of... Old topic but I have a question. Possible to make the trailer "Detachable"? Share this post Link to post Share on other sites
dscha 147 Posted December 17, 2015 ?? You can attach and detach the Trailer oO Share this post Link to post Share on other sites
jaac 0 Posted February 8, 2016 Thanks for your marvelous work :D I tried and loved... But I have a problem, how to place a car on it? (as the video) I am unable to... :huh: Share this post Link to post Share on other sites
dscha 147 Posted February 9, 2016 That was from a previous (and very old) test-version (done with a simple "attachTo"). Share this post Link to post Share on other sites
jaac 0 Posted February 9, 2016 Ok Thanks Is it possible to integrate it into the new version mod? How to use "attachTo" here? ;) Share this post Link to post Share on other sites
dscha 147 Posted February 9, 2016 https://community.bistudio.com/wiki/attachTo Have fun Share this post Link to post Share on other sites
jaac 0 Posted February 14, 2016 Yes.... I have managed "attachTo" :D it works flawlessly in editor. Now, I would like to integrate in my car addon. I tried several solutions, but it does not work. The "hint" works well, but no car on truck... :( config vehicles: class UserActions { class Putcar { displayName ="Put car on truck"; position = "doplnovani"; radius = 5; onlyForplayer= true; condition = "alive this"; statement = "[this] execvm ""\My_Addon\scripts\Putveh.sqf"";"; }; }; Script: _Mycar = _this select 0; _D41_Trailer_A = _this select 1; _Mycar attachTo [_D41_Trailer_A, [0, 0, 3.15] ]; hint "Car is on truck"; player removeaction Putcar; If you know anything about script, I gladly accept help. :P Share this post Link to post Share on other sites
dscha 147 Posted February 15, 2016 Where did he get the Information of "_MyCar" and "_D41_Trailer_A"? Share this post Link to post Share on other sites
jaac 0 Posted February 16, 2016 MyCar is name of my Addon Script is in my addon. D41_Trailer_A is name of your trailer. See in your mlod addon. This is not the right name? Share this post Link to post Share on other sites
cerroc 14 Posted February 24, 2016 if((typeOf D41_AEXEC_Zugmaschine) isEqualTo "D41_Ext_Civ_Kamaz_Zugmaschine")then { ropeCreate [ D41_AEXEC_Anhaenger, "attachPoint", D41_AEXEC_Zugmaschine, "RAP_U", 0.5]; //attachPoint + RAP_X = Memory Points im Model hinterlegt - Schau dir die MLOD Dateien an, wenn Du die genaue Position benötigen solltest ropeCreate [ D41_AEXEC_Anhaenger, "attachPoint", D41_AEXEC_Zugmaschine, "RAP_O", 0.5]; //attachPoint + RAP_X = Memory Points, created in the Model itself - Check the MLOD Files, if you wan't to see the exact positions ropeCreate [D41_AEXEC_Anhaenger, "attachPoint", D41_AEXEC_Zugmaschine, "RAP_L", 0.5]; ropeCreate [D41_AEXEC_Anhaenger, "attachPoint", D41_AEXEC_Zugmaschine, "RAP_R", 0.5]; try this Share this post Link to post Share on other sites
cerroc 14 Posted February 24, 2016 Where did he get the Information of "_MyCar" and "_D41_Trailer_A"? if((typeOf D41_AEXEC_Zugmaschine) isEqualTo "D41_Ext_Civ_Kamaz_Zugmaschine")then { ropeCreate [ D41_AEXEC_Anhaenger, "attachPoint", D41_AEXEC_Zugmaschine, "RAP_U", 0.5]; //attachPoint + RAP_X = Memory Points im Model hinterlegt - Schau dir die MLOD Dateien an, wenn Du die genaue Position benötigen solltest ropeCreate [ D41_AEXEC_Anhaenger, "attachPoint", D41_AEXEC_Zugmaschine, "RAP_O", 0.5]; //attachPoint + RAP_X = Memory Points, created in the Model itself - Check the MLOD Files, if you wan't to see the exact positions ropeCreate [D41_AEXEC_Anhaenger, "attachPoint", D41_AEXEC_Zugmaschine, "RAP_L", 0.5]; ropeCreate [D41_AEXEC_Anhaenger, "attachPoint", D41_AEXEC_Zugmaschine, "RAP_R", 0.5]; try this Share this post Link to post Share on other sites
cerroc 14 Posted May 19, 2016 https://vk.com/video-66381762_456239018 2 Share this post Link to post Share on other sites
cerroc 14 Posted May 19, 2016 https://vk.com/video-66381762_456239018 1 Share this post Link to post Share on other sites
escforreality 35 Posted May 19, 2016 Very cool videos! I must try this out. Share this post Link to post Share on other sites
ice_age0815 37 Posted May 19, 2016 https://vk.com/video-66381762_456239018 nice work looks damn good Share this post Link to post Share on other sites
dscha 147 Posted May 20, 2016 https://vk.com/video-66381762_456239018 Little note: If you add more MASS (in the GeoLod) to the Trailer, so the swinging will reduce alot! Still: Great work ;) Share this post Link to post Share on other sites