1nutworld -> RE: Cargo Mission question (12/30/2021 9:54:08 PM)
|
quote:
ORIGINAL: BeirutDude quote:
are you familiar with what that coding would be? I am not a programmer, and have made a few attempts at inserting lua coding into practice scenarios....and watching YouTube, but it's nothing I am even close to being proficient at. Sure, it's actually an easy pre-written scripts (which is about my ability as well)... ScenEdit_AddUnit(table) Now the table gets a bit tricky... {type = 'Facility (or Ship, or Submarine, etc)', name = 'Unit_Name_You_Want', heading = 150 (in degrees), dbid = 884 (must get this right for the units looking in the database, might have to play some to get it right as it's tricky), side = 'Side_Name', latitude='12.055086', longitude='-61.743581' (remember the "-" sign for Southern Hemisphere and Western Hemisphere)} These will insert SEAL Teams in Grenada (you can create a " United States " side in a sandbox scenario and run them in the Lua Script Console under Editor... ScenEdit_AddUnit({type = 'Facility', name = 'SEAL TEAM 2', heading = 150, dbid = 884, side = 'United States', latitude='12.055086', longitude='-61.743581'}) ScenEdit_AddUnit({type = 'Facility', name = 'SEAL TEAM 6-A', heading = 090, dbid = 884, side = 'United States', latitude='12.018824', longitude='-61.771758'}) ScenEdit_AddUnit({type = 'Facility', name = 'SEAL TEAM 6-B', heading = 090, dbid = 884, side = 'United States', latitude='12.019561', longitude='-61.771675'}) Hope this helps! Al I appreciate the direction and I will be playing around with some of these things over the next day or two! Thank you, good sir! Scott
|
|
|
|