commit 75b8614a4430c40eda2bcc7fcdb19a5e6a842416 Author: Robert Fritzen Date: Thu Jun 19 13:43:37 2014 -0500 Initial Commit diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..412eeda --- /dev/null +++ b/.gitattributes @@ -0,0 +1,22 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# Custom for Visual Studio +*.cs diff=csharp +*.sln merge=union +*.csproj merge=union +*.vbproj merge=union +*.fsproj merge=union +*.dbproj merge=union + +# Standard to msysgit +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6dae747 --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msm +*.msp + +# ========================= +# Operating System Files +# ========================= + +# OSX +# ========================= + +.DS_Store +.AppleDouble +.LSOverride + +# Icon must ends with two \r. +Icon + +# Thumbnails +._* + +# Files that might appear on external disk +.Spotlight-V100 +.Trashes diff --git a/Quiz/Lib/Images/basicbasicofbasicnessmath.png b/Quiz/Lib/Images/basicbasicofbasicnessmath.png new file mode 100644 index 0000000..eda6550 Binary files /dev/null and b/Quiz/Lib/Images/basicbasicofbasicnessmath.png differ diff --git a/Quiz/Lib/Images/deriv_1.png b/Quiz/Lib/Images/deriv_1.png new file mode 100644 index 0000000..657bfbb Binary files /dev/null and b/Quiz/Lib/Images/deriv_1.png differ diff --git a/Quiz/Lib/Images/deriv_2.png b/Quiz/Lib/Images/deriv_2.png new file mode 100644 index 0000000..b7721e5 Binary files /dev/null and b/Quiz/Lib/Images/deriv_2.png differ diff --git a/Quiz/Lib/Images/deriv_3.png b/Quiz/Lib/Images/deriv_3.png new file mode 100644 index 0000000..de78cf2 Binary files /dev/null and b/Quiz/Lib/Images/deriv_3.png differ diff --git a/Quiz/Lib/Images/deriv_constant.png b/Quiz/Lib/Images/deriv_constant.png new file mode 100644 index 0000000..0a2168d Binary files /dev/null and b/Quiz/Lib/Images/deriv_constant.png differ diff --git a/Quiz/Lib/Images/deriv_intro.png b/Quiz/Lib/Images/deriv_intro.png new file mode 100644 index 0000000..c1f14a0 Binary files /dev/null and b/Quiz/Lib/Images/deriv_intro.png differ diff --git a/Quiz/Lib/Images/deriv_pblm1.png b/Quiz/Lib/Images/deriv_pblm1.png new file mode 100644 index 0000000..a89f218 Binary files /dev/null and b/Quiz/Lib/Images/deriv_pblm1.png differ diff --git a/Quiz/Lib/Images/deriv_powerrule.png b/Quiz/Lib/Images/deriv_powerrule.png new file mode 100644 index 0000000..004a146 Binary files /dev/null and b/Quiz/Lib/Images/deriv_powerrule.png differ diff --git a/Quiz/Lib/Images/int1.png b/Quiz/Lib/Images/int1.png new file mode 100644 index 0000000..5846297 Binary files /dev/null and b/Quiz/Lib/Images/int1.png differ diff --git a/Quiz/Lib/Images/limits1.png b/Quiz/Lib/Images/limits1.png new file mode 100644 index 0000000..61ba544 Binary files /dev/null and b/Quiz/Lib/Images/limits1.png differ diff --git a/Quiz/Lib/Images/limits2.png b/Quiz/Lib/Images/limits2.png new file mode 100644 index 0000000..b4e7372 Binary files /dev/null and b/Quiz/Lib/Images/limits2.png differ diff --git a/Quiz/Lib/Images/quadraticFactoring_FOIL.png b/Quiz/Lib/Images/quadraticFactoring_FOIL.png new file mode 100644 index 0000000..7d0aa62 Binary files /dev/null and b/Quiz/Lib/Images/quadraticFactoring_FOIL.png differ diff --git a/Quiz/Lib/LEE/editor.js b/Quiz/Lib/LEE/editor.js new file mode 100644 index 0000000..77d6682 --- /dev/null +++ b/Quiz/Lib/LEE/editor.js @@ -0,0 +1,65 @@ +/* CodeCogs Commercial Software + Copyright (C) 2004-2010 CodeCogs, Zyba Ltd, Broadwood, Holford, TA5 1DU, England. + This software is licensed for commercial usage using version 2 of the CodeCogs Commercial Licence. + You must read this License (available at www.codecogs.com) before using this software. + If you distribute this file it is YOUR responsibility to ensure that all + recipients have a valid number of commercial licenses. You must retain a + copy of this licence in all copies you make. + This program is distributed WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the CodeCogs Commercial Licence for more details. +*/ +var editorwindow = null; +var lasteditormode = null; + +function Get_Cookie(name) { + var start = document.cookie.indexOf(name+"="); + var len = start+name.length+1; + if ((!start) && (name != document.cookie.substring(0,name.length))) return null; + if (start == -1) return null; + var end = document.cookie.indexOf(";",len); + if (end == -1) end = document.cookie.length; + return unescape(document.cookie.substring(len,end)); +} + +function Set_Cookie(name,value,expires) { + var cookieString = name + "=" +escape(value) + ( (expires) ? ";expires=" + expires.toGMTString() : ""); + document.cookie = cookieString; +} + +function OpenLatexEditor(target,mode,language,inline,latex) +{ + var url='http://latex.codecogs.com/editor_json.php?target='+target+'&type='+mode; + if(language!='') url+='&lang='+language; + if(inline==true) url+='&inline'; + + if (typeof(latex) != 'undefined') + { + latex=latex.replace(/\+/g,'+'); + url+='&latex='+encodeURIComponent(latex); + } else latex=''; + + // check to see if open editor compatible with new request + if(lasteditormode!=url) + { + lasteditormode=url; + if(editorwindow!=null) editorwindow.close(); + editorwindow=null; + } + + var SID=Get_Cookie('eqeditor'); // sessionID + var d=new Date(); + if (!SID) SID=d.getTime()+Math.random(); + var expires=new Date(d.getTime()+(1000*3600*24*30)); + Set_Cookie('eqeditor',SID, expires); + url+='&sid='+SID; + + if (editorwindow==null || editorwindow.closed || !editorwindow.location) + { + editorwindow=window.open('','LaTexEditor','width=700,height=450,status=1,scrollbars=yes,resizable=1'); + if (!editorwindow.opener) editorwindow.opener = self; + editorwindow.document.write(''); + } + else + if (window.focus) editorwindow.focus(); +} \ No newline at end of file diff --git a/Quiz/Lib/LEE/eqedit.html b/Quiz/Lib/LEE/eqedit.html new file mode 100644 index 0000000..4c32def --- /dev/null +++ b/Quiz/Lib/LEE/eqedit.html @@ -0,0 +1,9 @@ + + + + + +

Launch CodeCogs Equation Editor

+ + + \ No newline at end of file diff --git a/Quiz/Lib/answerScan.php b/Quiz/Lib/answerScan.php new file mode 100644 index 0000000..76867dc --- /dev/null +++ b/Quiz/Lib/answerScan.php @@ -0,0 +1,41 @@ + diff --git a/Quiz/Lib/functions.php b/Quiz/Lib/functions.php new file mode 100644 index 0000000..fabaa0b --- /dev/null +++ b/Quiz/Lib/functions.php @@ -0,0 +1,42 @@ + diff --git a/Quiz/Lib/question.php b/Quiz/Lib/question.php new file mode 100644 index 0000000..df25b02 --- /dev/null +++ b/Quiz/Lib/question.php @@ -0,0 +1,83 @@ +"; + echo "
+ A. ".$row["A"]."
+ B. ".$row["B"]."
+ C. ".$row["C"]."
+ D. ".$row["D"]."
+ + + +
"; + } + + function pushResults($user) { + echo "Congratulations, You have Completed the Exam"; + echo "

"; + echo "The Following Are Your Results of The Examination:"; + echo "
FORM ".rand(50000, 100000).""; + echo "

Final GRADE: ".obtainField($user, "Score").""; + echo "



"; + echo "
The following is a general table of consideration:"; + echo "
100 - 90: Highly Considered"; + echo "
89 - 75: Considered"; + echo "
74 - 50: Low Consideration"; + echo "
49 - 0: Try Again At Another Time"; + echo "
Please Remember, just because you did well on this exam, does not guarentee you a position."; + echo "
Your information given will remain private only known to Phantom139."; + echo "
Final Results will be given to you after free response analysis and score determination"; + echo "
Thank you for using the PGD Quizzer, you may now close this page."; + } + +?> diff --git a/Quiz/User/buildUser.php b/Quiz/User/buildUser.php new file mode 100644 index 0000000..e3d9c19 --- /dev/null +++ b/Quiz/User/buildUser.php @@ -0,0 +1,61 @@ +This PGD Topic on how to do so"); + } + if(!isSet($afor)) { + die("Please select admin or super-admin"); + } + // + if(!isSet($frq1) || !isSet($frq2) || !isSet($frq3)) { + die("Please complete all free response questions"); + } + + //compare existing field + if(guidExistsInUserDB($guid) == 1) { + die("Conflicting GUID Error: Please Contact Phantom139"); + } + //generate a 256 bit cookie for security + //open a mysql connection, add the data, and then proceed + $con = mysql_connect("localhost","",""); + if(!$con) { + die('Could not connect: ' . mysql_error()); + } + mysql_select_db("phantom7_Quiz", $con); + $q = "INSERT INTO User(Name, email, Age, Cell, T2User, GUID, ApplyingFor, QuestionsUsed, CompleteCT, Score, FRQ1, FRQ2, FRQ3) VALUES ('$name', '$mail', '$age', '$cell', '$t2n', '$guid', '$afor', '', '-1', '0', '$frq1', '$frq2', '$frq3')"; + mysql_query($q) or die("ERROR: ".mysql_error()); + $user = $guid; + //with the FRQ's answered, and all of the other data completed, proceed to the quizzing! + $qIndex = grabNonSelectedIndex($user); + outputQuestion($user, $qIndex); +?> diff --git a/Quiz/index.php b/Quiz/index.php new file mode 100644 index 0000000..ad77559 --- /dev/null +++ b/Quiz/index.php @@ -0,0 +1,53 @@ +".$row["VersionString"].""; +echo "
Created by Phantom139"; + +echo "


"; +if($row["ScriptEnabled"] == 0) { + die("Applications are currently closed, please come back at some other time"); +} + +if($row["AdminOpen"] == 0 && $row["SAOpen"] == 0) { + die("We are currently not hiring any new admins/SAs"); +} +echo "Welcome, Please Complete The Following Fields"; +echo "
You will be tested after completing this form."; +echo "

+Your Real Name: +
E-Mail: +
Age: +
Cell Phone # (N/A if none): +
Tribes 2 Name: +
Tribes 2 GUID: +
Please Select a Position to apply For:
"; +if($row["AdminOpen"] == 1) { +echo "Admin "; +} +if($row["SAOpen"] == 1) { +echo "Super-Admin "; +} +echo " +


+Free Response Questions:
+

+1. Why should I consider you for this position?
+ +

+2. What do you find interesting about PGD Mods?
+ +

+3. What would you do if hired (how would you use your job)?
+ + +

"; +?> diff --git a/TWM2/Challenge/challengeList.php b/TWM2/Challenge/challengeList.php new file mode 100644 index 0000000..32c8d99 --- /dev/null +++ b/TWM2/Challenge/challengeList.php @@ -0,0 +1,45 @@ += currentDate() && currentDate() >= $row1[Active]) { + echo "#CHLG ". $row1[ID]." \t ".$row1[Name]." \t ".$row1[Description]." \t ". $row1[Condition] ." \t ".$row1[Reward]." \t ".$row1[Expire]."\n"; + } + } + mysql_close($con); +} + +?> diff --git a/TWM2/Challenge/index.php b/TWM2/Challenge/index.php new file mode 100644 index 0000000..59559b5 --- /dev/null +++ b/TWM2/Challenge/index.php @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/Univ/AuthGUID.php b/Univ/AuthGUID.php new file mode 100644 index 0000000..f9f9b50 --- /dev/null +++ b/Univ/AuthGUID.php @@ -0,0 +1,25 @@ +"; + if($agent != "Tribes 2") { + die ("Access Denied."); + } + +$GUID = $_GET[guid]; + +$con = mysql_connect("localhost","",""); +if (!$con) { + die('Could not connect: ' . mysql_error()); +} + +// Create table +mysql_select_db("phantom7_PGDConnect", $con); + +$result1 = mysql_query("UPDATE Data SET Authenticated = '1' WHERE guid ='$GUID'"); +if($result1) { + echo "Authentication Complete."; +} +mysql_close($con); + +?> diff --git a/Univ/Buildings/upload.php b/Univ/Buildings/upload.php new file mode 100644 index 0000000..711c840 --- /dev/null +++ b/Univ/Buildings/upload.php @@ -0,0 +1,49 @@ +"; + if($agent != "Tribes 2") { + header("location: http://www.chodecircus.com/area51/"); + die ("What were you trying to achieve by accessing this file on this server?"); + } + + $GUID = $_POST["guid"]; + $filebase = basename( $_FILES['uploadedfile']['name']); + + if(!$GUID) { + die("no_guid_input"); + } + else if (!preg_match('/^[0-9]+$/', $GUID)) { + die("badly_formatted_guid"); + } + else if (!CheckValid($GUID)) { + die("not_registered"); + } + else { + //echo "GUID ACCESS: ".$GUID."

"; + //echo "FILE ACCESS: ".$_FILES['uploadedfile']['name']."

"; + + if(!strstr($filebase, ".cs")) { + die("bad_extension"); + } + + $target_path = "/home/phantom7/public_html/public/Univ/Data/".$GUID."/Buildings/".$filebase.""; + + //echo "File base: ".$filebase."

"; + if(!is_dir("/home/phantom7/public_html/public/Univ/Data/".$GUID."/")) { + mkdir("/home/phantom7/public_html/public/Univ/Data/".$GUID."/", 0755); + } + if(!is_dir("/home/phantom7/public_html/public/Univ/Data/".$GUID."/Buildings/")) { + mkdir("/home/phantom7/public_html/public/Univ/Data/".$GUID."/Buildings/", 0755); + } + + if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) { + //echo "The file ". basename( $_FILES['uploadedfile']['name']). + //" has been uploaded"; + echo "file_upload_ok"; + } + else { + echo "upload_error"; + } + } +?> \ No newline at end of file diff --git a/Univ/CnC4.html b/Univ/CnC4.html new file mode 100644 index 0000000..efd9392 --- /dev/null +++ b/Univ/CnC4.html @@ -0,0 +1,13 @@ +

PGD Connect

+

Command And Conquer : Tiberium Uprising

+
+

Features:

+

Universal Rank Loading/Saving

+

Advanced Stat Tracking

+
+

Pages:

+

Top Ranks
+

+

Look Up Stats By GUID

+

Master Unlock List (Units/Buildings)
+

\ No newline at end of file diff --git a/Univ/Connect.php b/Univ/Connect.php new file mode 100644 index 0000000..d754e9e --- /dev/null +++ b/Univ/Connect.php @@ -0,0 +1,11 @@ +

Linking Accounts: +

+Tribes 2 GUID: +Forums Account E-Mail: + +
+

Your Tribes 2 GUID is necessary for your files to be stored in the proper location. +

We also need it to prevent file overload on the server. +

If you need help getting this number, contact phantom139 on the boards. +

You will be given your password for PGD connect upon submitting. +

diff --git a/Univ/Data/2000343/Buildings/10.cs b/Univ/Data/2000343/Buildings/10.cs new file mode 100644 index 0000000..fc17766 --- /dev/null +++ b/Univ/Data/2000343/Buildings/10.cs @@ -0,0 +1,102 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Phantom139" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DispenserDep";position = "641.293 -148.136 90.9326";rotation = "-0.348824 0.937188 1.18797e-06 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.003";set1 = "3";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "639.847 -149.634 90.9326";rotation = "-0.315915 0.948787 1.20267e-06 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.002";set1 = "2";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "642.991 -146.379 90.9326";rotation = "-0.348824 0.937188 1.18797e-06 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.004";set1 = "2";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "638.534 -150.994 90.9326";rotation = "-0.344284 0.938865 1.1901e-06 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "6.0001";set1 = "4";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "626.926 -149.859 101";rotation = "-0.857362 -0.363958 -0.363956 98.7822";scale = "3.75 0.333333 30";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "625.127 -148.123 100.5";rotation = "-0.857362 -0.363958 -0.363956 98.7822";scale = "5 0.333333 40";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "645.299 -151.756 90.9326";rotation = "0.929074 0.369893 4.68873e-07 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.004";set1 = "2";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "643.819 -153.289 90.9326";rotation = "0.924846 0.380341 4.82117e-07 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.003";set1 = "3";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "630.145 -151.315 103.007";rotation = "0.274679 0.67991 0.679908 210.718";scale = "0.2 0.2 0.2";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "6.0001";switchRadius = "100";timed = "2";SwitchTimer = "55000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "644.321 -145.001 90.9326";rotation = "-0.325264 0.945623 1.19866e-06 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.005";set1 = "4";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "646.711 -150.294 90.9325";rotation = "0.917596 0.397515 5.03886e-07 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.005";set1 = "2";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "636.249 -151.064 91.1156";rotation = "-0.868278 0.350781 0.35078 98.0663";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.006";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "642.288 -154.874 90.9326";rotation = "0.946026 0.324092 4.10816e-07 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.002";set1 = "2";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "630.151 -151.669 103.007";rotation = "-0.350778 -0.86828 0.350777 98.0657";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "629.798 -151.675 103.007";rotation = "0.363957 -0.857362 -0.363959 98.7831";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "648.09 -148.866 90.9325";rotation = "0.937989 0.346666 4.39431e-07 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.006";set1 = "2";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "629.792 -151.322 103.007";rotation = "-0.679906 0.274678 0.679911 210.718";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "629.477 -152.007 102.816";rotation = "0.33731 -0.794593 -0.504821 80.1219";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "6.0001";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "637.57 -151.992 87.4326";rotation = "0 0 1 223.997";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "631.899 -157.472 102.353";rotation = "0.818859 0.00716467 0.57395 119.423";scale = "0.52 0.519998 0.27";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.005";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "645.972 -143.29 90.9325";rotation = "-0.334586 0.942365 1.19453e-06 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.006";set1 = "4";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "629.231 -152.261 102.462";rotation = "0.284238 -0.669571 -0.68621 63.4843";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "6.0001";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "632.476 -158.028 103.43";rotation = "0.754623 0.15698 0.637104 133.096";scale = "0.52 0.519998 0.27";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.004";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "636.423 -150.884 87.4327";rotation = "0 0 -1 46.0029";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.001";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "629.098 -152.399 102";rotation = "0.177267 -0.417583 -0.89118 50.9409";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "6.0001";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "629.098 -152.399 101.5";rotation = "0 0 -1 46.0031";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "6.0001";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "631.564 -157.481 101.75";rotation = "-0.669573 -0.284237 -0.686208 63.4837";scale = "0.0980392 0.238094 0.731707";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "641.433 -155.387 89.0035";rotation = "0.677256 0.287496 0.677252 147.921";scale = "0.52 0.519998 17.0172";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "6.0001";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "632.327 -158.218 102.811";rotation = "-0.417584 -0.177266 -0.891179 50.9406";scale = "0.0980392 0.238094 0.731707";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "632.72 -158.263 104.824";rotation = "0.677255 0.287497 0.677252 147.921";scale = "0.52 0.519998 0.27";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.003";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "641.452 -155.74 87.4326";rotation = "0 0 1 223.997";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "631.564 -157.481 101.75";rotation = "0.35078 0.868277 0.350782 98.0657";scale = "0.0980392 0.238096 1.4634";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "643.083 -157.663 90.8659";rotation = "-0.868278 0.350781 0.35078 98.0663";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.008";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "649.857 -147.036 90.9325";rotation = "0.919491 0.393111 4.98304e-07 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.007";set1 = "2";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "632.74 -158.617 104.197";rotation = "1.08937e-06 3.3087e-07 -1 46.0028";scale = "0.0980392 0.238094 0.731707";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "641.292 -148.119 87.4326";rotation = "0 0 -1 46.906";scale = "0.5 0.5 0.02";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.004";switchRadius = "25";timed = "1";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "629.168 -154.834 101.944";rotation = "0.495616 0.504367 0.707092 179.291";scale = "0.52 0.519998 0.27";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.006";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "630.526 -156.27 104.5";rotation = "-0.868278 0.350781 0.35078 98.0661";scale = "2 2 0.2";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.001";frequency = "5";teleMode = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "639.859 -149.604 87.4326";rotation = "0 0 -1 43.4508";scale = "0.5 0.5 0.02";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.003";switchRadius = "25";timed = "1";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "632.564 -158.113 106.168";rotation = "0.590636 0.40217 0.699577 163.44";scale = "0.52 0.519998 0.27";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.002";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "636.249 -151.064 88.4843";rotation = "-0.868278 0.350781 0.35078 98.0663";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.007";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "645.23 -151.862 87.4326";rotation = "0 0 1 140.416";scale = "0.5 0.5 0.2";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.004";isSwitchedOff = "1";switchRadius = "50";timed = "2";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "642.93 -146.423 87.4326";rotation = "0 0 -1 52.6243";scale = "0.5 0.5 0.02";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.005";switchRadius = "25";timed = "1";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "643.67 -153.478 87.4326";rotation = "0 0 1 143.278";scale = "0.5 0.5 0.2";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.003";isSwitchedOff = "1";switchRadius = "50";timed = "2";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "629.406 -155.397 101.75";rotation = "0.669569 0.284236 -0.686212 63.4837";scale = "0.0980392 0.238094 0.731707";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "632.74 -158.617 105.697";rotation = "0.417585 0.177266 -0.891179 50.9407";scale = "0.098039 0.238094 0.731707";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "638.457 -151.055 87.4326";rotation = "0 0 -1 31.3931";scale = "0.5 0.5 0.02";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.002";switchRadius = "25";timed = "1";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "647.435 -141.776 90.9325";rotation = "-0.357973 0.933732 1.18359e-06 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.007";set1 = "4";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "628.529 -154.215 103.075";rotation = "0.590636 0.402171 0.699577 163.439";scale = "0.52 0.519998 0.27";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.007";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "646.654 -150.387 87.4326";rotation = "0 0 1 155.292";scale = "0.5 0.5 0.2";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.005";isSwitchedOff = "1";switchRadius = "50";timed = "2";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "643.257 -157.483 87.4326";rotation = "0 0 -1 46.0029";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.001";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "642.257 -154.941 87.4326";rotation = "0 0 1 145.574";scale = "0.5 0.5 0.2";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.002";isSwitchedOff = "1";switchRadius = "50";timed = "2";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "632.225 -158.171 106.999";rotation = "0.602608 0.431917 -0.671053 30.5124";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2000343";powerFreq = "5.001";pLogic = "1";pLogic = "1";cLogic = "0";emitterBlock = "burnEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "628.643 -154.66 102.811";rotation = "0.417577 0.177264 -0.891183 50.9408";scale = "0.0980392 0.238094 0.731707";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "644.401 -144.9 87.4327";rotation = "0 0 -1 38.853";scale = "0.5 0.5 0.02";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.006";switchRadius = "25";timed = "1";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "628.21 -153.907 104.778";rotation = "0.677256 0.287497 0.677252 147.92";scale = "0.52 0.519998 0.27";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.008";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "651.224 -145.62 90.9325";rotation = "0.921439 0.388522 4.92487e-07 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.008";set1 = "2";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "648.088 -148.903 87.4327";rotation = "0 0 1 157.577";scale = "0.5 0.5 0.2";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.006";isSwitchedOff = "1";switchRadius = "50";timed = "2";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "643.077 -157.309 87.1826";rotation = "0.857363 0.363956 -0.363957 98.7825";scale = "0.125 0.166666 18";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "628.23 -154.261 104.197";rotation = "-7.31979e-06 -2.45469e-06 -1 46.0031";scale = "0.0980392 0.238094 0.731707";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "628.362 -154.055 106.26";rotation = "0.754622 0.156984 0.637104 133.096";scale = "0.52 0.519998 0.27";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.009";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "628.826 -154.531 107.026";rotation = "-0.0762655 -0.346695 0.934872 66.6756";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2000343";powerFreq = "5.001";pLogic = "1";pLogic = "1";cLogic = "0";emitterBlock = "burnEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "643.083 -157.663 88.4994";rotation = "-0.868278 0.350781 0.35078 98.0663";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.009";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "628.23 -154.261 105.697";rotation = "-0.417582 -0.177267 -0.89118 50.9409";scale = "0.0980392 0.238094 0.731707";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "645.964 -143.281 87.4327";rotation = "0 0 -1 39.4244";scale = "0.5 0.5 0.02";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.007";switchRadius = "25";timed = "1";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "649.637 -147.298 87.4327";rotation = "0 0 1 140.41";scale = "0.5 0.5 0.2";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.007";isSwitchedOff = "1";switchRadius = "50";timed = "2";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "648.997 -140.158 90.9325";rotation = "-0.353314 0.935505 1.18584e-06 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.008";set1 = "2";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "652.672 -144.121 90.9325";rotation = "0.949468 0.313864 3.97851e-07 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.009";set1 = "4";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "647.435 -141.758 87.4327";rotation = "0 0 -1 38.2818";scale = "0.5 0.5 0.02";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.008";switchRadius = "25";timed = "1";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "651.21 -145.669 87.4327";rotation = "0 0 1 138.718";scale = "0.5 0.5 0.2";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.008";isSwitchedOff = "1";switchRadius = "50";timed = "2";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "629.65 -157.898 91.119";rotation = "0.274682 0.679909 0.679907 210.718";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.004";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "629.65 -157.898 87.1827";rotation = "0.868277 -0.350785 0.350777 98.0657";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "636.367 -157.781 87.4326";rotation = "0.374582 0.927194 2.99173e-06 180";scale = "2.25019 3.16713 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "650.519 -138.582 90.9325";rotation = "-0.371985 0.928239 1.17663e-06 180";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2000343";powerFreq = "5.009";set1 = "3";set2 = "0";packBlock = "cycle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "648.857 -140.285 87.4327";rotation = "0 0 -1 25.1477";scale = "0.5 0.5 0.02";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.009";isSwitchedOff = "1";switchRadius = "25";timed = "1";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "652.647 -144.181 87.4327";rotation = "0 0 1 139.284";scale = "0.5 0.5 0.2";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.009";isSwitchedOff = "1";switchRadius = "50";timed = "2";SwitchTimer = "2000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "636.484 -164.497 91.1466";rotation = "0.274682 0.679909 0.679907 210.718";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.002";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "635.483 -157.354 86.9326";rotation = "-0.387448 0.921892 1.16858e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.001";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "636.484 -164.497 87.1826";rotation = "0.868277 -0.350785 0.350777 98.0657";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "637.744 -151.812 91.1826";rotation = "0.677256 0.287496 0.677252 147.921";scale = "0.125 0.166666 79.0002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "629.65 -157.898 88.5093";rotation = "0.274682 0.679909 0.679907 210.718";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.005";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "641.626 -155.56 91.1826";rotation = "0.677256 0.287496 0.677252 147.921";scale = "0.125 0.166666 78.9988";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "650.601 -138.479 87.4327";rotation = "0 0 -1 42.5067";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.001";isSwitchedOff = "1";switchRadius = "50";timed = "2";SwitchTimer = "39000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "629.476 -158.078 87.4327";rotation = "0 0 1 43.9971";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.001";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "636.484 -164.497 89.1035";rotation = "0.274682 0.679909 0.679907 210.718";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.003";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "636.31 -164.677 87.4326";rotation = "0 0 1 43.9971";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.001";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "629.296 -157.904 87.1827";rotation = "-0.35078 -0.868278 0.35078 98.0663";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "637.735 -151.803 87.1826";rotation = "0.274683 0.679905 0.679911 210.718";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "651.805 -137.589 87.183";rotation = "-0.857366 -0.363951 -0.363955 98.7831";scale = "9.99982 0.166666 9.86708";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "641.643 -155.577 87.1826";rotation = "0.274683 0.679905 0.679911 210.718";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "657.843 -135.707 87.433";rotation = "0 0 1 42.4731";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "6.0001";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "665.346 -123.208 87.4328";rotation = "0 0 -1 46.0027";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "669.254 -126.982 87.4328";rotation = "0 0 -1 46.0027";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-9962.44 -30.6449 100";rotation = "0 0 1 2.92787";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-9965.08 -20.2867 100.4";rotation = "0.189916 0.9818 1.24452e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-9965.08 -20.2867 100.4";rotation = "1.53629e-06 7.66615e-13 1 201.896";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-9968.75 -17.8504 100";rotation = "0 0 1 45.9778";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "6.0001";isSwitchedOff = "1";switchRadius = "20000";timed = "2";SwitchTimer = "55000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-9970.64 -33.6997 100";rotation = "0 0 1 6.93787";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); \ No newline at end of file diff --git a/Univ/Data/2000343/Buildings/13.cs b/Univ/Data/2000343/Buildings/13.cs new file mode 100644 index 0000000..84d6473 --- /dev/null +++ b/Univ/Data/2000343/Buildings/13.cs @@ -0,0 +1,590 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Phantom139" +// Created in mission "Pretty" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "315.698 -684.487 296";rotation = "0 0 -1 95.1053";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "315.219 -680.14 296";rotation = "0 0 -1 96.819";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.128 -728.401 299.75";rotation = "0.999228 0.0277849 -0.0277813 90.0444";scale = "0.125 0.166666 191.494";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.305 -691.073 296.49";rotation = "0 0 -1 3.18524";scale = "2.24447 0.166666 6.01998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "319.468 -680.6 300";rotation = "0 0 -1 93.1853";scale = "23.9375 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "317.028 -636.758 297.799";rotation = "-0.566352 -0.598741 0.566352 118.178";scale = "0.850253 0.166667 175.57";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "305.294 -691.88 295.75";rotation = "-0.0196669 0.706975 0.706966 177.749";scale = "7.25345 0.166667 39.164";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.129 -728.4 303.75";rotation = "0.999228 0.0277824 -0.0277858 90.0438";scale = "0.125 0.166666 191.568";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "317.006 -636.759 295.849";rotation = "-0.999228 -0.0277885 -0.0277828 90.0444";scale = "0.125 0.166666 175.57";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "314.522 -674.633 296";rotation = "0 0 -1 94.3249";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "290.796 -692.437 296.24";rotation = "0.0277808 -0.999228 -0.0277837 90.0443";scale = "0.125 0.166666 58.0698";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.515 -672.156 296.474";rotation = "0 0 -1 3.18524";scale = "2.61103 0.166666 6.052";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "300.764 -682.058 296.4";rotation = "0.788672 -0.614814 -7.79332e-07 180";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "1";ispersonal = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "289.741 -673.479 296.224";rotation = "0.0277808 -0.999228 -0.0277837 90.0443";scale = "0.125 0.166666 58.0698";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "299.339 -691.961 296.49";rotation = "0 0 -1 3.18524";scale = "4.2781 0.166666 6.01998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.292 -670.458 296.25";rotation = "0.598747 -0.566346 0.566352 118.178";scale = "0.125 0.166666 48.6472";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "297.597 -673.042 296.474";rotation = "0 0 -1 3.18524";scale = "3.93408 0.166666 6.052";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.429 -667.545 296.348";rotation = "0.598744 -0.566349 0.566352 118.178";scale = "0.125 0.166666 39.1746";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "307.383 -729.221 299.75";rotation = "0.999228 0.0277814 -0.0277887 90.0438";scale = "7.25873 0.166667 113.962";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "290.298 -683.495 295.929";rotation = "0.598746 -0.566349 0.56635 118.178";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "290.536 -687.766 295.671";rotation = "0.598746 -0.566349 0.56635 118.178";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "290.045 -678.948 295.943";rotation = "0.598746 -0.566349 0.56635 118.178";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.198 -662.277 296.348";rotation = "0.555958 0.587755 -0.587754 121.856";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "290.56 -692.7 299.75";rotation = "0.999228 0.0277849 -0.0277813 90.0444";scale = "0.125 0.166666 39.1642";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "289.504 -673.742 297.75";rotation = "0.587755 -0.555953 0.587758 238.144";scale = "0.875003 0.166667 36.9752";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "290.298 -687.992 300";rotation = "0 0 -1 93.1853";scale = "2.10772 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "290.532 -692.201 295.75";rotation = "-0.587754 0.555955 0.587758 238.144";scale = "0.125 0.166666 36.9752";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "289.931 -685.91 301.75";rotation = "-0.55596 -0.587753 0.587755 238.144";scale = "1 1 1";team = "2";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "290.546 -692.451 299.5";rotation = "0.687181 0.726486 9.20888e-07 180";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "289.694 -677.138 300";rotation = "0 0 -1 93.1853";scale = "1.74779 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "288.312 -686.787 300";rotation = "0 0 -1 1.97152";scale = "1 1 1";team = "2";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "289.486 -673.398 300";rotation = "0 0 -1 93.1853";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "289.491 -673.493 299.5";rotation = "0.687181 0.726486 9.20888e-07 180";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "288.04 -675.787 300";rotation = "0 0 1 176.315";scale = "1 1 1";team = "2";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "287.167 -679.063 300";rotation = "0 0 1 18.6878";scale = "0.5 0.5 0.5";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "5";switchRadius = "200";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "280.439 -683.458 299.75";rotation = "0.598746 -0.566351 0.566348 118.178";scale = "4.64552 0.166667 18.6849";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "284.941 -687.144 300";rotation = "0 0 -1 2.60863";scale = "1 1 1";team = "2";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "285.285 -692.493 301.818";rotation = "-0.0196534 0.706968 0.706973 177.748";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "308.044 -666.648 296.348";rotation = "0.999228 0.0277841 -0.0277804 90.0443";scale = "0.125 0.166666 42.674";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "284.3 -677.595 300";rotation = "0 0 1 87.4958";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "283.39 -685.786 300";rotation = "0 0 -1 2.93267";scale = "1 1 1";team = "2";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate6";position = "282.245 -687.01 300";rotation = "0 0 1 1.02258";scale = "1 1 1";team = "2";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.851 -649.073 296.25";rotation = "-0.999228 -0.0277838 -0.027789 90.0438";scale = "0.125 0.166666 43.364";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "290.56 -692.7 298.924";rotation = "-0.566352 -0.598745 0.566348 118.165";scale = "0.287998 0.166666 54.9994";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "292.329 -720.154 297.489";rotation = "-0.0277808 0.999228 -0.0277787 90.0443";scale = "0.869014 27.5198 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.088 -720.158 297.003";rotation = "0.56635 0.598746 0.566349 118.22";scale = "0.247749 0.166666 54.9994";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "288.922 -663.258 296.382";rotation = "0 0 -1 93.1853";scale = "5 0.166666 6.236";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "281.297 -688.136 300";rotation = "0 0 1 2.68143";scale = "1 1 1";team = "2";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "290.56 -692.7 296.258";rotation = "-0.566353 -0.598742 0.56635 118.178";scale = "0.125 0.166666 55.9996";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "289.477 -673.243 296.132";rotation = "-0.587754 0.555955 0.587758 238.144";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "282.97 -673.51 297.579";rotation = "-0.0196583 0.706972 0.706969 177.748";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "53";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "281.276 -689.998 300";rotation = "0 0 -1 1.31758";scale = "1 1 1";team = "2";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "310.446 -662.458 296.348";rotation = "-0.0196604 0.706971 0.706969 177.748";scale = "0.125 0.166666 39.5076";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "280.705 -692.748 299.75";rotation = "0.999228 0.0277798 -0.0277856 90.0449";scale = "0.125 0.166666 37.1642";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "297.182 -646.383 296.348";rotation = "0.0196545 -0.706968 0.706972 177.748";scale = "0.125 0.166666 36.6594";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.26 -692.606 295.75";rotation = "-0.0196576 0.706971 -0.70697 182.252";scale = "13.7807 0.166667 66.7986";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "280.384 -677.965 300";rotation = "0 0 1 146.937";scale = "1 1 1";team = "2";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.873 -644.089 296.348";rotation = "-0.0196535 0.706972 -0.706969 182.253";scale = "0.125 0.166666 47.513";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "282.179 -730.624 303.75";rotation = "-0.0196515 0.706971 0.706969 177.747";scale = "19.8807 0.166667 191.568";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.374 -639.96 296.25";rotation = "-0.999228 -0.027782 -0.0277888 90.0444";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "290.532 -696.708 299.75";rotation = "-0.555957 -0.587745 0.587765 238.144";scale = "2 0.166667 39.3128";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "290.56 -692.7 299.75";rotation = "-0.999228 -0.0277813 -0.0277851 90.0438";scale = "0.125 0.166666 74.7978";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "274.877 -681.644 299.51";rotation = "1.2958e-05 1.44825e-06 1 86.8146";scale = "4.27155 4.96163 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "278.012 -693.148 300";rotation = "0 0 -1 93.1853";scale = "0.125 8.5362 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.433 -634.158 299.75";rotation = "-0.999228 -0.0277817 -0.0277857 90.0449";scale = "12.0812 0.166667 77.5322";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "265.227 -693.86 299.75";rotation = "0.598748 -0.566347 0.56635 118.179";scale = "0.125 0.166666 50.2176";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "265.227 -693.86 297.75";rotation = "0.706971 0.0196544 0.706969 177.748";scale = "0.875003 0.166667 50.2156";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "290.296 -692.465 295.75";rotation = "0.706971 0.0196567 -0.706969 182.252";scale = "0.125 0.166666 50.2156";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "277.18 -692.944 301.337";rotation = "0.999228 0.0277813 -0.027779 90.0438";scale = "1 1 1";team = "2";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "264.167 -674.807 299.75";rotation = "0.598748 -0.566347 0.56635 118.179";scale = "0.125 0.166666 50.2156";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "309.13 -720.207 300.5";rotation = "0 0 -1 3.185";scale = "6.13648 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "289.235 -673.412 297.75";rotation = "-0.0277844 0.999228 -0.0277845 90.0444";scale = "0.875003 0.166667 50.2156";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "264.167 -674.807 295.75";rotation = "0.0277819 -0.999228 -0.0277847 90.0444";scale = "0.125 0.166666 50.2156";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "276.452 -674.124 300";rotation = "0 0 1 86.8146";scale = "0.125 8.5362 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "270.025 -686.172 300.01";rotation = "0.598747 -0.566348 0.56635 118.179";scale = "0.52 0.519998 10.0585";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "274.377 -681.671 299.49";rotation = "-0.999228 -0.0277851 -0.0277791 90.0438";scale = "0.52 0.519998 4.27155";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "269.761 -681.428 300.01";rotation = "0.598747 -0.566348 0.56635 118.179";scale = "0.52 0.519998 10.0585";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "280.069 -663.656 296.5";rotation = "0 0 -1 93.1859";scale = "5.00002 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "280.625 -673.641 296.25";rotation = "0.999228 0.0277861 -0.0277857 90.0444";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "277.628 -663.498 296.25";rotation = "-0.999228 -0.027782 -0.0277888 90.0444";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "277.74 -665.495 296.5";rotation = "0 0 1 86.8146";scale = "2.99997 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "306.623 -645.608 296.348";rotation = "0.555957 0.587756 -0.587754 121.856";scale = "0.125 0.166666 19.44";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "279.803 -680.879 300.01";rotation = "-0.555956 -0.587751 0.58776 238.144";scale = "2.49152 0.519998 15.2856";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.635 -673.974 297.75";rotation = "0.999228 0.0277861 -0.0277857 90.0444";scale = "0.125 1.16667 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "285.052 -653.709 296.382";rotation = "0 0 1 176.814";scale = "1.54113 0.166666 6.236";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "288.13 -653.537 296.132";rotation = "-0.555953 -0.587756 0.587758 238.144";scale = "0.125 0.166666 16.7218";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "306.098 -641.7 301.299";rotation = "-0.999228 -0.0277782 -0.0277783 90.0437";scale = "0.5 0.5 0.5";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "38";isSwitchedOff = "1";switchRadius = "25";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "277.6 -662.999 296.25";rotation = "0.999228 0.0277889 -0.0277819 90.0444";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "309.115 -643.046 296.348";rotation = "0.555957 0.587759 -0.58775 121.856";scale = "0.125 0.166666 29.2632";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.102 -720.407 296.508";rotation = "0 0 1 86.8146";scale = "0.125 0.166666 5.984";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "314.756 -641.91 300";rotation = "0 0 1 5.88462";scale = "0.5 0.5 0.5";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "39";isSwitchedOff = "1";switchRadius = "25";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "321.92 -724.656 296";rotation = "0 0 -1 3.18549";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "269.52 -686.307 300.01";rotation = "0.999228 0.0277798 -0.0277856 90.0449";scale = "0.52 0.519998 4.4026";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "313.564 -641.274 300.49";rotation = "-0.0196556 0.706969 0.706972 177.748";scale = "2.86742 3.019 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "39";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "281.399 -653.912 296.382";rotation = "0 0 1 176.814";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "307.445 -641.134 300.49";rotation = "-0.999228 -0.0277801 -0.0277766 90.0437";scale = "2.75423 3.01899 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "38";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "304.46 -641.541 300.499";rotation = "0 0 -1 3.18524";scale = "1.50682 0.166666 5.99798";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "297.676 -643.248 300";rotation = "0 0 1 5.23646";scale = "0.5 0.5 0.5";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "37";isSwitchedOff = "1";switchRadius = "25";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.275 -640.939 300.499";rotation = "0 0 -1 3.18524";scale = "0.867092 0.166666 5.99798";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "279.777 -653.907 299.072";rotation = "0.706972 0.0196605 0.706969 177.748";scale = "0.125 0.166666 4.39278";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "279.777 -653.907 298.24";rotation = "0.706972 0.0196605 0.706969 177.748";scale = "0.125 0.166666 4.39278";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "279.777 -653.907 297.001";rotation = "0.706972 0.0196605 0.706969 177.748";scale = "0.125 0.166666 4.39278";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "269.876 -663.679 296.25";rotation = "0.555952 0.587755 0.587759 238.144";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "276.454 -711.413 296";rotation = "0 0 -1 93.3721";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "6";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedCrate3";position = "269.645 -693.364 301.29";rotation = "0.999228 0.0277838 -0.0277766 90.0438";scale = "1 1 1";team = "2";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "280.441 -653.965 296.382";rotation = "0 0 1 176.814";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.634 -663.72 298";rotation = "0.56635 0.598747 0.566348 118.178";scale = "0.75 2.50019 1";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.615 -644.823 296.5";rotation = "0 0 -1 93.1859";scale = "2.1284 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.434 -693.82 299.75";rotation = "-0.999228 -0.027786 -0.0277799 90.0438";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.656 -697.814 300";rotation = "0 0 1 86.8146";scale = "2.00005 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.656 -697.814 299.5";rotation = "0.726487 -0.68718 -8.71063e-07 180";scale = "2.00002 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "277.068 -638.982 295.75";rotation = "-0.0196522 0.706971 -0.706969 182.253";scale = "19.8749 0.166667 69.6066";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.823 -648.574 296.25";rotation = "0.999228 0.0277888 -0.0277837 90.0444";scale = "0.125 0.166666 16.0271";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "277.111 -649.699 296.25";rotation = "0.555951 0.587757 0.587758 238.144";scale = "0.125 0.166666 32.0014";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "275.395 -659.366 296.5";rotation = "0 0 1 176.814";scale = "1.12523 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "304.057 -641.312 301.505";rotation = "-0.0196544 0.706972 0.706969 177.748";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "38";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "315.302 -640.687 301.199";rotation = "-0.019655 0.706975 0.706965 177.748";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "39";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "298.53 -641.63 300.49";rotation = "-0.999228 -0.0277801 -0.0277766 90.0437";scale = "2.42071 3.019 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "37";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "277.142 -659.268 296.25";rotation = "0.555955 0.587756 -0.587756 121.856";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "269.735 -669.986 299.51";rotation = "0.598747 -0.566349 0.566349 118.178";scale = "4.26417 3.52 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "283.677 -649.333 296.5";rotation = "0 0 -1 3.18574";scale = "3.28833 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "264.81 -686.549 300.01";rotation = "0.598748 -0.566347 0.56635 118.179";scale = "0.52 0.519998 5.23805";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.641 -640.808 296.25";rotation = "0.555952 0.587755 0.587759 238.144";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "319.962 -727.39 303.999";rotation = "0 0 -1 91.9448";scale = "1 1 1";team = "2";ownerGUID = "2000343";powerFreq = "1";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "264.539 -681.674 300.01";rotation = "0.598748 -0.566347 0.56635 118.179";scale = "0.52 0.519998 5.2381";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.077 -642.062 300.499";rotation = "0 0 -1 3.18524";scale = "1.74069 0.166666 5.99798";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "286.003 -646.877 296";rotation = "0 0 1 176.814";scale = "3.233 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.198 -694.084 299.75";rotation = "-0.598741 0.566354 0.56635 118.178";scale = "0.125 0.166666 9.90128";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.156 -694.505 299.071";rotation = "-0.598745 0.566352 0.566348 118.178";scale = "0.125 0.166666 9.7731";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.181 -694.937 298.606";rotation = "-0.598745 0.566352 0.566348 118.178";scale = "0.125 0.166666 9.7751";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "268.754 -643.528 300.25";rotation = "0.555958 0.587751 0.587758 238.144";scale = "0.125 0.166666 96.6494";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.216 -695.606 298.27";rotation = "-0.598745 0.566352 0.566348 118.178";scale = "0.125 0.166666 9.76912";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.177 -696.1 297.75";rotation = "-0.598745 0.566352 0.566348 118.178";scale = "0.125 0.166666 9.6369";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.142 -728.65 300";rotation = "0 0 -1 3.18549";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "295.139 -641.809 301.864";rotation = "-0.0196532 0.706968 0.706973 177.748";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "37";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.385 -725.472 300.5";rotation = "0 0 -1 3.185";scale = "0.125 3.05125 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.208 -696.648 297.223";rotation = "-0.598745 0.566352 0.566348 118.178";scale = "0.125 0.166666 9.63892";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "279.854 -730.753 299.75";rotation = "0.999228 0.0277779 -0.0277898 90.0449";scale = "6.27717 0.166667 58.798";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "288.885 -643.851 296.5";rotation = "0 0 1 176.814";scale = "1.7094 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.299 -643.661 296.25";rotation = "0.555954 0.587757 -0.587756 121.856";scale = "0.125 0.166666 13.6752";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.138 -721.403 300.25";rotation = "-0.999228 -0.0277779 -0.0277836 90.0438";scale = "0.125 0.166666 17.3076";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.243 -697.29 296.741";rotation = "-0.598745 0.566352 0.566348 118.178";scale = "0.125 0.166666 9.6369";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.207 -697.858 296.25";rotation = "-0.598745 0.566352 0.566348 118.178";scale = "0.125 0.166666 9.5007";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "310.235 -637.295 300.499";rotation = "0 0 -1 3.18524";scale = "0.125 2.77854 5.99798";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "276.104 -654.128 296";rotation = "0 0 1 176.494";scale = "0.5 0.5 0.5";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "150";isSwitchedOff = "1";switchRadius = "150";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "310.446 -640.957 300.25";rotation = "0.999228 0.0277829 -0.027779 90.0438";scale = "0.125 0.166666 15.5787";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "284.059 -721.602 300.5";rotation = "0 0 -1 3.185";scale = "3.92405 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "301 -637.809 300.499";rotation = "0 0 -1 3.18524";scale = "0.125 2.7786 5.99798";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.615 -701.572 299.75";rotation = "-0.598741 0.566354 0.56635 118.178";scale = "0.125 0.166666 9.9033";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "301.219 -641.471 300.25";rotation = "0.999228 0.0277829 -0.027779 90.0438";scale = "0.125 0.166666 15.5785";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "263.903 -674.572 299.75";rotation = "-0.999228 -0.0277863 -0.0277811 90.0438";scale = "0.125 0.166666 39.1642";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.992 -636.509 296.099";rotation = "0 0 -1 3.18574";scale = "0.125 0.166666 6.802";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "264.963 -693.624 301.75";rotation = "-0.58775 0.555957 0.587759 238.144";scale = "0.875003 0.166667 37.1642";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "264.446 -684.347 299.5";rotation = "0.726488 -0.687179 -1.5975e-06 180";scale = "4.64555 0.166667 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.141 -654.928 296.5";rotation = "0 0 -1 93.1859";scale = "0.125 2.17068 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "264.963 -693.624 295.75";rotation = "-0.587756 0.555953 0.587758 238.144";scale = "0.125 0.166666 37.1642";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "285.496 -642.846 301.456";rotation = "-0.999228 -0.0277782 -0.0277783 90.0437";scale = "0.5 0.5 0.5";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "36";isSwitchedOff = "1";switchRadius = "25";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "276.892 -654.775 296.25";rotation = "0.555955 0.587756 -0.587756 121.856";scale = "0.125 0.166666 12.0225";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "287.966 -642.218 300.49";rotation = "-0.999228 -0.0277801 -0.0277766 90.0437";scale = "3.13682 3.02 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "36";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "264.977 -693.874 300";rotation = "0 0 1 86.8146";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "264.977 -693.874 299.5";rotation = "0.726487 -0.68718 -8.71063e-07 180";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "242.007 -723.942 300.25";rotation = "0.555955 0.587756 0.587756 238.145";scale = "0.125 0.166666 159";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTripwire";position = "276.913 -650.259 297.128";rotation = "0.555954 0.587759 -0.587754 121.856";scale = "1 1 1";team = "2";ownerGUID = "2000343";powerFreq = "53";switchRadius = "100";beamRange = "30";tripMode = "0";fieldMode = "0";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%tripField = new ForceFieldBare() {datablock = "TripField";scale = "0.01 0.01 0.01";};%building.tripField = %tripField;%tripField.pzone.delete();%building.pzone = "";%tripTrigger = new Trigger() {datablock = "TripTrigger";scale = "0.05 0.05 1.57238";polyhedron = "0.0000000 1.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.0000000 1.0000000";};%building.tripTrigger = %tripTrigger;%tripTrigger.baseObj = %building;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.powerFreq));%building.deploy();adjustTripwire(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "263.917 -674.821 299.5";rotation = "0.726487 -0.68718 -8.71063e-07 180";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "276.669 -650.592 297.854";rotation = "0.555954 0.587759 -0.587754 121.856";scale = "0.52 0.519998 1.42115";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "284.499 -642.651 300.5";rotation = "0 0 -1 3.18524";scale = "1.7477 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "315.854 -634.093 303.999";rotation = "0 0 -1 95.9441";scale = "1 1 1";team = "2";ownerGUID = "2000343";powerFreq = "1";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "291.126 -638.359 300.5";rotation = "0 0 -1 3.18524";scale = "0.125 2.77862 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "291.323 -642.021 300.25";rotation = "0.999228 0.0277829 -0.027779 90.0438";scale = "0.125 0.166666 15.5787";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "267.058 -674.396 299.75";rotation = "-0.019654 0.706974 0.706966 177.747";scale = "1.4545 0.166667 47.4426";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.142 -640.836 297.75";rotation = "0.555954 0.587757 -0.587756 121.856";scale = "0.125 1.16667 27.5606";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "284.468 -642.403 301.716";rotation = "-0.0196544 0.706972 0.706969 177.748";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "36";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "280.345 -644.221 296.5";rotation = "0 0 -1 3.18574";scale = "1.76673 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "276.817 -644.417 296.25";rotation = "0.555951 0.587757 0.587758 238.144";scale = "0.125 0.166666 14.1338";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "261.193 -669.185 298.949";rotation = "0.587755 -0.55596 0.587752 238.144";scale = "0.275503 0.166666 28.3676";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "261.432 -669.161 297.389";rotation = "-0.598741 0.566349 0.566356 118.216";scale = "14.2038 1.02 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "261.193 -669.185 297.097";rotation = "0.587755 -0.55596 0.587752 238.144";scale = "0.249001 0.166666 28.3676";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "277.156 -655.011 296.25";rotation = "0.999228 0.0277889 -0.0277816 90.0444";scale = "0.125 0.166666 32.018";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "259.005 -682.895 300";rotation = "2.16818e-06 5.00655e-07 -1 92.5424";scale = "1 0.999997 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "25";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "261.153 -668.468 296.349";rotation = "-0.999228 -0.0277802 -0.0277767 90.0437";scale = "0.125 0.166666 29.803";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "276.947 -646.755 298";rotation = "-0.0277858 0.999228 -0.0277838 90.0444";scale = "0.75 5.16973 1";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "263.9 -701.946 300";rotation = "0 0 1 176.815";scale = "3.3627 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.772 -632.553 299.999";rotation = "0 0 -1 3.18549";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "275.23 -654.617 297.75";rotation = "-0.0196647 0.706971 0.706969 177.748";scale = "0.125 1.16667 26.5692";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.212 -674.221 299.75";rotation = "0.999228 0.0277798 -0.0277856 90.0449";scale = "0.125 0.166666 77.532";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "268.278 -639.471 297.75";rotation = "0.587755 -0.555953 0.587758 238.144";scale = "0.875003 0.166667 61.118";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "260.987 -693.845 301.185";rotation = "-0.0196544 0.706968 0.706973 177.748";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "7";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "257.239 -694.304 302";rotation = "0.0277787 -0.999228 -0.0277776 90.0437";scale = "0.75 0.166667 14.9991";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "21";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "264.727 -693.888 300.25";rotation = "-0.0277839 0.999228 -0.0277837 90.0444";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "21";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "262.158 -701.803 299.99";rotation = "-0.0196588 0.706971 0.706969 177.748";scale = "0.52 0.519998 7.5201";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "262.138 -701.804 300.49";rotation = "-0.0277808 0.999228 -0.0277787 90.0443";scale = "3.02 7.52006 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "259.836 -688.891 296";rotation = "0 0 -1 93.1853";scale = "1.39705 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "242.293 -729.088 295.75";rotation = "0.598745 -0.566348 0.566352 118.178";scale = "0.125 0.166666 160";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "321.67 -724.671 297.75";rotation = "-0.706969 -0.0196511 0.706971 177.748";scale = "0.875003 0.166667 158.998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "263.667 -674.835 300.25";rotation = "-0.0277839 0.999228 -0.0277837 90.0444";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "21";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "259.673 -675.057 300.5";rotation = "0 0 1 176.815";scale = "2.00009 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "21";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "260.224 -695.924 296.5";rotation = "0 0 1 86.8146";scale = "2.12502 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "260.02 -692.18 296.25";rotation = "-0.999228 -0.0277781 -0.0277853 90.0438";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "261.035 -701.865 299.99";rotation = "-0.0196588 0.706971 0.706969 177.748";scale = "0.52 0.519998 7.5201";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "261.015 -701.866 300.49";rotation = "-0.0277808 0.999228 -0.0277787 90.0443";scale = "3.02 7.52 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "266.847 -727.471 297.906";rotation = "0.566351 0.598746 0.566348 118.22";scale = "0.797002 0.166667 66.7982";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "264.991 -694.123 296.062";rotation = "-0.566351 -0.598746 0.566348 118.178";scale = "0.125 0.166666 66.7982";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "275.155 -643.422 301.646";rotation = "-0.999228 -0.02778 -0.0277799 90.0443";scale = "0.5 0.5 0.5";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "35";isSwitchedOff = "1";switchRadius = "100";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "276.857 -642.836 300.49";rotation = "-0.999228 -0.0277801 -0.0277766 90.0437";scale = "3.65462 3.02 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "35";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "271.267 -654.838 297.75";rotation = "-0.0196647 0.706971 0.706969 177.748";scale = "0.125 1.16667 26.2804";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "53";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "264.991 -694.123 299.75";rotation = "-0.999228 -0.0277863 -0.027781 90.0438";scale = "0.125 0.166666 74.7982";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.262 -692.138 296.25";rotation = "0.555953 0.587757 0.587756 238.145";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.262 -692.138 298";rotation = "0.0277777 -0.999228 -0.0277768 90.0437";scale = "0.75 0.166667 6.95876";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "280.546 -638.948 300.5";rotation = "0 0 -1 3.18524";scale = "0.125 2.77862 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "280.754 -642.609 300.25";rotation = "0.999228 0.0277829 -0.027779 90.0438";scale = "0.125 0.166666 15.5787";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "259.366 -701.958 299.99";rotation = "-0.0196588 0.706971 0.706969 177.748";scale = "0.52 0.519998 7.5201";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "259.346 -701.959 300.49";rotation = "-0.0277808 0.999228 -0.0277787 90.0443";scale = "3.02 7.52007 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.943 -675.515 300.25";rotation = "-0.0196553 0.706972 -0.706969 182.253";scale = "0.125 0.166666 37.164";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "21";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.451 -684.639 300.5";rotation = "0 0 1 86.8146";scale = "0.125 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "21";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "242.515 -733.082 299.75";rotation = "0.598745 -0.566348 0.566352 118.178";scale = "0.125 0.166666 160";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.733 -689.728 300.5";rotation = "0 0 1 176.815";scale = "0.125 3.23148 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "21";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "242.516 -733.081 303.75";rotation = "0.598746 -0.566351 0.566348 118.178";scale = "0.125 0.166666 160";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "242.515 -733.082 300.653";rotation = "0.706971 0.0196589 0.706969 177.748";scale = "0.125 0.166666 159";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "242.518 -733.322 300.893";rotation = "0.566352 0.598744 0.56635 118.216";scale = "1.072 79.5199 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "25";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "242.515 -733.082 302.729";rotation = "0.706971 0.0196589 0.706969 177.748";scale = "0.387 0.166666 159";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "282.079 -730.88 300.5";rotation = "-0.0277983 0.999614 1.25333e-05 180";scale = "19.9373 0.166667 1";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.097 -678.288 300.5";rotation = "0 0 1 86.8146";scale = "1.38866 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "21";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "272.817 -643.302 300.5";rotation = "0 0 -1 3.18524";scale = "2.03465 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "257.682 -702.052 299.99";rotation = "-0.0196588 0.706971 0.706969 177.748";scale = "0.52 0.519998 7.52015";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "257.662 -702.053 300.49";rotation = "-0.0277808 0.999228 -0.0277787 90.0443";scale = "3.02 7.52014 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.836 -655.39 299.5";rotation = "0.687181 0.726486 9.20888e-07 180";scale = "7.7959 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "263.903 -674.572 299.75";rotation = "0.999228 0.0277809 -0.0277861 90.0444";scale = "0.125 0.166666 77.5318";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "273.176 -643.031 301.784";rotation = "-0.0196501 0.706968 0.706973 177.749";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "35";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "237.365 -640.941 295.849";rotation = "0.555956 0.587755 0.587756 238.144";scale = "0.125 0.166666 160";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.821 -650.623 299.75";rotation = "0.555955 0.587758 0.587754 238.144";scale = "0.125 0.166666 11.636";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.743 -636.524 297.798";rotation = "-0.706963 -0.0196395 0.706978 177.746";scale = "0.849998 0.166667 159";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.22 -695.896 296.5";rotation = "0 0 -1 93.1853";scale = "2.00001 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.443 -699.89 296.25";rotation = "0.999228 0.0277867 -0.0277771 90.0449";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "265.476 -650.474 300";rotation = "0 0 -1 93.1853";scale = "0.125 2.10652 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "260.869 -708.157 296.25";rotation = "-0.999228 -0.0277792 -0.0277836 90.0432";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.457 -700.14 296.5";rotation = "0 0 -1 3.185";scale = "0.125 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.565 -675.66 296.098";rotation = "0 0 1 86.8151";scale = "0.99999 0.166666 6.80398";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "259.109 -708.005 296.5";rotation = "0 0 -1 3.18524";scale = "0.999545 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "257.111 -708.116 296.25";rotation = "0.598746 -0.566343 0.566356 118.179";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.887 -707.878 298";rotation = "-0.587752 0.555959 0.587756 238.145";scale = "0.75 0.166667 15.0001";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "261.507 -719.639 297.893";rotation = "-0.58775 0.555959 0.587758 238.144";scale = "0.804 0.166667 23";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.431 -700.392 296.25";rotation = "-0.999228 -0.0277775 -0.0277871 90.0432";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "268.475 -643.008 300";rotation = "0 0 -1 93.1853";scale = "3.77565 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.655 -732.156 299.751";rotation = "-0.0196513 0.706978 0.706963 177.747";scale = "6.0889 0.166667 191.494";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.562 -645.985 296.25";rotation = "0.555957 0.587754 0.587756 238.144";scale = "0.125 0.166666 11.638";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "237.145 -636.984 299.749";rotation = "0.555954 0.58776 0.587752 238.144";scale = "0.125 0.166666 160";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "276.994 -634.767 300.499";rotation = "-0.0277902 0.999614 -3.18492e-06 180";scale = "19.9554 0.166667 1";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "261.091 -712.151 296.25";rotation = "-0.999228 -0.0277792 -0.0277836 90.0432";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "264.148 -683.476 297.75";rotation = "-0.0277835 0.999228 -0.0277864 90.0444";scale = "0.875003 0.166667 49.7568";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.862 -708.13 296.5";rotation = "0 0 1 86.8146";scale = "0.125 0.166666 6.00202";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "237.143 -636.947 303.75";rotation = "0.555959 0.587756 0.587752 238.144";scale = "0.125 0.166666 160";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "269.72 -726.733 300.5";rotation = "0 0 -1 3.185";scale = "0.125 3.05125 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "237.146 -637.188 300.956";rotation = "0.566354 0.598741 0.566351 118.216";scale = "1.21699 79.5198 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "25";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "237.143 -636.947 300.716";rotation = "0.706971 0.0196569 0.706969 177.748";scale = "0.125 0.166666 159";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "237.144 -636.984 303.081";rotation = "0.0277796 -0.999228 -0.0277784 90.0437";scale = "0.25 0.166667 159";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "237.143 -636.947 302.413";rotation = "0.706971 0.0196569 0.706969 177.748";scale = "0.125 0.166666 159";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "269.501 -722.662 300.25";rotation = "-0.999228 -0.0277779 -0.0277836 90.0438";scale = "0.125 0.166666 17.3076";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.535 -645.493 296.328";rotation = "0.555957 0.587754 0.587756 238.144";scale = "0.125 0.166666 11.638";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.509 -645.027 296.639";rotation = "0.555957 0.587754 0.587756 238.144";scale = "0.125 0.166666 11.638";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.483 -675.263 295.75";rotation = "-0.0196553 0.706974 -0.706966 182.253";scale = "6.0944 0.166667 10.3935";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.755 -692.756 296";rotation = "0 0 1 86.8146";scale = "2.16342 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.079 -681.95 296";rotation = "0 0 -1 93.1853";scale = "0.99998 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.474 -644.391 296.874";rotation = "0.555957 0.587754 0.587756 238.144";scale = "0.125 0.166666 11.638";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.447 -643.921 297.286";rotation = "0.555957 0.587754 0.587756 238.144";scale = "0.125 0.166666 11.638";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.674 -688.232 296";rotation = "0 0 -1 3.18549";scale = "2.00009 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "248.719 -700.57 296.25";rotation = "0.598745 -0.566344 0.566356 118.166";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "252.007 -669.441 296.099";rotation = "0 0 1 176.815";scale = "4.4684 0.166666 6.80402";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "248.72 -700.57 298";rotation = "0.0277767 -0.999228 -0.0277759 90.0443";scale = "0.75 0.166667 14.9971";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.415 -643.346 297.653";rotation = "0.555957 0.587754 0.587756 238.144";scale = "0.125 0.166666 11.638";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.834 -712.137 296.501";rotation = "0 0 1 176.815";scale = "2.00009 0.166666 6.00202";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "261.522 -719.889 296.5";rotation = "0 0 1 86.8151";scale = "0.125 0.166666 6.00202";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "260.828 -711.915 296.25";rotation = "-0.59874 0.566358 0.566347 118.138";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.594 -659.909 296.599";rotation = "0 0 1 176.815";scale = "0.125 6.24933 5.79998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.101 -651.049 296.349";rotation = "-0.0196564 0.706971 -0.706969 182.252";scale = "0.125 0.166666 35.996";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.384 -642.78 298.121";rotation = "0.555957 0.587754 0.587756 238.144";scale = "0.125 0.166666 11.638";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "265.503 -725.514 296";rotation = "-5.99809e-06 8.47269e-06 1 76.7179";scale = "0.5 0.5 0.499999";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "7";isSwitchedOff = "1";switchRadius = "150";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.349 -642.151 298.56";rotation = "0.555957 0.587754 0.587756 238.144";scale = "0.125 0.166666 11.638";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "252.645 -704.358 296.5";rotation = "0 0 -1 93.1853";scale = "0.125 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.271 -645.25 300";rotation = "0 0 -1 93.1853";scale = "2.571 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.318 -641.593 298.867";rotation = "0.555957 0.587754 0.587756 238.144";scale = "0.125 0.166666 11.638";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.101 -722.824 300.501";rotation = "0 0 -1 3.185";scale = "3.5665 0.166666 6.00202";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.292 -641.121 299.25";rotation = "0.555957 0.587754 0.587756 238.144";scale = "0.125 0.166666 11.638";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "249.204 -673.705 296.098";rotation = "0 0 -1 3.185";scale = "5.00023 0.166666 6.80398";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.272 -640.778 299.25";rotation = "0.555957 0.587754 0.587756 238.144";scale = "0.125 0.166666 11.64";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "265.486 -707.516 295.75";rotation = "-0.555954 -0.587755 0.587758 238.144";scale = "9.99998 0.166667 48.7092";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "253.076 -712.096 296.25";rotation = "-0.019657 0.706975 0.706965 177.748";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "252.66 -704.608 298.001";rotation = "-0.566352 -0.598739 0.566354 118.178";scale = "0.750247 0.166667 15.0001";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.995 -663.592 296.099";rotation = "0 0 1 86.8151";scale = "1.99998 0.166666 6.79998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "247.528 -680.688 295.75";rotation = "-0.0196556 0.706973 -0.706967 182.253";scale = "8.21947 0.166667 15.5687";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "247.823 -678.038 296.098";rotation = "0 0 1 86.8151";scale = "1.99998 0.166666 6.80398";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "248.455 -700.335 297.988";rotation = "-0.587752 0.555959 0.587756 238.145";scale = "0.756 0.166667 15.0001";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.559 -716.214 296.488";rotation = "0 0 -1 3.185";scale = "0.999807 0.166666 6.00202";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "248.039 -692.846 296.25";rotation = "-0.999228 -0.0277779 -0.0277836 90.0438";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "253.561 -716.326 296.25";rotation = "0.555952 0.58776 0.587754 238.145";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.131 -638.237 299.75";rotation = "0.555955 0.587758 0.587754 238.144";scale = "1.1945 0.166666 11.638";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "257.278 -720.125 296.501";rotation = "0 0 1 176.815";scale = "2.00009 0.166666 6.00202";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "248.47 -700.584 296.5";rotation = "0 0 1 86.8151";scale = "0.125 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "246.333 -686.721 296.5";rotation = "0 0 1 86.8146";scale = "0.999992 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "261.272 -719.903 296.25";rotation = "-0.59874 0.566358 0.566347 118.138";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "246.222 -684.724 296.25";rotation = "-0.999228 -0.0277841 -0.0277824 90.0444";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "AudioDep";position = "265.373 -637.137 300";rotation = "0 0 1 176.731";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2000343";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "244.408 -704.816 298.001";rotation = "0.0277783 -0.999228 -0.027777 90.0437";scale = "0.750255 0.166667 15.9987";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "252.396 -704.372 296.25";rotation = "-0.55596 -0.587751 0.587756 238.144";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "246.624 -665.963 299.499";rotation = "0.726481 -0.687187 -1.58522e-06 180";scale = "1.76124 0.166667 5.802";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "261.746 -640.139 299.99";rotation = "0.555956 0.587756 0.587755 238.145";scale = "4.32344 3.52 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "246.82 -669.479 296.349";rotation = "-0.0196517 0.706969 0.706972 177.748";scale = "0.125 0.166666 15.0897";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "253.409 -718.087 296.501";rotation = "0 0 -1 93.1853";scale = "0.999992 0.166666 6.00202";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "253.52 -720.084 296.25";rotation = "-0.019657 0.706975 0.706965 177.748";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "248.278 -707.978 296.501";rotation = "0 0 1 176.815";scale = "1.12523 0.166666 6.00202";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "244.281 -692.805 296";rotation = "0 0 -1 3.185";scale = "2.00009 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.025 -707.88 296.25";rotation = "0.555959 0.587754 -0.587754 121.856";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.835 -723.582 296.501";rotation = "0 0 -1 3.185";scale = "5.26363 0.166666 6.00202";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "243.128 -680.39 296";rotation = "0 0 -1 93.1853";scale = "1.99997 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "244.213 -696.815 296.5";rotation = "0 0 -1 93.1853";scale = "0.125 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "246.415 -662.196 296.599";rotation = "0 0 -1 93.1847";scale = "0.125 0.166666 5.802";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.15 -723.592 296.25";rotation = "0.999228 0.0277834 -0.0277777 90.0443";scale = "0.125 0.166666 31.9998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.15 -723.592 298.001";rotation = "-0.587752 0.555958 0.587757 238.144";scale = "0.750255 0.166667 30.9996";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "247.014 -659.557 296.099";rotation = "0 0 -1 3.18475";scale = "2.00009 0.166666 6.79998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "244.643 -704.553 297.876";rotation = "-0.587752 0.555958 0.587757 238.144";scale = "0.812752 0.166667 15.0001";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "244.644 -704.553 296.25";rotation = "-0.0196563 0.706975 0.706965 177.748";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "242.068 -689.039 296";rotation = "0 0 -1 3.18524";scale = "1.00004 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "253.737 -644.511 296.598";rotation = "0 0 -1 3.18451";scale = "0.125 2.81634 5.79998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "242.03 -724.35 296.25";rotation = "0.555955 0.587756 0.587756 238.145";scale = "0.125 0.166666 48.7112";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "253.944 -648.23 296.349";rotation = "0.999228 0.0277738 -0.0277785 90.0443";scale = "0.125 0.166666 15.8982";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "243.038 -664.609 296.099";rotation = "0 0 -1 93.1847";scale = "2.53667 0.166666 6.79998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.821 -689.163 300";rotation = "0 0 -1 3.18549";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.821 -689.164 296";rotation = "0 0 -1 3.18549";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.337 -650.785 296.349";rotation = "-0.555959 -0.587752 0.587756 238.145";scale = "0.125 0.166666 28.1436";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.352 -681.143 303.75";rotation = "0.587756 -0.555957 0.587754 238.144";scale = "0.125 0.166666 15.5682";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "247.062 -651.19 296.599";rotation = "0 0 1 176.815";scale = "3.39325 0.166666 5.79998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.338 -680.893 300";rotation = "0 0 -1 3.18524";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "247.156 -723.814 298.001";rotation = "-0.58775 0.555959 0.587758 238.144";scale = "0.750255 0.166667 30.9996";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "246.295 -708.338 296.25";rotation = "0.0196519 -0.706968 0.706972 177.748";scale = "0.125 0.166666 31";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "240.658 -649.22 296.349";rotation = "0.55596 0.587757 0.58775 238.145";scale = "0.125 0.166666 27.142";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "246.933 -648.87 296.599";rotation = "0 0 -1 93.1847";scale = "0.125 4.52367 5.79998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.836 -689.413 301.75";rotation = "-0.566352 -0.59874 0.566353 118.178";scale = "0.875003 0.166667 79.0002";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.836 -689.413 297.75";rotation = "-0.566352 -0.59874 0.566353 118.178";scale = "0.875003 0.166667 79.0002";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.835 -689.413 295.75";rotation = "-0.999228 -0.0277809 -0.0277879 90.0444";scale = "0.125 0.166666 80";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.083 -689.594 299.75";rotation = "0.555954 0.587755 0.587758 238.144";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.834 -689.413 299.75";rotation = "-0.999228 -0.0277828 -0.0277861 90.0444";scale = "0.125 0.166666 88";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.835 -689.413 303.75";rotation = "0.587758 -0.555955 0.587754 238.144";scale = "0.125 0.166666 88";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.083 -689.594 295.75";rotation = "0.555954 0.587753 0.58776 238.144";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "249.756 -727.844 300.501";rotation = "0 0 -1 3.185";scale = "0.125 3.05129 6.00202";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.083 -689.594 301.75";rotation = "0.0277796 -0.999228 -0.0277784 90.0437";scale = "0.875003 0.166667 14.9992";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.013 -732.414 300.25";rotation = "0.999228 0.0277822 -0.0277784 90.0443";scale = "0.125 0.166666 17.3076";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.571 -689.177 297.75";rotation = "-0.706963 -0.0196395 0.706978 177.746";scale = "0.875003 0.166667 14.9992";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "235.369 -681.365 299.75";rotation = "-0.999228 -0.027786 -0.0277799 90.0438";scale = "2.11978 0.166666 15.5684";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.6 -681.324 299.75";rotation = "0.598748 -0.566347 0.56635 118.179";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.571 -689.177 303.75";rotation = "-0.0277844 0.999228 -0.0277842 90.0444";scale = "0.125 0.166666 14.9992";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "235.595 -681.102 296.098";rotation = "0 0 -1 3.18549";scale = "1.9996 0.166666 6.802";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.853 -685.458 303.75";rotation = "0.555958 0.587752 0.587757 238.144";scale = "1.94606 0.166667 14.9551";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.6 -681.324 295.849";rotation = "0.598744 -0.566354 0.566347 118.145";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.6 -681.324 301.75";rotation = "0.0277777 -0.999228 -0.0277768 90.0437";scale = "0.875003 0.166667 14.9972";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.088 -680.907 303.75";rotation = "-0.0277822 0.999228 -0.0277821 90.0443";scale = "0.125 0.166666 14.9972";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "237.13 -641.204 301.75";rotation = "-0.566352 -0.598739 0.566354 118.178";scale = "0.875003 0.166667 79.0006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.323 -680.644 297.924";rotation = "-0.587752 0.555958 0.587757 238.144";scale = "0.91275 0.166667 79.0002";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.324 -680.644 295.849";rotation = "0.999228 0.0277843 -0.0277858 90.0438";scale = "0.125 0.166666 80";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.324 -680.644 299.75";rotation = "0.999228 0.0277798 -0.0277856 90.0449";scale = "0.125 0.166666 88";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "239.324 -680.644 303.75";rotation = "0.566353 0.598742 0.56635 118.178";scale = "0.125 0.166666 87.9998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "241.12 -650.357 297.659";rotation = "-0.598738 0.566355 0.566352 118.179";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "6";frequency = "5";teleMode = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "240.421 -649.483 297.749";rotation = "-0.566351 -0.598738 0.566356 118.134";scale = "0.874748 0.166667 3.6458";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "239.823 -650.429 297.706";rotation = "0.555964 0.58775 0.587753 238.145";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "6";frequency = "5";teleMode = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.833 -689.608 296";rotation = "0 0 -1 93.1853";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.819 -689.358 303.75";rotation = "0.566352 0.598745 0.566348 118.178";scale = "0.125 0.166666 15.5684";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.264 -697.346 299.75";rotation = "0.999228 0.0277849 -0.0277813 90.0444";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.055 -693.602 300";rotation = "0 0 -1 93.1853";scale = "2.12498 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.848 -689.858 297.75";rotation = "-0.566352 -0.598741 0.566352 118.178";scale = "0.875003 0.166667 15.9999";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.264 -697.346 295.75";rotation = "0.999228 0.0277859 -0.0277842 90.0438";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.351 -681.338 296.099";rotation = "0 0 1 86.8146";scale = "0.125 0.166666 6.802";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.92 -673.6 299.75";rotation = "-0.999228 -0.0277863 -0.0277811 90.0438";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.143 -677.594 300";rotation = "0 0 1 86.8146";scale = "1.99998 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.337 -681.088 297.799";rotation = "-0.587749 0.555958 0.587759 238.144";scale = "0.850253 0.166667 15";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.92 -673.6 295.849";rotation = "-0.999228 -0.0277865 -0.0277809 90.0449";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.907 -673.35 300";rotation = "0 0 -1 3.18549";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.101 -681.352 297.799";rotation = "-0.0277839 0.999228 -0.0277837 90.0444";scale = "0.849998 0.166666 6.95074";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "242.044 -729.102 296";rotation = "0 0 1 86.8146";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "243.875 -731.303 304.001";rotation = "0 0 -1 92.5877";scale = "1 1 1";team = "2";ownerGUID = "2000343";powerFreq = "1";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "227.938 -691.566 296.5";rotation = "0 0 -1 93.1853";scale = "0.999985 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "228.049 -693.563 296.25";rotation = "0.999228 0.0277782 -0.0277841 90.0443";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "227.411 -682.092 296.25";rotation = "-0.999228 -0.0277836 -0.02778 90.0443";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "227.397 -681.843 296.5";rotation = "0 0 1 86.8146";scale = "2.12503 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.393 -685.929 303.75";rotation = "0.598748 -0.566348 0.566348 118.178";scale = "5.946 0.166667 15.9447";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "227.189 -678.099 296.25";rotation = "-0.999228 -0.0277836 -0.0277801 90.0443";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "237.115 -640.955 296.099";rotation = "0 0 -1 93.1853";scale = "0.125 0.166666 6.802";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "226.316 -693.91 296.5";rotation = "0 0 -1 3.18524";scale = "1.00004 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.319 -694.021 296.25";rotation = "0.598746 -0.566349 0.56635 118.179";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.431 -678.057 296.25";rotation = "0.555957 0.587756 0.587754 238.144";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "238.461 -638.193 304.001";rotation = "0 0 -1 94.2189";scale = "1 1 1";team = "2";ownerGUID = "2000343";powerFreq = "1";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.417 -682.315 296.25";rotation = "-0.999228 -0.0277836 -0.02778 90.0443";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.417 -682.315 296.5";rotation = "0 0 1 86.8146";scale = "2 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.167 -695.788 296.5";rotation = "0 0 1 86.8146";scale = "1.00294 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.055 -693.785 296.25";rotation = "-0.999228 -0.0277844 -0.0277793 90.0438";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.195 -678.321 296.25";rotation = "-0.999228 -0.0277836 -0.0277801 90.0443";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.805 -697.817 301.996";rotation = "-0.0196595 0.706971 0.706969 177.748";scale = "0.125 1.33067 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "222.073 -689.639 296.5";rotation = "0 0 -1 3.18524";scale = "0.999798 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.075 -689.75 296.25";rotation = "0.555956 0.587758 0.587752 238.144";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.862 -686.571 299.75";rotation = "0.555957 0.58776 0.58775 238.144";scale = "5.94605 0.166667 39.0002";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.862 -686.571 295.849";rotation = "0.555962 0.587752 0.587753 238.144";scale = "5.94605 0.166667 38.9982";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.558 -698.693 299.75";rotation = "0.598745 -0.566348 0.566352 118.178";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.379 -686.184 296.493";rotation = "0 0 1 176.815";scale = "0.999802 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.559 -698.693 295.75";rotation = "0.598745 -0.566352 0.566348 118.165";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.376 -686.073 296.25";rotation = "-0.598744 0.566347 0.566354 118.178";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.437 -678.28 296.25";rotation = "0.555957 0.587756 0.587754 238.144";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.029 -697.61 301.746";rotation = "-0.706969 -0.0196511 0.706971 177.748";scale = "0.873 0.166667 38.9984";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.56 -698.693 297.75";rotation = "0.0277796 -0.999228 -0.0277784 90.0437";scale = "0.875003 0.166667 38.9962";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.028 -697.609 303.742";rotation = "-0.0277844 0.999228 -0.0277842 90.0444";scale = "0.125 0.166666 38.9984";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.184 -678.182 296.5";rotation = "0 0 -1 3.18524";scale = "2.87495 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.187 -674.448 299.75";rotation = "0.555954 0.58776 0.587752 238.144";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.172 -673.892 296.098";rotation = "0 0 -1 3.18549";scale = "5.00023 0.166666 6.802";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.187 -674.448 295.849";rotation = "0.555958 0.587753 0.587756 238.144";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.657 -673.364 302";rotation = "-0.0277844 0.999228 -0.0277842 90.0444";scale = "1 0.166666 39.0002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.346 -694.086 303.742";rotation = "0.555956 0.587757 -0.587754 121.856";scale = "0.125 0.166666 9.8953";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.923 -691.511 296.5";rotation = "0 0 -1 93.1853";scale = "1.00001 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.034 -693.508 296.25";rotation = "0.999228 0.0277807 -0.0277813 90.0449";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.409 -682.287 296.5";rotation = "0 0 -1 3.18524";scale = "0.125 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "219.564 -677.717 300";rotation = "0 0 -1 4.24603";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.301 -693.855 296.5";rotation = "0 0 -1 3.18524";scale = "1.00029 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.304 -693.966 296.25";rotation = "0.598746 -0.566346 0.566353 118.179";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.665 -682.496 296.25";rotation = "0.598746 -0.566346 0.566353 118.179";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.078 -694.129 303.75";rotation = "-0.0196511 0.706975 0.706966 177.748";scale = "2.88145 0.166667 39.5682";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.365 -698.12 301.996";rotation = "-0.0196595 0.706971 0.706969 177.748";scale = "0.125 1.33067 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.443 -678.502 296.25";rotation = "0.555957 0.587758 0.587752 238.144";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.163 -682.412 296.5";rotation = "0 0 1 86.8151";scale = "0.125 1.33306 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.749 -688.496 296.5";rotation = "0 0 1 86.8151";scale = "2.8728 0.166666 6";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.402 -682.26 296.25";rotation = "-0.999228 -0.0277818 -0.0277796 90.0438";scale = "0.125 0.166666 24";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedGravityField1";position = "217.898 -698.531 303.502";rotation = "-0.0277978 0.999614 1.2671e-06 180";scale = "4.27 4.27 4.27";team = "2";ownerGUID = "2000343";needsfit = "1";velocityMod = "1";gravityMod = "0";appliedForce = "0.00136204 -0.00477798 1000";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.907 -694.389 303.742";rotation = "0.555956 0.587757 -0.587754 121.856";scale = "0.125 0.166666 11.1593";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.866 -690.719 296";rotation = "0 0 -1 3.18524";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.851 -690.47 299.75";rotation = "0.999228 0.0277863 -0.0277829 90.0438";scale = "0.125 0.166666 15.5685";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.1 -694.963 295.994";rotation = "0 0 1 86.8146";scale = "1.99996 0.166666 16.012";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.879 -690.969 295.75";rotation = "-0.999228 -0.027783 -0.0277814 90.0443";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.173 -678.705 296.098";rotation = "0 0 -1 3.18549";scale = "0.125 2.66668 6.802";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.367 -682.2 301.75";rotation = "-0.587752 0.555958 0.587757 238.144";scale = "0.875003 0.166667 15";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.368 -682.2 299.75";rotation = "0.999228 0.0277798 -0.0277856 90.0449";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.951 -674.711 303.75";rotation = "0.587756 -0.555956 0.587754 238.144";scale = "0.125 0.166666 15";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.368 -682.2 295.849";rotation = "0.999228 0.0277825 -0.0277843 90.0438";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.937 -674.462 300";rotation = "0 0 -1 93.1853";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.937 -674.462 296.099";rotation = "0 0 -1 93.1853";scale = "0.125 0.166666 6.802";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.466 -690.881 299.75";rotation = "0.999228 0.0277863 -0.0277829 90.0438";scale = "3.57378 0.166666 15.5684";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.145 -691.817 301.5";rotation = "0.555954 0.587755 0.587758 238.144";scale = "0.125 1.33333 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.146 -691.817 295.75";rotation = "0.0277808 -0.999228 -0.0277837 90.0443";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.903 -687.682 303.75";rotation = "0.706971 0.0196589 0.706969 177.748";scale = "0.125 2.92813 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.662 -683.547 301.5";rotation = "0.598748 -0.566347 0.56635 118.179";scale = "0.125 1.33333 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.881 -691.275 299.5";rotation = "-0.0277877 0.999614 -5.78908e-06 180";scale = "4.87502 0.166667 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.662 -683.547 295.849";rotation = "0.0277819 -0.999228 -0.0277847 90.0444";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.411 -683.254 295.75";rotation = "-0.566351 -0.598746 0.566348 118.178";scale = "0.125 6.8339 15.5687";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.662 -683.547 297.799";rotation = "0.0277796 -0.999228 -0.0277784 90.0437";scale = "0.850253 0.166667 39.0002";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.25 -683.542 299.75";rotation = "-0.999228 -0.027786 -0.0277799 90.0438";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.039 -683.609 299.75";rotation = "-0.999228 -0.027786 -0.0277799 90.0438";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.29 -690.561 299.75";rotation = "0.555954 0.587759 -0.587754 121.856";scale = "0.125 0.166666 11.4617";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.24 -689.679 299.75";rotation = "0.555954 0.587759 -0.587754 121.856";scale = "0.125 0.166666 11.4597";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.171 -688.437 299.75";rotation = "0.555954 0.587759 -0.587754 121.856";scale = "0.125 0.166666 11.4597";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.11 -687.331 299.75";rotation = "0.555954 0.587759 -0.587754 121.856";scale = "0.125 0.166666 11.4597";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.005 -683.667 299.75";rotation = "-0.999228 -0.027786 -0.0277799 90.0438";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.019 -685.709 299.75";rotation = "0.555954 0.587759 -0.587754 121.856";scale = "0.125 0.166666 11.4597";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.943 -684.328 299.75";rotation = "0.555954 0.587759 -0.587754 121.856";scale = "0.125 0.166666 11.4597";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.951 -683.725 299.75";rotation = "-0.999228 -0.027786 -0.0277799 90.0438";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.105 -731.325 300";rotation = "0 0 1 176.814";scale = "20.1254 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.957 -683.781 299.75";rotation = "-0.999228 -0.027786 -0.0277799 90.0438";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.896 -691.831 299.5";rotation = "0.687181 0.726486 9.20888e-07 180";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.882 -691.581 303.75";rotation = "0.566352 0.598745 0.566348 118.178";scale = "0.125 0.166666 15.5686";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.412 -683.56 299.5";rotation = "0.726487 -0.68718 -8.71063e-07 180";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "241.905 -731.112 299.75";rotation = "-0.598747 0.56635 0.566348 118.178";scale = "1.12499 0.166666 160";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.771 -707.556 299.75";rotation = "-0.01966 0.706971 0.706969 177.748";scale = "0.125 0.166666 32.0002";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "241.905 -731.112 303.75";rotation = "-0.598744 0.566349 0.566352 118.178";scale = "1.12469 0.166666 160";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.34 -699.818 300";rotation = "0 0 -1 93.1853";scale = "4.12502 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.887 -692.082 297.75";rotation = "-0.566352 -0.59874 0.566353 118.178";scale = "0.875003 0.166667 32.0004";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.91 -692.08 295.75";rotation = "-0.566352 -0.598745 0.566348 118.165";scale = "0.125 0.166666 31.0002";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.327 -735.318 300";rotation = "0 0 1 86.8146";scale = "0.125 26.8335 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.537 -667.835 299.75";rotation = "-0.999228 -0.0277863 -0.027781 90.0438";scale = "0.125 0.166666 32";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.982 -675.823 300";rotation = "0 0 1 86.8146";scale = "4 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.4 -683.311 297.75";rotation = "-0.58775 0.555959 0.587758 238.144";scale = "0.875003 0.166667 30.9996";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.538 -667.835 295.75";rotation = "-0.999228 -0.027783 -0.0277814 90.0443";scale = "0.125 0.166666 30.9996";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.177 -643.177 300.002";rotation = "0 0 1 176.815";scale = "20.1251 0.166666 6.99798";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.32 -685.962 295.75";rotation = "-0.555953 -0.587754 0.587761 238.144";scale = "9.0711 0.166667 6.99684";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.523 -667.585 300";rotation = "0 0 -1 3.18549";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "236.754 -638.972 299.751";rotation = "-0.555956 -0.587751 0.58776 238.144";scale = "1.12503 0.166666 160";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "156.878 -643.418 303.75";rotation = "0.555955 0.587756 0.587756 238.144";scale = "1.12498 0.166666 159.999";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.955 -639.184 300.001";rotation = "0 0 -1 93.1853";scale = "0.125 26.8335 6.99798";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "191.296 -706.246 295.5";rotation = "-0.703472 0.710723 9.00906e-07 180";scale = "1 1 1";team = "2";ownerGUID = "2000343";powerFreq = "1";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "187.948 -706.11 300";rotation = "0 0 -1 93.8757";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.688 -688.167 296";rotation = "0 0 1 86.8146";scale = "8.07113 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.791 -672.05 295.75";rotation = "-0.999228 -0.0277837 -0.0277819 90.0443";scale = "0.125 0.166666 64.5688";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "186.009 -669.902 300";rotation = "0 0 -1 93.2495";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "188.72 -670.076 295.5";rotation = "-0.692974 0.720962 9.13885e-07 180";scale = "1 1 1";team = "2";ownerGUID = "2000343";powerFreq = "1";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "187.624 -704.338 301.584";rotation = "-0.999228 -0.0277835 -0.0277836 90.0438";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "45";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "184.472 -704.263 303.5";rotation = "0.999614 0.0277916 3.52283e-08 180";scale = "3.92655 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "181.422 -670.38 300";rotation = "0 0 -1 93.7359";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.142 -672.097 303.5";rotation = "-0.0277928 0.999614 1.2671e-06 180";scale = "4.18423 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.344 -704.882 303.75";rotation = "0.706971 0.0196569 0.706969 177.748";scale = "0.125 0.166666 37.9966";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.036 -708.098 295.75";rotation = "-0.0196551 0.706972 0.706968 177.748";scale = "4.75007 0.166667 6.99972";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.565 -708.876 295.75";rotation = "0.0277808 -0.999228 -0.0277831 90.0443";scale = "0.125 0.166666 38.9562";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.787 -708.112 299.75";rotation = "-0.0196588 0.706971 0.706969 177.748";scale = "4.87502 0.166666 8.00004";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.035 -707.792 299.75";rotation = "-0.0277839 0.999228 -0.0277837 90.0444";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.565 -708.876 297.75";rotation = "0.0277787 -0.999228 -0.0277776 90.0437";scale = "0.875003 0.166667 37.9546";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.8 -708.362 300";rotation = "0 0 1 176.815";scale = "4.87502 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.498 -671.632 303.75";rotation = "-0.0277839 0.999228 -0.0277837 90.0444";scale = "0.125 0.166666 38.9502";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.399 -669.846 299.75";rotation = "-0.59874 0.566357 0.566348 118.178";scale = "0.99999 0.166667 39.0002";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.804 -668.683 299.75";rotation = "0.555954 0.58776 0.587752 238.144";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "180.765 -668.128 296";rotation = "0 0 -1 3.18524";scale = "5.01275 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.805 -668.683 295.75";rotation = "0.0277808 -0.999228 -0.0277837 90.0443";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.273 -667.599 302";rotation = "-0.0277844 0.999228 -0.0277842 90.0444";scale = "1 0.166666 38.9962";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.32 -704.048 297.75";rotation = "-0.0277835 0.999228 -0.0277864 90.0444";scale = "0.875003 0.166667 30.0004";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.344 -704.882 295.75";rotation = "0.0277808 -0.999228 -0.0277837 90.0443";scale = "0.125 0.166666 30.0004";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "181.038 -708.209 303.75";rotation = "0.566353 0.598744 0.566349 118.158";scale = "0.125 7.66617 6.9998";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.039 -672.231 296";rotation = "0 0 -1 3.18524";scale = "4.00017 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.051 -672.675 295.75";rotation = "0.0277817 -0.999228 -0.0277841 90.0444";scale = "0.125 0.166666 32.0014";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "178.556 -668.506 303.75";rotation = "0.587756 -0.555956 0.587754 238.144";scale = "0.125 7.83327 6.99996";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "177.04 -672.091 295.75";rotation = "-0.587755 0.555954 0.587758 238.144";scale = "0.125 6.6593 7.00008";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "176.895 -704.935 301.75";rotation = "-0.56635 -0.598744 0.566351 118.179";scale = "0.875 0.166666 6.99958";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "174.022 -672.299 301.75";rotation = "-0.587754 0.555955 0.587758 238.144";scale = "0.875 0.166666 7.07898";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.58 -704.674 303.75";rotation = "0.566352 0.598745 0.566348 118.165";scale = "0.125 13.167 63.5686";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.094 -704.896 300";rotation = "0 0 -1 93.1853";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.08 -704.646 297.5";rotation = "-0.0196563 0.706971 -0.70697 182.252";scale = "0.125 1.33333 1";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.301 -708.64 295.75";rotation = "-0.587754 0.555955 0.587758 238.144";scale = "0.125 0.166666 6.99978";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.315 -708.89 299.5";rotation = "-0.0277928 0.999614 1.2671e-06 180";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.801 -672.689 299.5";rotation = "0.999614 0.0277937 3.5231e-08 180";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.763 -672.441 299.75";rotation = "0.999228 0.0277798 -0.0277856 90.0449";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.555 -668.697 300";rotation = "0 0 -1 93.1853";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.555 -668.697 299.5";rotation = "0.687181 0.726486 9.20888e-07 180";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.349 -705.104 297.75";rotation = "0.706971 0.0196544 0.706969 177.748";scale = "0.875003 0.166667 7.0008";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.844 -704.91 295.75";rotation = "0.706971 0.0196567 -0.706969 182.252";scale = "0.125 0.166666 7.00282";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.46 -707.101 295.75";rotation = "0.598746 -0.566351 0.566348 118.22";scale = "0.874987 0.166667 7.0008";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.068 -709.015 304";rotation = "-0.0277928 0.999614 1.2671e-06 180";scale = "1.00004 0.166666 17";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.551 -672.703 297.75";rotation = "-0.0277844 0.999228 -0.0277845 90.0444";scale = "0.875003 0.166667 6.95074";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.081 -672.896 295.75";rotation = "0.0277817 -0.999228 -0.0277841 90.0444";scale = "0.125 0.166666 6.95074";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.314 -668.821 303.963";rotation = "-0.0277928 0.999614 1.2671e-06 180";scale = "0.994795 0.166666 16.982";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.099 -705.118 296";rotation = "0 0 -1 93.1853";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.307 -708.862 300";rotation = "-0.0196563 0.706971 0.706969 177.748";scale = "0.125 2.66667 6.99972";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.307 -708.862 295.75";rotation = "-0.587754 0.555955 0.587758 238.144";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.831 -672.91 299.5";rotation = "0.999614 0.0277937 3.5231e-08 180";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.598 -669.167 299.982";rotation = "-0.0196568 0.706971 -0.706969 182.252";scale = "0.125 2.65404 6.99996";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.817 -672.66 295.75";rotation = "-0.587755 0.555954 0.587758 238.144";scale = "0.125 0.166666 7.00008";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.844 -704.91 302";rotation = "-0.0277825 0.999228 -0.0277823 90.0443";scale = "1 0.166666 39.0002";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.051 -672.675 302";rotation = "-0.0277822 0.999228 -0.0277821 90.0443";scale = "1 0.166666 38.9842";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.081 -673.786 299.75";rotation = "0.598748 -0.566347 0.56635 118.179";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "155.648 -705.616 299.75";rotation = "-0.0196534 0.706975 0.706965 177.747";scale = "18.3419 0.166667 63.5686";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.72 -698.754 299.998";rotation = "0 0 -1 93.1847";scale = "3.50732 0.166666 7.00202";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "151.881 -688.01 303.309";rotation = "0.598747 -0.566349 0.566349 118.178";scale = "3.76936 3.319 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.737 -681.014 303.5";rotation = "0.687181 0.726486 9.20888e-07 180";scale = "3.50137 0.166666 7";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.124 -706.007 300";rotation = "0 0 1 176.815";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.555 -713.745 302";rotation = "0.566351 0.598745 0.566349 118.171";scale = "1 0.166666 15.0002";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.339 -673.772 300";rotation = "0 0 -1 3.18524";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedLightBase";position = "151.157 -690.124 303.5";rotation = "0.672374 0.740212 9.38285e-07 180";scale = "1 1 1";team = "2";ownerGUID = "2000343";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.095 -669.529 299.5";rotation = "0 0 -1 93.1853";scale = "2 0.166666 9";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.845 -704.91 299.751";rotation = "0.555957 0.587756 -0.587754 121.856";scale = "0.125 0.166666 107.785";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.584 -714.55 300";rotation = "0 0 1 86.8146";scale = "0.125 6.8339 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "131.168 -666.882 301.999";rotation = "0.706971 0.0196596 0.706969 177.748";scale = "1.00025 0.166666 38.9962";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "134.957 -687.194 299.5";rotation = "0.716765 0.697315 8.83911e-07 180";scale = "1 1 1";team = "2";ownerGUID = "2000343";powerFreq = "1";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.978 -689.904 303.75";rotation = "0.55595 0.587759 -0.587758 121.856";scale = "11.9461 0.166667 67.7848";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.61 -710.237 299.75";rotation = "-0.598745 0.566352 0.566348 118.178";scale = "1.99996 0.166666 68.7862";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.859 -669.793 299.75";rotation = "-0.555955 -0.587752 0.58776 238.144";scale = "2.12502 0.166666 67.7868";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.918 -666.896 300";rotation = "0 0 -1 3.18549";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.501 -667.096 300";rotation = "0 0 -1 48.1853";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "126.097 -672.396 301.691";rotation = "-0.845179 -0.377935 -0.377939 99.5921";scale = "1 1 1";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "25";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.992 -693.459 300.5";rotation = "0 0 -1 3.18549";scale = "0.125 0.166666 3";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.866 -691.213 301.546";rotation = "-0.999228 -0.0277817 -0.027787 90.0444";scale = "0.125 1.03067 3.9999";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.992 -693.459 302";rotation = "0 0 -1 3.18549";scale = "0.125 0.166666 3";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.853 -690.963 300.5";rotation = "0 0 -1 3.18549";scale = "0.125 0.166666 3";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.867 -691.213 303.25";rotation = "0.587758 -0.555954 0.587754 238.144";scale = "0.125 0.166666 3.9999";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.853 -690.963 302";rotation = "0 0 -1 3.18549";scale = "0.125 0.166666 3";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "118.816 -702.118 302";rotation = "0.682641 -0.260778 0.682639 209.232";scale = "1 0.166666 39.0012";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "125.472 -705.401 300.001";rotation = "0 0 -1 108.067";scale = "0.5 0.5 0.5";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "5";switchRadius = "200";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "125.253 -707.554 301.798";rotation = "0.260778 0.682638 0.682642 209.232";scale = "0.52 0.519998 0.52";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "117.667 -681.444 302";rotation = "0.674207 0.301484 0.674205 146.446";scale = "1 0.166666 38";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "121.248 -693.668 300.25";rotation = "0.555955 0.587753 0.58776 238.144";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "121.109 -691.172 300.25";rotation = "0.555955 0.587753 0.58776 238.144";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.981 -693.321 300.25";rotation = "-0.0196528 0.706969 0.706971 177.748";scale = "0.8751 0.166667 3.99988";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.742 -693.473 301.436";rotation = "-0.0277844 0.999228 -0.0277842 90.0444";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.603 -690.977 301.511";rotation = "-0.0277844 0.999228 -0.0277842 90.0444";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "121.069 -682.601 300";rotation = "0 0 -1 53.0366";scale = "0.5 0.5 0.5";team = "2";ownerGUID = "2000343";deployed = "1";powerFreq = "45";isSwitchedOff = "1";switchRadius = "150";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "121.012 -693.931 300.25";rotation = "0.999228 0.0277879 -0.0277811 90.0438";scale = "0.125 0.166666 5.99992";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "45";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "118.63 -701.952 300";rotation = "0 0 1 221.815";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "118.444 -701.785 299.75";rotation = "-0.0196583 0.706971 0.706969 177.748";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "117.36 -682.315 300.258";rotation = "-0.566351 -0.598742 0.566352 118.178";scale = "0.25 0.166667 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "117.599 -682.292 300.635";rotation = "-0.598748 0.566345 0.566352 118.178";scale = "19.0201 1.67399 0.48";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "25";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "117.36 -682.315 302.957";rotation = "0.587758 -0.555953 0.587756 238.144";scale = "0.399002 0.166666 38.0002";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "117.36 -682.315 303.75";rotation = "0.587758 -0.555953 0.587756 238.144";scale = "0.125 0.166666 38.0002";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "118.43 -701.536 300";rotation = "0 0 -1 93.1859";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "117.5 -681.63 300";rotation = "0 0 -1 48.1853";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "117.346 -682.066 300";rotation = "0 0 -1 93.1859";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "120.402 -714.057 304";rotation = "0 0 -1 92.1918";scale = "1 1 1";team = "2";ownerGUID = "2000343";powerFreq = "1";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "117.806 -669.77 304";rotation = "0 0 -1 94.0596";scale = "1 1 1";team = "2";ownerGUID = "2000343";powerFreq = "1";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "1024.17 1439.95 209";rotation = "0 0 1 221.744";scale = "1 1 1";team = "1";ownerGUID = "2000343";powerFreq = "1";initialBarrel = "ELFBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "1023.03 1468.94 209";rotation = "0 0 -1 48.1512";scale = "1 1 1";team = "1";ownerGUID = "2000343";powerFreq = "1";initialBarrel = "ELFBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); \ No newline at end of file diff --git a/Univ/Data/2000343/Buildings/20.cs b/Univ/Data/2000343/Buildings/20.cs new file mode 100644 index 0000000..565ca08 --- /dev/null +++ b/Univ/Data/2000343/Buildings/20.cs @@ -0,0 +1,6 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Phantom139" +// Created in mission "Pretty" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.25 -588.886 128.956";rotation = "9.02252e-10 -0.000711785 1 180";scale = "1 1.33333 8";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2000343/Buildings/26.cs b/Univ/Data/2000343/Buildings/26.cs new file mode 100644 index 0000000..434c526 --- /dev/null +++ b/Univ/Data/2000343/Buildings/26.cs @@ -0,0 +1,420 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Phantom139" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "268.506 33.07 106.572";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";nametoset = "Main St.";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "268.24 32.8376 106.589";rotation = "-0.563817 0.603508 -0.563816 117.778";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "268.257 33.087 101";rotation = "0 0 -1 86.1052";scale = "0.16129 0.466677 7.61905";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "269.963 28.7013 100.75";rotation = "0.024038 0.706896 0.706909 182.753";scale = "1.12485 0.166667 55.9998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "276.3 24.7645 100";rotation = "0 0 1 91.9792";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.31 54.858 101";rotation = "0 0 1 3.89485";scale = "10.383 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "271.958 28.5656 100.75";rotation = "0.0240317 0.706907 -0.706898 177.246";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "271.79 59.2602 101";rotation = "0 0 1 92.704";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "272.136 64.7661 101.4";rotation = "0.723429 0.690399 8.75143e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.859 56.5009 100.75";rotation = "0.0240366 0.706907 0.706897 182.753";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.146 9.9362 100.749";rotation = "0.0240368 0.706897 0.706908 182.753";scale = "0.125 0.166666 136";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.301 53.8615 108.129";rotation = "0 0 1 3.89465";scale = "0.624692 0.166666 4.964";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.941 53.818 114.941";rotation = "0 0 1 3.89465";scale = "0.945685 0.166666 3.47";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "272.514 70.9325 101.4";rotation = "0.763446 0.645872 8.18701e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "317.249 53.797 121.518";rotation = "0 0 1 183.895";scale = "1.09979 0.166666 3.872";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "318.96 53.6808 108.129";rotation = "2.70398e-07 2.41413e-06 1 183.895";scale = "0.0862272 0.262745 0.150653";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "252.527 30.2216 104.999";rotation = "-0.563819 0.603504 -0.563818 117.778";scale = "2 0.166666 41.6646";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.514 57.3506 119.718";rotation = "0.603511 0.563817 -0.563813 117.778";scale = "1.69062 0.166666 6.44488";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.396 58.5634 106.663";rotation = "0.603507 0.563816 -0.563818 117.771";scale = "2.29146 0.166666 6.04196";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "320.358 53.5856 114.941";rotation = "2.70398e-07 2.41413e-06 1 183.895";scale = "0.0934644 0.262745 0.105312";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "319.245 53.6615 101";rotation = "1.58106e-05 -6.30429e-05 1 3.89424";scale = "2.10086 0.166667 10.826";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";nametoset = "Office Complex: Under Construction";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.331 61.696 100.5";rotation = "0 0 -1 86.1052";scale = "4.00002 0.166666 81";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "321.107 53.5346 121.518";rotation = "-0.000141138 -5.06315e-07 1 3.89485";scale = "0.101556 0.262745 0.117512";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "323.043 53.403 108.129";rotation = "0 0 1 3.89465";scale = "1.3386 0.166666 4.964";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "320.651 17.2317 100.75";rotation = "5.26925e-06 -3.50146e-06 1 93.8946";scale = "4 5.5 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "324.262 53.32 114.941";rotation = "0 0 1 3.89465";scale = "1.18924 0.166666 3.47";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "320.464 53.5785 129.747";rotation = "0 0 1 183.895";scale = "2.71125 0.166666 3.75602";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.508 52.6223 113.503";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.054 53.9467 114.347";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.297 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.054 53.9467 111.932";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.6605 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "317.253 62.4987 113.399";rotation = "0.354128 -0.379054 -0.854934 95.0761";scale = "0.125 1.07413 18.3723";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.053 53.9467 107.521";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.304 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.508 52.6223 119.097";rotation = "-0.551194 0.589991 0.589997 122.274";scale = "0.125 1.614 38.9982";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.053 53.9468 106.663";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "319.257 64.5595 119.468";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "2.18811 0.166666 11.43";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "324.683 53.2915 121.518";rotation = "0 0 1 183.895";scale = "0.958708 0.166666 3.872";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.893 65.7939 103.743";rotation = "-0.664508 0.302098 0.683496 151.252";scale = "2.18976 0.166666 6.04398";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.508 52.6223 125.902";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "1.224 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.428 58.65 136.652";rotation = "0.603509 0.563821 -0.563811 117.771";scale = "2.08588 0.166666 6.09608";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.817 53.6688 113.503";rotation = "0.0240316 0.706904 0.706901 182.754";scale = "3.8817 0.166666 30.0002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "319.137 65.7835 106.413";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "1.58154 0.166666 10.826";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "327.338 53.1104 108.129";rotation = "2.70398e-07 2.41413e-06 1 183.895";scale = "0.0991735 0.262746 0.150653";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.508 52.6223 128.6";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.508 52.6223 129.261";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "0.243 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "328.336 53.0424 114.941";rotation = "2.70398e-07 2.41413e-06 1 183.895";scale = "0.103907 0.262745 0.105312";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.839 64.725 132.662";rotation = "-0.66451 0.302097 0.683494 151.253";scale = "2.94587 0.166666 6.09208";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "328.023 53.0638 121.518";rotation = "-0.000141138 -5.06315e-07 1 3.89485";scale = "0.0871131 0.262745 0.117512";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.113 9.43736 103.729";rotation = "-0.998846 0.0339543 0.0339571 90.0661";scale = "0.125 0.166667 11.3443";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "250.92 6.60784 103.479";rotation = "-0.682667 0.73073 -1.9406e-06 180";scale = "0.172793 0.262745 0.0724733";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.727 3.7784 101.642";rotation = "0.589995 0.551194 0.589992 122.274";scale = "0.3215 0.166666 11.3442";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.939 53.6604 128.6";rotation = "0.0240316 0.706904 0.706901 182.754";scale = "3.9431 0.166666 29.9996";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "319.154 65.6125 136.402";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "1.66613 0.166666 15.104";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.563 61.4298 100.75";rotation = "-0.603509 -0.563816 -0.563816 117.778";scale = "3.87503 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "327.148 53.1234 129.747";rotation = "-0.000141138 -5.06315e-07 1 3.89485";scale = "0.0777697 0.262745 0.113992";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "326.305 53.4313 106.663";rotation = "0.998846 -0.0339636 0.0339594 90.0661";scale = "4.11952 0.166666 30.0002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "326.406 53.4244 119.718";rotation = "0.0240316 0.706904 0.706901 182.754";scale = "4.06915 0.166666 29.9996";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.508 52.6223 136.062";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "2.2185 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.542 53.121 136.652";rotation = "0.0339566 0.998846 0.0339633 90.0667";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "330.57 52.8905 101";rotation = "1.54679e-06 -7.23438e-06 1 93.8946";scale = "0.125 2.6314 10.826";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";nametoset = "Office Complex: Under Construction";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.71 3.52893 100.999";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 5.96";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.735 52.811 108.129";rotation = "0 0 1 3.89465";scale = "1.38971 0.166666 4.964";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "266.863 -46.259 104.999";rotation = "0.0240343 0.706902 0.706903 182.753";scale = "0.125 2.66667 149.996";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "332.273 52.7745 114.941";rotation = "0 0 1 3.89465";scale = "1.11984 0.166666 3.47";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.845 53.9394 140.75";rotation = "0.998846 -0.0339636 0.0339594 90.0661";scale = "1.89137 0.166666 29.9996";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.113 9.4373 106.239";rotation = "-0.563814 0.60351 -0.563817 117.778";scale = "1.13 0.166666 30.8122";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.979 52.7945 121.518";rotation = "0 0 1 183.895";scale = "1.26768 0.166666 3.872";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "272.36 30.7933 100.75";rotation = "-0.60351 -0.563814 -0.563817 117.778";scale = "1.12496 0.166666 241.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.053 53.9468 140.75";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "330.748 55.8994 113.503";rotation = "-0.603505 -0.563817 -0.563819 117.777";scale = "1.38226 0.166666 7.94434";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.488 0.27436 100.999";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 5.96";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.421 11.0282 104.999";rotation = "0.706904 -0.0240376 0.706901 182.753";scale = "2 0.166666 39.008";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.956 62.313 140.5";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "1.1733 0.166666 7.19602";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "336.06 68.0523 120.75";rotation = "0.0339611 0.998846 0.0339609 90.0667";scale = "10.125 0.166666 40.0004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.464 52.8295 129.747";rotation = "0 0 1 183.895";scale = "1.52527 0.166666 3.75602";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "327.604 56.5087 140.75";rotation = "0.603507 0.563816 -0.563818 117.772";scale = "1.5791 0.166666 9.55808";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.955 54.239 100.75";rotation = "-0.603507 -0.56382 -0.563814 117.777";scale = "1.12505 0.166666 241.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "325.413 59.548 140.5";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "0.125 1.9259 7.19602";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "330.992 63.146 113.253";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "2.49475 0.166666 12.68";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.6 8.6118 100.75";rotation = "0.0240301 0.706908 -0.706898 177.246";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "327.318 61.1143 138.725";rotation = "0.700918 0.195074 -0.686046 152.767";scale = "1.23602 0.166666 8.37126";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "326.352 53.9292 136.652";rotation = "0.0240306 0.706901 0.706905 182.754";scale = "4.11275 0.166666 29";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331 55.9636 128.6";rotation = "-0.603505 -0.563817 -0.563819 117.777";scale = "1.42255 0.166666 7.45322";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.243 63.215 128.35";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "2.45168 0.166666 16.764";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.939 62.0715 141";rotation = "0 0 -1 86.1052";scale = "1.2994 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.473 0.0249 103.484";rotation = "-0.563819 0.603507 -0.563815 117.778";scale = "0.24725 0.166666 11.9439";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "250.27 -2.95425 102.99";rotation = "0.73073 0.682667 -3.78467e-06 180";scale = "0.181924 0.262745 0.0446133";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.473 0.02493 101.626";rotation = "-0.563819 0.603507 -0.563815 117.778";scale = "0.314 0.166666 11.9439";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "333.466 66.5249 113.503";rotation = "0.999323 -0.0339787 -0.014071 224.972";scale = "0.993038 0.166666 19.64";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "333.599 66.7731 128.598";rotation = "0.999323 -0.0339787 -0.0140709 224.972";scale = "0.93046 0.166666 25.32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "237.321 10.0464 102.488";rotation = "0 0 1 183.895";scale = "0.819672 0.819669 0.332226";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.74 52.3558 120.75";rotation = "0.589995 0.551194 0.589992 122.274";scale = "10.125 0.166666 31.0004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "328.223 61.974 140.5";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "1.17364 0.166666 7.19602";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "238.47 10.2977 101.488";rotation = "-0.998846 0.0339615 0.0339664 90.0661";scale = "0.125 0.666666 6.8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "237.212 9.45748 102.488";rotation = "0 0 1 183.895";scale = "0.81967 0.81967 0.332227";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "241.383 10.0952 108.749";rotation = "-0.563814 0.60351 -0.563817 117.778";scale = "0.125 6.66753 30.8122";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "236.434 10.1248 102.488";rotation = "0 0 1 183.895";scale = "0.819672 0.819669 0.332226";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "327.939 61.4717 144.676";rotation = "0.033962 0.998846 0.033962 90.0661";scale = "0.125 1.57176 9.55808";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "236.351 9.58002 102.488";rotation = "0 0 1 183.895";scale = "0.81967 0.81967 0.332227";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.532 67.3829 113.503";rotation = "-0.603505 -0.563817 -0.563819 117.777";scale = "0.362778 0.166666 7.94234";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "323.486 66.4193 140.75";rotation = "-0.603508 -0.563818 -0.563815 117.778";scale = "1.11651 0.166666 9.55808";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "323.348 64.3978 143";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "1 0.166666 9.55806";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "243.256 0.24286 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "235.537 10.2466 102.488";rotation = "0 0 1 183.895";scale = "0.819672 0.819669 0.332226";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "245.58 -2.36425 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "235.445 9.65252 102.488";rotation = "0 0 1 183.895";scale = "0.81967 0.81967 0.332227";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "328.207 61.73 141";rotation = "0 0 -1 86.1052";scale = "1.31687 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.605 10.3101 102.488";rotation = "0 0 1 183.895";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.337 1.7604 100.749";rotation = "-0.551195 0.589988 0.589998 122.274";scale = "4.10588 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "238.178 9.71709 102.238";rotation = "-0.55119 0.589992 0.589998 122.274";scale = "0.299448 0.166666 13.6616";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "243.167 -0.51227 102.249";rotation = "-0.0240329 -0.706901 0.706904 182.754";scale = "0.87452 0.166666 6.00004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "236.804 5.90704 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "243.055 -1.92451 100.999";rotation = "0 0 1 183.895";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "238 7.07219 101.388";rotation = "-0.551189 0.589993 0.589998 122.274";scale = "0.125 0.666666 9";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.883 10.4863 103.738";rotation = "0.706904 -0.0240417 0.706901 182.754";scale = "0.125 0.166666 5.99994";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "330.956 53.1149 140.75";rotation = "0.998846 -0.0339636 0.0339594 90.0661";scale = "1.78888 0.166666 29.9996";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.785 67.4956 128.6";rotation = "-0.603505 -0.563817 -0.563819 117.777";scale = "0.297798 0.166666 7.45322";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "235.76 5.92643 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.635 10.5033 102.488";rotation = "0 0 1 183.895";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "240.52 -1.74349 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "234.556 5.99108 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.146 9.9362 100.749";rotation = "0.0240325 0.706908 -0.706897 177.246";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "242.839 -4.50376 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "336.819 68.0007 100";rotation = "1.80355e-06 1.88621e-06 -1 86.1052";scale = "0.125 0.507173 19.212";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "233.511 7.37788 101.694";rotation = "0.0339647 0.998846 0.0339671 90.0661";scale = "0.347251 0.166666 4.6608";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "0";moving = "open";prevscale = "0.347251 0.166666 4.6608";state = "closed";timeout = ".5";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "236.276 0.833886 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "238.411 -1.82632 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.344 -4.85853 104.999";rotation = "0.706904 -0.0240376 0.706901 182.753";scale = "2 0.166666 38.996";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "236.167 -0.09936 102.249";rotation = "-0.998846 0.0339595 0.0339637 90.0667";scale = "0.875022 0.166666 6.00006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "236.029 -1.47845 100.999";rotation = "0 0 1 183.895";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.077 -5.09096 104.999";rotation = "0.589997 0.551192 0.589993 122.274";scale = "2 0.166666 32.8468";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "235.956 -4.15529 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "233.275 -1.17872 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "245.269 -109.44 100.746";rotation = "0.998846 -0.0339638 0.0339578 90.0655";scale = "0.99956 0.166666 831.006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "347.294 59.7657 100.26";rotation = "-0.000286521 0.000284337 -1 86.1041";scale = "4 6.8328 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "271.727 28.8319 104.999";rotation = "0.706904 -0.0240346 0.706901 182.754";scale = "2.00025 0.166666 314.034";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "273.159 42.528 100.599";rotation = "-0.603513 -0.563812 -0.563816 117.777";scale = "4.74445 0.166667 315.874";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "282.334 324.547 100.59";rotation = "0.589998 0.551186 -0.589998 237.728";scale = "0.125 3.66613 871.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "286.034 -24.7592 100";rotation = "0 0 1 187.517";scale = "6 7.99999 200";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "351.222 10.1813 124.363";rotation = "0.0339687 0.998845 0.0339705 90.0666";scale = "3.52 6.80258 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "6.704";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "350.765 3.46894 124.363";rotation = "0.0339687 0.998845 0.0339705 90.0666";scale = "3.52 6.24792 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "6.703";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.973 35.9621 105.002";rotation = "0.706904 -0.024034 0.706901 182.753";scale = "2.0005 0.166666 176.977";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.888 63.813 105.003";rotation = "0.706904 -0.0240345 0.706901 182.753";scale = "2.0005 0.166667 176.935";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";nametoset = "EXIT ONLY";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "358.086 71.0575 100.266";rotation = "0 0 -1 86.1041";scale = "2.0009 0.166666 17.004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "260.238 -110.459 100.747";rotation = "0.0240347 0.706897 0.706908 182.753";scale = "0.999805 0.166666 279";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "252.26 29.9521 100.75";rotation = "0.603495 0.563822 -0.563825 117.776";scale = "0.125 0.166666 200.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.155 57.8047 100.751";rotation = "0.603495 0.563822 -0.563825 117.776";scale = "0.125 0.166666 200.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "362.549 8.2905 124.364";rotation = "0.0339738 0.998845 0.0339755 90.0667";scale = "3.52 7.80826 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "6.702";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "362.139 2.28149 124.364";rotation = "0.0339738 0.998845 0.0339755 90.0667";scale = "3.52 5.543 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "6.701";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "362.581 74.511 100.268";rotation = "0 0 1 3.89605";scale = "1.99963 0.166666 17";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "323.465 -50.3665 100.748";rotation = "0.603501 0.563821 -0.563819 117.777";scale = "0.125 0.166666 112.997";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "366.177 72.14 108.769";rotation = "0.999422 -0.0339951 -7.83039e-07 180";scale = "0.125 1.24821 17.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "275.217 76.4547 100.75";rotation = "0.024038 0.706907 0.706898 182.753";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "371.207 59.8966 98";rotation = "-8.64265e-06 1.28502e-06 -1 86.1052";scale = "5 6.83313 32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.594 -50.0894 107.064";rotation = "0.589996 0.551193 0.589993 122.274";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.826 -50.3558 107.04";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "262.577 -50.3388 100.998";rotation = "0 0 -1 86.1052";scale = "0.16129 0.466677 7.61905";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "267.883 -31.2959 100.749";rotation = "0.0240284 0.706908 -0.706898 177.246";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.764 77.7792 100.75";rotation = "0.0240378 0.706896 0.706908 182.753";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "248.429 -29.9714 100.748";rotation = "0.0240308 0.706908 -0.706898 177.246";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "301.82 103.286 100";rotation = "0 0 1 4.93234";scale = "6.25 8.33333 330";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "242.99 -109.786 104.996";rotation = "0.0240343 0.706902 0.706903 182.753";scale = "0.125 2.66667 208.186";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.075 -70.8184 100.748";rotation = "-0.551193 0.589987 0.590002 122.273";scale = "0.125 0.166666 113.003";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "423.264 -57.1577 104.998";rotation = "0.706904 -0.0240364 -0.706901 177.246";scale = "2 0.166666 314.06";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "388.75 10.5907 175.75";rotation = "-0.682667 0.73073 -6.29358e-08 180";scale = "5 6.83333 152";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "262.973 -70.2862 100.998";rotation = "0 0 1 96.2139";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "266.941 -48.773 100.748";rotation = "-0.551196 0.589997 -0.589988 237.726";scale = "0.99999 0.166666 314.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "392.72 58.4319 100.25";rotation = "-8.64265e-06 1.28502e-06 -1 86.1052";scale = "5 6.83333 134";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "262.133 -74.9369 101.398";rotation = "0.64794 0.761692 9.65513e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "266.403 -56.7542 100.599";rotation = "0.706909 -0.0240365 0.706896 182.754";scale = "0.125 3.99997 313.992";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "261.747 -78.3265 101.397";rotation = "0.757811 0.652474 8.2707e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "224.646 119.413 100";rotation = "0 0 1 3.92687";scale = "6.25 8.33332 330";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.217 6.7735 114.382";rotation = "0.65664 0.61345 0.438752 135.421";scale = "0.625085 0.166666 63.0008";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.013 92.1299 115.12";rotation = "-0.621116 0.664825 -0.414998 132.096";scale = "0.125 0.166666 60.93";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.327 78.3839 108.067";rotation = "-0.618815 0.444611 0.647602 136.242";scale = "7.70627 0.666766 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "265.855 -64.7355 100.749";rotation = "-0.603512 -0.563817 -0.563812 117.778";scale = "1.00002 0.166666 314.006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "241.13 -79.0779 100";rotation = "0 0 -1 86.1476";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.991 -103.169 104.998";rotation = "0.0240308 0.706903 0.706903 182.753";scale = "0.125 2.66667 72.0674";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "421.844 -77.616 104.996";rotation = "0.0339589 0.998846 0.033965 90.0655";scale = "1.9995 0.166666 314.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "158.454 36.0871 100.752";rotation = "-0.0188726 -0.555481 0.831315 183.239";scale = "2.99693 0.166666 63.9996";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.86 56.501 104.998";rotation = "0.589993 0.551194 0.589995 122.273";scale = "2.00025 0.166666 440";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.087 93.2194 113.137";rotation = "-0.190992 0.20441 -0.960072 88.4371";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "423.235 -57.1581 100.747";rotation = "0.603501 0.563819 -0.563821 117.777";scale = "0.125 0.166666 200.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "283.914 -90.2713 100.997";rotation = "0.730721 0.682676 -1.35316e-07 179.999";scale = "10.8749 13.1667 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "392.583 22.6083 100.75";rotation = "-0.60351 -0.563813 -0.563818 117.778";scale = "1.12496 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "160.376 64.439 100.755";rotation = "0.0188946 0.555463 0.831326 183.237";scale = "2.99415 0.166666 64.0006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "394.178 46.0539 100.75";rotation = "-0.603507 -0.56382 -0.563814 117.777";scale = "1.12505 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.39 57.551 105.002";rotation = "0.589994 0.551197 0.589991 122.273";scale = "1.9995 0.166666 440.548";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "265.166 -71.2036 100.748";rotation = "0.0240267 0.706908 -0.706898 177.246";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.356 -113.827 104.997";rotation = "0.589991 0.5512 0.589991 122.273";scale = "2 0.166666 87.9864";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.391 -113.329 100.747";rotation = "0.998846 -0.0339606 0.0339492 90.0655";scale = "0.125 0.166666 86.9988";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "352.95 127.156 100";rotation = "0 0 1 1.44994";scale = "6.25 8.33333 330";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.757 7.5535 114.383";rotation = "0.65664 0.61345 0.438752 135.421";scale = "0.625155 0.166666 63.0084";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.835 -13.5033 113.246";rotation = "0 0 1 93.8946";scale = "9.875 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "245.712 -69.8791 100.747";rotation = "0.0240291 0.706908 -0.706898 177.246";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "156.563 92.9093 115.12";rotation = "-0.621116 0.664825 -0.414998 132.096";scale = "0.125 0.166666 60.9298";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "155.874 79.1202 108.049";rotation = "-0.618815 0.444611 0.647602 136.242";scale = "7.72967 0.666753 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "417.6 66.5105 107.652";rotation = "0.730728 0.682669 5.51124e-06 180";scale = "0.125 9.34927 14.804";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.465 113.499 113.252";rotation = "0 0 -1 86.1064";scale = "9.9997 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "156.448 6.5912 112.997";rotation = "0.0240235 0.706912 -0.706894 177.245";scale = "2.99668 0.166666 79.9998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "156.637 93.9988 113.137";rotation = "-0.190992 0.20441 -0.960072 88.4371";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "420.936 56.2557 175.75";rotation = "0.730729 0.682668 5.33436e-06 179.999";scale = "4.85 6.63333 152";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "134.344 -82.549 112.753";rotation = "0.0240375 0.7069 0.706905 182.753";scale = "4.9983 0.166666 536.836";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "162.382 93.9353 113.002";rotation = "0.0240409 0.706896 0.706909 182.752";scale = "2.99443 0.166666 79.9996";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "421.845 -77.6106 100.746";rotation = "-0.551192 0.589988 0.590001 122.273";scale = "0.125 0.166666 200.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "426.575 68.0118 100";rotation = "0 0 -1 85.5053";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "310.839 165.075 100";rotation = "0 0 -1 95.3396";scale = "6.25 8.33333 340";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "433.451 41.3754 107.243";rotation = "0.0339628 0.998846 0.0339628 90.0661";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "432.655 41.179 100.749";rotation = "-0.998846 0.0339618 0.0339643 90.0655";scale = "0.64073 0.166666 37.9568";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.64 -108.285 100.997";rotation = "0 0 1 93.894";scale = "1.41629 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.75 -33.067 113.246";rotation = "0 0 1 93.8946";scale = "0.125 3.99523 5";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "432.782 48.4685 101.399";rotation = "0.708282 -0.70593 -8.9483e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "433.7 41.3584 101";rotation = "0 0 1 3.89485";scale = "0.16129 0.466677 7.61905";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "432.876 51.8841 101.399";rotation = "0.735965 -0.677019 -8.58183e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "StationInventory";position = "432.953 56.094 100.999";rotation = "0 0 -1 85.0819";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.125 -113.561 104.997";rotation = "0.0339541 0.998846 0.0339539 90.0652";scale = "2 0.166666 79.0044";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.716 -110.879 100.747";rotation = "-0.551198 0.589999 -0.589985 237.727";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "243.256 -109.554 104.997";rotation = "-0.551195 0.589996 -0.589991 237.727";scale = "0.125 2.66667 38.0018";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.218 -110.844 100.747";rotation = "-0.551198 0.589982 0.590002 122.273";scale = "0.125 0.166666 38.0016";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "271.615 56.652 100.75";rotation = "0.0240355 0.706907 0.706898 182.753";scale = "1.00031 0.166666 536.004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.555 133.221 114.503";rotation = "0.033952 0.998847 0.0339519 90.0661";scale = "0.62475 0.166666 22.953";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "426.078 -19.5141 100.998";rotation = "0 0 -1 86.1052";scale = "19 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.53 38.2385 101.004";rotation = "0 0 1 183.895";scale = "11.255 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "132.385 66.094 101.005";rotation = "0 0 1 183.895";scale = "11.2766 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "425.215 -57.5434 100.747";rotation = "0.024043 0.7069 0.706905 182.753";scale = "0.999805 0.166666 151";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "437.374 121.043 100.751";rotation = "0.024031 0.706911 -0.706894 177.246";scale = "1.00005 0.166666 151";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "433.71 92.9915 101.001";rotation = "0 0 1 93.8946";scale = "14.1173 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "449.346 120.228 100.601";rotation = "-0.998846 0.0339547 0.0339693 90.0667";scale = "4.99955 0.166666 437";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.491 36.7436 100.753";rotation = "0.603497 0.56382 -0.563825 117.776";scale = "0.125 0.166666 120.001";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.386 64.5964 100.754";rotation = "0.603497 0.56382 -0.563825 117.776";scale = "0.125 0.166666 120.001";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.466 142.987 113.004";rotation = "0 0 -1 86.1058";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "418.262 -54.2497 100";rotation = "0 0 -1 86.1591";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "110.394 -80.919 112.751";rotation = "0.0240373 0.706896 0.706909 182.753";scale = "5.0003 0.166666 536.836";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-14.167 62.08 100.608";rotation = "-0.0339679 -0.998846 0.0339488 90.0672";scale = "0.125 6.47237 536.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-14.975 50.4006 100.757";rotation = "-0.603511 -0.563814 -0.563816 117.778";scale = "0.999965 0.166666 535.994";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-13.377 73.7617 100.759";rotation = "-0.551194 0.590008 -0.589979 237.727";scale = "1.00003 0.166666 536.004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "232.781 183.93 100";rotation = "0 0 1 180.472";scale = "6.25 8.33332 330";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "461.316 119.413 100.749";rotation = "-0.998846 0.0339582 0.0339673 90.0667";scale = "0.99981 0.166666 358";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.217 143.004 126.673";rotation = "0.033957 0.998846 0.0339569 90.0661";scale = "0.916 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.217 143.004 128.754";rotation = "0.033957 0.998846 0.0339569 90.0661";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "426.46 -61.3864 106.966";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "463.061 119.294 104.997";rotation = "-0.998846 0.033963 0.0339629 90.0661";scale = "0.125 2.66667 358";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "426.726 -61.154 106.971";rotation = "0.589995 0.551194 0.589992 122.274";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "426.709 -61.4034 100.997";rotation = "0 0 1 93.8946";scale = "0.16129 0.466677 7.61905";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.377 10.5749 114.386";rotation = "0.656645 0.613446 0.438749 135.421";scale = "0.625053 0.166666 62.9952";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.037 95.9405 115.122";rotation = "-0.621115 0.664825 -0.414998 132.096";scale = "0.125 0.166666 60.9294";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "111.347 82.1291 108.042";rotation = "-0.618815 0.444612 0.647602 136.242";scale = "7.7417 0.666766 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.513 144.345 128.504";rotation = "0.0339747 0.999423 1.26686e-06 180";scale = "0.125 0.166666 57.008";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "422.094 -77.6278 100.997";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "425.466 -57.5599 100.747";rotation = "0.0240301 0.706904 -0.706901 177.246";scale = "0.875528 0.166666 79.0006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.111 97.03 113.139";rotation = "-0.190994 0.204409 -0.960072 88.4372";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.016 -46.3955 128.502";rotation = "0.999423 -0.0339749 -4.30663e-08 180";scale = "0.125 0.166666 57.004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "423.746 -82.8329 100.997";rotation = "0 0 -1 85.1484";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "100.604 40.0254 100.755";rotation = "-0.0188702 -0.555477 0.831318 183.239";scale = "4.00425 0.166666 64.0002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "421.415 -87.605 100.997";rotation = "0 0 1 93.8946";scale = "4.8749 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "422.111 -77.3784 100.747";rotation = "0.0240298 0.706904 -0.706901 177.246";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "102.456 68.382 100.757";rotation = "0.0188968 0.555463 0.831326 183.237";scale = "3.96815 0.166666 64.0006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "423.384 -88.3275 101.397";rotation = "-0.619147 0.785275 9.95407e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "282.009 176.224 100.749";rotation = "0.0240393 0.706907 0.706898 182.753";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.556 177.548 100.752";rotation = "0.0240388 0.706897 0.706908 182.753";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "422.844 -92.6993 101.397";rotation = "0.712031 -0.702148 -8.90037e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "474.094 4.0152 101.495";rotation = "0 0 1 163.645";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.312 -45.0543 128.752";rotation = "0.706904 -0.0240333 0.706901 182.753";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.312 -45.0543 126.978";rotation = "0.706904 -0.0240333 0.706901 182.753";scale = "0.761503 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "98.598 10.5292 112.999";rotation = "0.0240195 0.706908 -0.706898 177.245";scale = "4.00375 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.879 11.3947 113.131";rotation = "0.191938 0.179287 0.964892 95.9344";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "104.467 97.8772 113.004";rotation = "0.0240436 0.706895 0.706909 182.752";scale = "3.96793 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "464.257 114.779 100";rotation = "0 0 1 187.586";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "5.84353";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "474.564 -18.5846 101.495";rotation = "0 0 1 162.497";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "96.774 98.0741 113.139";rotation = "-0.190994 0.204409 -0.960072 88.4372";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "314.656 212.62 100";rotation = "0 0 1 3.38886";scale = "7.5 10 400";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "446.304 -75.2868 100.997";rotation = "0 0 1 93.8946";scale = "0.16129 0.466677 7.61905";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "446.287 -75.5362 107.181";rotation = "-0.563819 0.603507 -0.563815 117.778";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "446.553 -75.3038 107.244";rotation = "0.706904 -0.024035 0.706901 182.753";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.063 -45.0373 113.002";rotation = "0 0 -1 86.1058";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "88.412 -28.6193 114.498";rotation = "0.706904 -0.0240316 0.706901 182.753";scale = "0.625 0.166666 31.0256";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.5 -8.8978 113.249";rotation = "0 0 1 93.894";scale = "9.99995 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "448.907 -59.1567 100.747";rotation = "-0.998846 0.0339582 0.0339673 90.0667";scale = "0.875522 0.166666 78.9996";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "451.169 -59.06 100.747";rotation = "-0.551193 0.589999 -0.589989 237.726";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "98.155 118.353 113.255";rotation = "0 0 -1 86.1058";scale = "9.9998 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "434.485 -98.0165 108.997";rotation = "-0.682668 0.730728 -2.64249e-06 180";scale = "0.125 8.9988 17";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "449.527 -79.4952 100.997";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "107.415 137.518 113.255";rotation = "0 0 -1 86.1058";scale = "0.125 5.1245 5";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "474.193 -33.8855 101.496";rotation = "0 0 1 57.9621";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "491.037 12.7477 101.496";rotation = "0 0 1 131.516";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "466.12 -60.0775 100.997";rotation = "0 0 1 3.89525";scale = "7.49105 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "448.85 -89.472 100.997";rotation = "0 0 1 93.8946";scale = "4.87505 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "449.544 -79.2458 100.747";rotation = "-0.998846 0.0339582 0.0339673 90.0667";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "485.27 -22.6322 101.496";rotation = "0 0 1 42.7351";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "449.775 -79.5278 100.747";rotation = "-0.551193 0.589999 -0.589989 237.726";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree12";position = "482.622 -39.2552 101.496";rotation = "0 0 1 50.2112";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "494.349 -2.8504 101.496";rotation = "0 0 1 146.413";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.841 200.77 128.506";rotation = "0.999423 -0.0339749 -4.30663e-08 180";scale = "0.125 0.166666 57.012";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "492.377 -32.5829 101.496";rotation = "0 0 1 28.1673";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "507.6 37.3296 108.995";rotation = "0.999422 -0.033983 2.5767e-07 180";scale = "24.8755 0.166667 15.992";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "557.233 33.9499 100.747";rotation = "0.603505 0.563817 -0.563819 117.776";scale = "0.125 0.166666 199.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "508.872 19.2752 101.496";rotation = "0 0 1 115.272";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "120.137 202.111 128.756";rotation = "0.706904 -0.0240333 0.706901 182.753";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "120.138 202.111 127.048";rotation = "0.706904 -0.0240333 0.706901 182.753";scale = "0.729 0.166666 39";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "507.582 37.0804 101.246";rotation = "-0.998846 0.0339748 0.0339572 90.0661";scale = "24.8759 0.166667 199.001";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "451.176 -58.8198 100.487";rotation = "0.589996 0.551184 0.590001 122.273";scale = "0.52 99.5201 99.52";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "173.723 254.843 112.728";rotation = "0.0240341 0.706908 -0.706897 177.246";scale = "3.27655 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "495.76 -55.0912 101.496";rotation = "0 0 1 157.872";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "504.506 -28.8924 101.496";rotation = "0 0 -1 36.5532";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "93.128 40.785 105.007";rotation = "0.033952 0.998846 0.0339651 90.0661";scale = "2 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.629 40.8188 100.755";rotation = "0.603498 0.563819 -0.563825 117.776";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "119.888 202.128 113.006";rotation = "0 0 -1 86.1058";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "94.524 68.6716 100.756";rotation = "0.603498 0.563819 -0.563825 117.776";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "521.018 5.4897 101.496";rotation = "0 0 1 207.113";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "308.986 274.368 104.998";rotation = "0.0339628 0.998846 0.0339628 90.0661";scale = "2 0.166666 39.9964";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "289.168 277.722 100.748";rotation = "-0.603505 -0.563827 -0.56381 117.772";scale = "1.1253 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "550.784 -68.0975 100.745";rotation = "-0.55119 0.589987 0.590004 122.274";scale = "0.99999 0.166666 201.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "269.357 277.567 101";rotation = "0 0 1 3.89424";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "550.244 -76.0842 100.594";rotation = "0.0339638 0.998846 0.0339718 90.0653";scale = "0.125 4.00507 201";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "249.775 280.654 100.75";rotation = "-0.551195 0.590001 -0.589985 237.727";scale = "1.00006 0.166666 39.9924";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "530.346 21.9817 101.496";rotation = "0 0 -1 113.534";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-13.227 76.007 105.008";rotation = "0.706904 -0.0240376 0.706901 182.753";scale = "2 0.166666 217";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "549.699 -84.0729 100.745";rotation = "0.603505 0.563815 -0.563821 117.777";scale = "0.999965 0.166666 201";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "499.66 -82.9245 100.996";rotation = "0 0 1 3.89525";scale = "25 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree12";position = "523.819 -27.8322 101.496";rotation = "0 0 -1 60.333";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "249.656 278.908 100.75";rotation = "-0.551199 0.589984 0.589998 122.274";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "471.123 -60.4186 100.747";rotation = "-0.551192 0.590001 -0.589989 237.726";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "510.507 -69.6909 96";rotation = "0 0 1 90.756";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "181.747 283.53 105.001";rotation = "0.706904 -0.0240342 0.706901 182.753";scale = "2 0.166666 175.118";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "520.565 -49.3502 101.496";rotation = "0 0 1 239.182";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "309.937 288.337 100.598";rotation = "-0.706892 0.0240474 0.706912 182.752";scale = "0.125 6.50003 39.9986";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "534.125 4.2333 101.497";rotation = "0 0 1 167.957";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "134.343 -82.5477 112.753";rotation = "0.0240281 0.706904 -0.706901 177.246";scale = "4.9983 0.166666 320";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "175.412 283.713 100.75";rotation = "-0.0188838 -0.555477 0.831318 183.238";scale = "3.415 0.166666 62.6";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "469.729 -80.8864 100.747";rotation = "-0.551192 0.590001 -0.589989 237.726";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "538.498 -19.292 101.497";rotation = "0 0 1 193.731";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "539.219 -4.8763 101.497";rotation = "0 0 -1 67.1501";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "543.953 6.6038 101.497";rotation = "0 0 1 206.909";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "533.146 -40.7564 101.497";rotation = "0 0 -1 54.5434";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "117.118 258.696 112.729";rotation = "0.0240341 0.706908 -0.706897 177.246";scale = "3.25977 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "288.8 275.993 100.748";rotation = "0.0240432 0.706907 0.706898 182.753";scale = "0.125 0.166666 96.0016";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "310.751 300.31 100.748";rotation = "-0.551182 0.589998 0.590001 122.272";scale = "1.12454 0.166666 39.9944";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "310.886 302.304 104.998";rotation = "0.0339675 0.998846 0.0339673 90.067";scale = "2 0.166666 39.9984";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.388 304.351 100.75";rotation = "-0.551191 0.590002 -0.589989 237.727";scale = "1.12533 0.166666 40.0006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "110.393 -80.9186 112.751";rotation = "0.024028 0.706908 -0.706898 177.246";scale = "5.0003 0.166666 320";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.08 46.4848 105.007";rotation = "0.589998 0.55119 -0.589994 237.726";scale = "2 0.166667 40.9998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "536.305 -64.857 100.996";rotation = "0 0 1 3.89525";scale = "7.0826 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.046 45.986 100.757";rotation = "0.0240238 0.706908 -0.706897 177.245";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "249.796 280.905 100.751";rotation = "-0.551199 0.589984 0.589998 122.274";scale = "0.875285 0.166666 320.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.443 26.185 100.757";rotation = "0.0240483 0.7069 0.706905 182.752";scale = "0.999807 0.166666 40.0002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.524 306.347 100.75";rotation = "-0.551197 0.589985 0.59 122.274";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "554.105 -15.7021 100.997";rotation = "0 0 -1 86.1047";scale = "25 0.166666 15.996";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "550.706 -65.5867 100.746";rotation = "0.998846 -0.0339741 0.033958 90.0657";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "184.855 310.884 105.001";rotation = "0.706904 -0.0240356 0.706901 182.753";scale = "2 0.166666 174.642";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.061 323.883 104.997";rotation = "-0.563817 0.603508 -0.563816 117.778";scale = "1.99975 0.166666 40.9886";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "152.573 185.249 112.756";rotation = "0.0240386 0.7069 0.706905 182.753";scale = "4.99855 0.166666 400";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.741 305.086 100.75";rotation = "0.998846 -0.0339638 0.0339576 90.0655";scale = "0.874525 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "272.425 315.194 101";rotation = "0 0 -1 86.1052";scale = "5.00182 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "271.745 305.221 100.75";rotation = "0.998846 -0.0339638 0.0339576 90.0655";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "90.944 303.245 100.602";rotation = "-0.0339679 -0.998846 0.0339498 90.0667";scale = "0.125 6.50037 359.994";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.746 281.625 100.751";rotation = "-0.551197 0.589986 0.589998 122.274";scale = "0.125 0.166666 239.998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "1.451 26.7291 100.607";rotation = "0.563801 -0.603508 -0.563832 117.779";scale = "0.125 4.0069 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "147.555 285.858 101.005";rotation = "0 0 1 183.895";scale = "10.8047 0.166666 24";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.814 46.2524 100.757";rotation = "0.6035 0.563817 -0.563824 117.776";scale = "0.125 0.166666 56.0014";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.709 74.105 100.758";rotation = "0.6035 0.563817 -0.563824 117.776";scale = "0.125 0.166666 56.0014";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "119.513 287.518 100.751";rotation = "-0.0188838 -0.555477 0.831318 183.238";scale = "3.47452 0.166666 62.6";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "550.01 -75.8205 100.995";rotation = "0 0 1 3.89525";scale = "0.125 6.83843 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "128.623 186.878 112.756";rotation = "0.0240383 0.706896 0.706908 182.753";scale = "5.0003 0.166666 400";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.541 27.2732 100.758";rotation = "0.998846 -0.0339785 0.0339521 90.065";scale = "1.00006 0.166666 40.0006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.782 27.4259 105.008";rotation = "0.589997 0.55119 0.589994 122.274";scale = "2 0.166666 41.0002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.428 47.3799 100.758";rotation = "0.0240274 0.706908 -0.706898 177.245";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.37 304.102 100.751";rotation = "-0.551199 0.589983 0.59 122.274";scale = "1.00013 0.166666 320";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.647 47.6453 105.008";rotation = "0.0339625 0.998846 0.0339624 90.0661";scale = "2 0.166666 14.9846";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.994 75.7404 105.009";rotation = "-0.563817 0.603508 -0.563816 117.778";scale = "2 0.166666 54.8342";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.617 309.064 100.751";rotation = "-0.551199 0.589983 0.59 122.274";scale = "0.125 0.166666 240";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.14 313.316 100.997";rotation = "0 0 1 183.895";scale = "10.8047 0.166666 24";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "177.783 311.618 100.751";rotation = "0.0188859 0.55546 0.831329 183.238";scale = "3.785 0.166666 62.6";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "101.555 288.99 101.002";rotation = "0 0 1 183.895";scale = "5.77785 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "133.192 -242.589 112.502";rotation = "-0.682674 0.730723 9.26257e-07 180";scale = "0.125 0.166666 25.004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "133.279 -243.077 112.502";rotation = "0.812111 -0.583503 -7.39643e-07 180";scale = "0.125 0.166666 25.004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "133.199 -242.84 112.752";rotation = "-0.115063 0.702411 -0.702409 193.127";scale = "0.125 0.166666 17.0005";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "116.666 -241.788 112.753";rotation = "-0.115061 0.702411 -0.70241 193.127";scale = "1.2121 0.166667 3.70116";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "117.029 -250.458 112.753";rotation = "0.701435 -0.503982 0.503976 109.906";scale = "3.2411 0.166666 35.016";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.77 -241.267 112.503";rotation = "-0.682674 0.730723 9.26257e-07 180";scale = "0.125 0.166666 25.006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.833 -241.754 112.503";rotation = "0.812111 -0.583503 -7.39643e-07 180";scale = "0.125 0.166666 25.006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.127 316.948 104.927";rotation = "-0.563817 0.603508 -0.563816 117.778";scale = "2.0375 0.166666 54.0068";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "109.19 -240.957 112.499";rotation = "-0.682674 0.730723 9.26257e-07 180";scale = "0.125 0.166666 24.998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "109.333 -241.449 112.499";rotation = "0.812114 -0.583499 -7.39637e-07 180";scale = "0.125 0.166666 24.998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.575 316.419 101.002";rotation = "0 0 1 183.895";scale = "5.85353 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.753 -241.517 112.753";rotation = "-0.115063 0.702411 -0.702409 193.127";scale = "0.125 0.166666 31.9998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "121.403 315.455 100.752";rotation = "0.0188859 0.55546 0.831329 183.238";scale = "3.32267 0.166666 62.6";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "109.253 -241.212 112.749";rotation = "-0.115069 0.702414 -0.702406 193.127";scale = "0.125 0.166666 36.002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "93.805 -240.16 112.749";rotation = "0.115065 -0.70241 0.702411 166.873";scale = "1.73097 0.166667 5.73384";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "180.177 340.438 112.729";rotation = "0.0240343 0.706893 0.706912 182.753";scale = "3.56897 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.816 -239.638 112.499";rotation = "-0.682674 0.730723 9.26257e-07 180";scale = "0.125 0.166666 24.998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.877 -240.125 112.499";rotation = "0.812114 -0.583499 -7.39637e-07 180";scale = "0.125 0.166666 24.998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "94.799 -253.962 112.749";rotation = "0.701438 -0.503984 0.50397 109.906";scale = "5.26498 0.166666 35.035";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.797 -239.888 112.749";rotation = "-0.115069 0.702414 -0.702406 193.127";scale = "0.125 0.166666 51.0014";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "123.107 344.323 112.731";rotation = "0.0240343 0.706893 0.706912 182.753";scale = "3.1924 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "127.386 -253.799 112.753";rotation = "-0.115063 0.702411 -0.702409 193.127";scale = "4.62692 0.166666 320";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.862 -334.83 128.498";rotation = "0.986846 0.161661 2.04921e-07 180";scale = "0.125 0.166666 56.996";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "106.465 -261.168 112.749";rotation = "-0.11507 0.702414 -0.702406 193.127";scale = "4.62962 0.166666 320";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.144 -341.132 128.748";rotation = "0.702411 0.115067 0.702409 166.872";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.144 -341.132 126.883";rotation = "0.702411 0.115067 0.702409 166.872";scale = "0.8075 0.166666 39.0006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.907 -341.212 112.998";rotation = "0 0 1 71.3934";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "166.156 384.788 112.757";rotation = "0.0254601 0.74871 0.662409 182.58";scale = "4.99883 0.166666 210";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "142.205 386.414 112.759";rotation = "0.0254596 0.748706 0.662413 182.58";scale = "4.99985 0.166666 210.062";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.672 -402.399 112.502";rotation = "0.812111 -0.583503 -7.39643e-07 180";scale = "0.125 0.166666 25.004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.822 -408.072 112.503";rotation = "0.812111 -0.583503 -7.39643e-07 180";scale = "0.125 0.166666 25.006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.648 -409.708 112.497";rotation = "0.812117 -0.583494 -7.39632e-07 180";scale = "0.125 0.166666 24.994";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "148.897 -415.443 112.497";rotation = "0.812117 -0.583494 -7.39632e-07 180";scale = "0.125 0.166666 24.994";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "178.435 -405.436 112.752";rotation = "-0.121775 0.743381 -0.657689 192.298";scale = "4.62722 0.166666 209.936";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "157.518 -412.806 112.747";rotation = "-0.12178 0.743384 -0.657685 192.298";scale = "4.62902 0.166666 209.83";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "173.232 488.765 99.9617";rotation = "0.0240389 0.7069 0.706905 182.753";scale = "5.00023 0.166666 216";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "149.282 490.42 99.9612";rotation = "0.0240383 0.706897 0.706908 182.753";scale = "5.00007 0.166666 216";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "211.675 -504.173 99.9607";rotation = "-0.115064 0.702411 -0.702409 193.127";scale = "4.62778 0.166666 339.998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "190.74 -511.498 99.9602";rotation = "-0.115069 0.702414 -0.702406 193.127";scale = "4.62862 0.166666 339.998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "267.307 -641.196 100.21";rotation = "0 0 1 71.394";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.267 -646.95 100.21";rotation = "0 0 1 71.394";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";nametoset = "I-39 South";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "246.274 -648.225 100.208";rotation = "0 0 1 71.394";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.017 -653.425 100.208";rotation = "0 0 1 71.394";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2000343/Buildings/27.cs b/Univ/Data/2000343/Buildings/27.cs new file mode 100644 index 0000000..ad09bc7 --- /dev/null +++ b/Univ/Data/2000343/Buildings/27.cs @@ -0,0 +1,131 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Phantom139" +// Created in mission "FlatlandBigH" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.1693 -20.9713 497";rotation = "2.03879e-06 2.25306e-06 -1 95.6525";scale = "0.59552 6.33333 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.765 -21.4696 497.25";rotation = "-0.0492465 0.997572 -0.0492463 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.4812 -18.6016 497.25";rotation = "-0.539399 -0.595417 0.595423 236.685";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "90.7985 -21.7074 497.49";rotation = "-0.0348857 0.706675 0.706678 176.004";scale = "19.02 3.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "86.1228 -18.7717 497.49";rotation = "-0.0348861 0.706675 0.706678 176.004";scale = "10.6293 3.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.765 -21.4696 500.75";rotation = "-0.0492465 0.997572 -0.0492463 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.2828 -19.6033 497.5";rotation = "0 0 -1 95.6525";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "73.3172 -21.5565 497.9";rotation = "0.992437 0.122754 1.55601e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "73.3172 -21.5565 497.9";rotation = "-2.05744e-05 -6.88224e-12 -1 14.1023";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "86.3381 -18.5092 497.5";rotation = "0 0 -1 95.6525";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.5631 -19.431 497.25";rotation = "-0.0348849 0.706678 0.706675 176.004";scale = "0.125 0.166666 25.6618";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.9781 -19.2909 497.25";rotation = "-0.0348849 0.706678 0.706675 176.004";scale = "0.125 0.166666 25.6616";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "76.8586 -6.8051 497.25";rotation = "-0.997572 -0.0492476 -0.0492441 90.1389";scale = "0.125 0.166666 25.6618";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.1102 -19.1789 497.25";rotation = "-0.0348849 0.706678 0.706675 176.004";scale = "0.125 0.166666 25.6618";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "80.3509 -12.7027 491";rotation = "0 0 1 174.348";scale = "5 6.66666 20";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.6901 -6.92075 497.25";rotation = "-0.997572 -0.0492476 -0.0492441 90.1389";scale = "0.125 0.166666 25.6616";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "71.6086 -23.3656 497";rotation = "0 0 1 174.348";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.462 -19.0451 497.25";rotation = "-0.0348849 0.706678 0.706675 176.004";scale = "0.125 0.166666 25.6618";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "78.3315 -3.35616 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.488 -3.2417 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "76.8332 -3.50445 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.5286 -3.13871 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.7927 -3.60743 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.3074 -19.8521 497.25";rotation = "-0.0348849 0.706678 0.706675 176.004";scale = "0.125 0.166666 25.6616";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "74.3307 -7.5477 497.49";rotation = "-0.6153 0.557404 0.55741 116.792";scale = "11.8507 3.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "74.7522 -3.71042 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.9185 -18.9009 497.25";rotation = "-0.0348849 0.706678 0.706675 176.004";scale = "0.125 0.166666 25.6616";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.0341 -2.9897 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.7577 -3.80884 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.1519 -2.87907 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "72.6719 -13.6663 497";rotation = "0.000117496 1.58975e-05 -1 5.65126";scale = "0.881712 4.27696 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "86.3627 -18.758 497.25";rotation = "-0.0348849 0.706678 0.706675 176.004";scale = "0.125 0.166666 25.6618";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "72.7078 -3.91276 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "86.0756 -18.294 497.49";rotation = "0.539397 0.595421 0.595419 236.685";scale = "11.8508 3.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.1098 -2.78426 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "71.7923 -4.00337 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.8157 -2.7144 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "91.0138 -21.445 497";rotation = "0 0 1 174.348";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "70.7935 -4.10222 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.7895 -2.61802 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "71.584 -23.1168 497.25";rotation = "0.55741 0.6153 0.557405 116.792";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.9022 -12.1589 497.5";rotation = "-0.049306 0.998784 1.53717e-07 180";scale = "0.965972 4.27696 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "87.9113 -12.2512 497.5";rotation = "0 0 1 86.2582";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "69.9505 -4.17561 497.49";rotation = "-0.6153 0.557405 0.55741 116.792";scale = "19.02 3.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.7126 -4.20919 500.75";rotation = "0.59542 -0.539399 0.595419 236.684";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "86.8303 -2.51501 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.8712 -2.41198 500.75";rotation = "-0.997572 -0.0492484 -0.0492436 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.9892 -21.1962 497.25";rotation = "0.55741 0.6153 0.557405 116.792";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "90.7514 -21.2298 497.49";rotation = "0.539398 0.595421 0.595418 236.685";scale = "19.02 3.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.9892 -21.1962 500.75";rotation = "0.55741 0.6153 0.557405 116.792";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "74.2836 -7.07004 497.49";rotation = "-0.997572 -0.0492472 -0.0492424 90.1389";scale = "10.6293 3.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "70.2606 -7.2069 497.25";rotation = "0.539398 0.595423 0.595417 236.685";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "74.0683 -7.3325 497.5";rotation = "0 0 -1 95.6525";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.1236 -6.2383 497.5";rotation = "0 0 -1 95.6525";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "78.5051 -4.81562 497";rotation = "0.657007 0.753885 9.55617e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.5526 -4.63566 497";rotation = "6.63455e-06 -3.74563e-06 1 84.348";scale = "0.696775 6.33336 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "86.4354 -4.2172 497.9";rotation = "0.715791 0.698314 8.85177e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.9368 -3.93579 497.25";rotation = "0.706678 0.0348861 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "69.9033 -3.69794 497.49";rotation = "-0.997572 -0.0492467 -0.0492419 90.1389";scale = "19.02 3.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.9368 -3.93579 500.75";rotation = "0.706678 0.0348861 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.688 -3.96041 497";rotation = "0 0 1 174.348";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.0932 -2.0398 497";rotation = "0 0 1 174.348";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.8553 38.2388 497.25";rotation = "-0.0492465 0.997572 -0.0492463 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "65.9142 36.6052 497.49";rotation = "-0.997572 -0.0492467 -0.0492419 90.1389";scale = "19.02 3.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.8553 38.2388 500.75";rotation = "-0.0492465 0.997572 -0.0492463 90.1395";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "65.6989 36.3428 497";rotation = "0 0 1 174.348";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.1041 38.2634 497";rotation = "0 0 1 174.348";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.2718 38.6137 497";rotation = "2.03879e-06 2.25306e-06 -1 95.6525";scale = "0.533495 6.33333 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "67.3047 37.8925 497.9";rotation = "0.994038 0.109034 1.38211e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "65.6883 38.9886 497.25";rotation = "0.6153 -0.557407 0.557409 116.792";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "80.3771 40.6912 497.49";rotation = "-0.0492434 0.997572 -0.0492433 90.1394";scale = "3.02 0.519998 10.9673";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.1993 39.8386 497.5";rotation = "0 0 1 84.348";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.5902 40.9735 497.5";rotation = "0 0 1 84.348";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "74.4395 40.106 497.25";rotation = "0.997572 0.0492458 -0.049245 90.1395";scale = "0.125 0.166666 27.4394";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.0659 39.97 497.25";rotation = "0.997572 0.0492458 -0.049245 90.1395";scale = "0.125 0.166666 27.4396";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.692 40.2299 497.25";rotation = "0.997572 0.0492458 -0.049245 90.1395";scale = "0.125 0.166666 27.4396";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "74.4412 47.0057 491";rotation = "0 0 1 174.348";scale = "5 6.66666 20";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "71.7136 39.8362 497.25";rotation = "0.997572 0.0492458 -0.049245 90.1395";scale = "0.125 0.166666 27.4394";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "76.7324 40.3329 497.25";rotation = "0.997572 0.0492458 -0.049245 90.1395";scale = "0.125 0.166666 27.4396";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "74.4382 37.459 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.378 37.3541 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "70.4438 39.7105 497.25";rotation = "0.997572 0.0492458 -0.049245 90.1395";scale = "0.125 0.166666 27.4394";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "77.5596 40.4148 497.25";rotation = "0.997572 0.0492458 -0.049245 90.1395";scale = "0.125 0.166666 27.4394";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.6139 37.5754 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "72.3375 37.2511 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "76.5811 37.6711 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "71.37 37.1553 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "78.6221 40.52 497.25";rotation = "0.997572 0.0492458 -0.049245 90.1395";scale = "0.125 0.166666 27.4394";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.8727 53.2428 497.25";rotation = "-0.997572 -0.0492452 -0.0492456 90.1395";scale = "0.125 0.166666 27.4394";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "77.6219 37.7741 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "68.9369 40.0538 497.636";rotation = "0.539401 0.595418 0.595419 236.685";scale = "12.7396 2.874 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "70.2567 37.0451 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "78.7045 37.8813 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.579 40.6147 497.25";rotation = "0.997572 0.0492458 -0.049245 90.1395";scale = "0.125 0.166666 27.4394";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.4103 36.9614 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.8287 37.9925 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "66.6438 46.2278 497.5";rotation = "0.998784 0.049308 -1.34052e-07 180";scale = "0.831945 4.57323 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.2643 54.3703 497.25";rotation = "-0.997572 -0.0492452 -0.0492456 90.1395";scale = "0.125 0.166666 27.4394";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "68.2797 36.8495 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "79.5514 53.9063 497.49";rotation = "-0.615294 0.557407 0.557414 116.792";scale = "12.7322 3.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.8024 38.0889 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.3169 36.7542 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.7761 38.1853 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "66.349 36.6584 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.8029 55.4992 497.25";rotation = "0.59542 -0.539399 0.595419 236.684";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "63.5631 55.4856 497.49";rotation = "0.706678 0.0348862 0.706675 176.004";scale = "3.02 19.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.0422 47.7518 497.5";rotation = "-0.049306 0.998784 1.53717e-07 180";scale = "0.931278 4.5733 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.6088 38.2677 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.8029 55.4992 500.75";rotation = "0.59542 -0.539399 0.595419 236.684";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.5248 38.3583 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.3576 38.4408 500.75";rotation = "-0.034886 0.706678 0.706675 176.004";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.0795 38.5122 497.25";rotation = "0.55741 0.6153 0.557405 116.792";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "84.8417 38.4786 497.49";rotation = "0.539398 0.595421 0.595418 236.685";scale = "19.02 3.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.0795 38.5122 500.75";rotation = "0.55741 0.6153 0.557405 116.792";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "66.5536 47.1389 497.5";rotation = "0 0 -1 98.2296";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "66.3468 49.1481 497";rotation = "0.999629 0.0272347 3.45224e-08 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "81.9497 50.287 497.9";rotation = "-0.0229143 0.999737 1.26726e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "81.9497 50.287 497.9";rotation = "1.23887e-06 -2.53442e-12 1 177.374";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "68.1105 53.2761 497.49";rotation = "0.706677 0.0348852 0.706675 176.005";scale = "3.02 0.519998 10.9672";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.8973 52.994 497.5";rotation = "0 0 1 84.348";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.2889 54.1215 497.5";rotation = "0 0 1 84.348";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "64.2877 53.1392 497.25";rotation = "0.6153 -0.557407 0.557409 116.792";scale = "0.125 0.166666 38.0002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.6113 55.3916 497";rotation = "6.63455e-06 -3.74563e-06 1 84.348";scale = "0.536585 6.33336 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "64.0271 55.7726 497.25";rotation = "0.706678 0.0348861 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "63.9935 56.0104 497.49";rotation = "-0.997572 -0.0492467 -0.0492419 90.1389";scale = "19.02 3.02 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "64.0271 55.7726 500.75";rotation = "0.706678 0.0348861 0.706675 176.004";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.7783 55.748 497";rotation = "0 0 1 174.348";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.1835 57.6686 497";rotation = "0 0 1 174.348";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2000343/Buildings/28.cs b/Univ/Data/2000343/Buildings/28.cs new file mode 100644 index 0000000..658da12 --- /dev/null +++ b/Univ/Data/2000343/Buildings/28.cs @@ -0,0 +1,182 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Phantom139" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.192 -10.9569 661.741";rotation = "0.0119395 -0.999857 -0.0119396 90.0082";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "303.758 -8.91384 631.127";rotation = "0 0 -1 1.36828";scale = "0.125 0.166666 60.728";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "303.223 -2.50162 633.162";rotation = "0 0 1 87.7021";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "304.23 -7.7392 631.126";rotation = "0 0 1 92.8386";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "303.756 3.57382 633.162";rotation = "0 0 1 91.6962";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "303.616 -2.9711 631.126";rotation = "0 0 1 89.916";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "303.519 1.0838 631.126";rotation = "0 0 1 89.916";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration10";position = "310.464 -0.1772 631.126";rotation = "0 0 -1 40.4363";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "303.413 5.5367 631.126";rotation = "0 0 1 88.7735";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "303.324 12.9104 633.162";rotation = "0 0 1 87.6969";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "303.272 11.4516 631.126";rotation = "0 0 1 88.2023";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.821 30.325 630.876";rotation = "-0.999857 -0.0119332 -0.0119404 90.0083";scale = "0.125 0.166666 77.9998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "303.186 18.2545 633.162";rotation = "0 0 1 87.6969";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "303.166 15.8903 631.126";rotation = "0 0 1 88.2023";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.25 28.5319 661.74";rotation = "0.0119394 -0.999857 -0.0119393 90.0082";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "303.066 20.0539 631.126";rotation = "0 0 1 87.6362";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration10";position = "316.301 17.7226 631.126";rotation = "0 0 1 229.108";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "303.091 23.1555 633.162";rotation = "0 0 1 88.2464";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration10";position = "331.107 2.21073 631.126";rotation = "0 0 -1 46.6491";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.804 30.5747 631.126";rotation = "0 0 -1 1.36828";scale = "0.125 0.166666 60.728";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "302.976 23.8164 631.126";rotation = "0 0 1 87.6362";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "302.808 27.874 633.162";rotation = "0 0 1 87.6471";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "303.746 -8.414 630.626";rotation = "0.715498 -0.698615 -8.85558e-07 180";scale = "2.5 3.33333 61.2";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "302.88 27.8731 631.126";rotation = "0 0 1 87.6362";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration10";position = "324.464 29.6386 631.126";rotation = "0 0 1 172.967";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration10";position = "343.742 21.4204 631.126";rotation = "0 0 -1 114.808";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration10";position = "355.27 -1.2182 631.126";rotation = "0 0 -1 63.914";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "302.827 30.0751 630.626";rotation = "0.715498 -0.698615 -8.85558e-07 180";scale = "2.5 3.33333 61.2";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate12";position = "250.241 -8.83888 631.125";rotation = "0 0 -1 90.7869";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate12";position = "249.86 -4.26178 631.125";rotation = "0 0 -1 89.6335";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate12";position = "249.883 0.63156 631.125";rotation = "0 0 -1 89.6335";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate12";position = "249.904 5.31527 631.125";rotation = "0 0 -1 89.6335";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate12";position = "249.994 10.7719 631.125";rotation = "0 0 -1 89.6335";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate12";position = "249.96 16.9294 631.125";rotation = "0 0 -1 90.2048";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate12";position = "250.067 22.2415 631.125";rotation = "0 0 -1 90.2048";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration11";position = "366.312 -1.9494 629.126";rotation = "0 0 -1 5.58226";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate12";position = "249.988 27.0612 631.125";rotation = "0 0 -1 90.776";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration10";position = "360.706 22.4715 631.126";rotation = "0 0 1 220.478";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "377.836 -7.14365 661.491";rotation = "0.999929 0.0119404 1.51356e-08 180";scale = "0.125 0.166666 60.728";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration11";position = "378.193 1.99807 629.126";rotation = "0 0 -1 66.2488";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration11";position = "372.849 22.6888 629.126";rotation = "0 0 1 153.379";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.053 -12.7278 630.876";rotation = "0.568161 0.581888 0.581894 239.207";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "376.954 32.3465 661.49";rotation = "0.999929 0.0119402 1.51353e-08 180";scale = "0.125 0.166666 60.728";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.451 -10.9507 661.491";rotation = "0.999929 0.0119404 1.51356e-08 180";scale = "0.125 0.166666 60.73";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "304.008 -8.90787 630.877";rotation = "0.56816 0.581887 0.581894 239.207";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "144.082 7.02902 630.875";rotation = "0.568164 0.581888 0.58189 239.207";scale = "9.75 0.166667 317.998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "303.536 10.8363 630.876";rotation = "0.0119394 -0.999857 -0.0119377 90.0082";scale = "0.125 13.0001 319";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration11";position = "381.981 25.2144 629.126";rotation = "0 0 1 219.231";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.111 26.761 630.875";rotation = "0.56816 0.581887 0.581894 239.207";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.5 28.5379 661.49";rotation = "0.999929 0.0119402 1.51353e-08 180";scale = "0.125 0.166666 60.73";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "303.065 30.5809 630.876";rotation = "0.56816 0.581887 0.581894 239.207";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "205.748 1.46228 631.125";rotation = "0 0 -1 93.5342";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "205.937 7.81725 631.125";rotation = "0 0 1 90.5909";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "203.949 -3.88528 631.125";rotation = "0 0 1 180.575";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "206.521 14.6983 631.125";rotation = "0 0 1 92.8759";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration11";position = "406.003 -0.446304 629.126";rotation = "0 0 -1 60.0196";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "197.376 -2.6893 631.125";rotation = "0 0 1 185.145";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "378.146 -7.13624 661.741";rotation = "0.01194 -0.999897 -0.00797812 112.505";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "193.462 -9.90838 631.125";rotation = "0 0 -1 88.7443";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "193.224 -3.47418 631.125";rotation = "0 0 -1 91.0292";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "193.073 5.6295 631.125";rotation = "0 0 -1 91.0292";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "192.926 12.1583 631.125";rotation = "0 0 -1 92.1717";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "192.652 19.6687 631.125";rotation = "0 0 -1 92.1717";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "377.204 32.3525 661.74";rotation = "0.0119399 -0.999897 -0.00797789 112.505";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "191.95 25.5682 631.125";rotation = "0 0 -1 89.8868";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration11";position = "413.645 30.4067 629.126";rotation = "0 0 1 222.077";scale = "1 1 1";team = "1";ownerGUID = "2000343";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.303 -12.7218 631.126";rotation = "0.0119384 -0.999769 -0.0178672 67.5122";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "180.632 2.16641 631.125";rotation = "0 0 -1 88.1891";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "180.096 -5.99378 631.125";rotation = "0 0 -1 87.6179";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "180.665 9.2333 631.125";rotation = "0 0 1 89.2783";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "180.656 15.6141 631.125";rotation = "0 0 1 89.2783";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.361 26.767 631.125";rotation = "0.0119383 -0.999769 -0.0178669 67.5122";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "180.789 22.4139 631.125";rotation = "0 0 1 89.8495";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "165.081 27.2858 640.395";rotation = "0.186802 0.196834 -0.962477 91.9317";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "164.13 27.3764 644.178";rotation = "0 0 -1 90.7496";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "164.156 27.4013 642.178";rotation = "0 0 -1 91.3209";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "156.963 -12.2937 640.808";rotation = "0 0 -1 93.6276";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "157.924 -12.3965 637.04";rotation = "0.187117 0.19172 -0.963447 93.4757";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "156.965 -12.4081 638.808";rotation = "0 0 -1 91.3426";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "156.46 -11.1423 631.125";rotation = "0 0 1 88.9488";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "156.367 -5.62868 631.125";rotation = "0 0 1 88.9488";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "450.112 -2.2874 631.126";rotation = "0 0 1 95.9469";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "156.236 -0.91302 631.125";rotation = "0 0 1 88.9488";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "450.4 -7.74227 630.628";rotation = "0 0 1 86.8558";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "156.142 4.53471 631.125";rotation = "0 0 1 88.9488";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "450.744 3.87552 631.126";rotation = "0 0 1 95.9469";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "155.972 14.2652 631.125";rotation = "0 0 1 88.9488";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "451.734 12.2376 631.126";rotation = "0 0 1 93.662";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "155.879 19.5456 631.125";rotation = "0 0 1 88.9488";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.521 -12.5256 631.126";rotation = "0 0 -1 1.36828";scale = "0.125 0.166666 6.26798";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "155.803 24.0137 631.125";rotation = "0 0 1 88.9488";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "452.057 18.3934 631.126";rotation = "0 0 1 92.5195";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "452.043 24.5114 631.126";rotation = "0 0 1 91.9483";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "451.939 -5.37508 630.628";rotation = "0.999929 0.0119382 1.51327e-08 180";scale = "2.5 3.33333 61.2";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "452.257 31.1516 631.126";rotation = "0 0 1 91.9483";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "451.024 36.2025 630.627";rotation = "0 0 1 89.7676";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.931 26.9716 631.125";rotation = "0 0 -1 1.36828";scale = "0.125 0.166666 6.56";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "450.957 34.1128 630.627";rotation = "0.999929 0.0119382 1.51327e-08 180";scale = "2.5 3.33333 61.2";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "147.707 -12.6405 630.626";rotation = "0.999929 0.0119382 1.51327e-08 180";scale = "2.5 3.33333 61.2";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.367 26.517 630.876";rotation = "-0.999857 -0.0119359 -0.0119395 90.0082";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.886 26.5056 630.78";rotation = "-0.962676 0.179577 -0.202504 92.4502";scale = "0.125 0.166666 78.0002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "142.833 -6.07571 630.707";rotation = "-0.195933 0.191012 0.961834 90.9565";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "142.936 0.0671 630.81";rotation = "-0.195879 0.19451 0.961144 89.9418";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "142.691 6.86872 630.776";rotation = "-0.195878 0.194544 0.961137 89.932";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "462.775 34.1449 630.877";rotation = "-0.999857 -0.0119332 -0.0119404 90.0083";scale = "0.125 0.166666 78.0002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "463.256 34.1564 630.781";rotation = "-0.962343 -0.203389 0.180357 91.9271";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "142.438 13.7458 630.739";rotation = "-0.195957 0.189383 0.962151 91.4349";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "147.076 26.8557 630.625";rotation = "0.999929 0.0119382 1.51327e-08 180";scale = "2.5 3.33333 61.2";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "141.793 22.9894 630.563";rotation = "0.186796 0.197175 -0.962408 91.8285";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "136.802 -10.9922 628.161";rotation = "0.186394 0.203577 -0.961152 89.9538";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "134.367 -0.29495 627.258";rotation = "0.186505 0.201824 -0.9615 90.4614";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "130.56 13.0996 625.814";rotation = "0.186829 0.19665 -0.962509 91.9849";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "126.193 2.71062 623.903";rotation = "0.186167 0.207131 -0.960437 88.9386";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "124.645 -11.5494 623.121";rotation = "0.186505 0.201824 -0.9615 90.4614";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "120.356 -5.01321 621.41";rotation = "0.186394 0.203577 -0.961152 89.9538";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "121.563 17.3233 622.13";rotation = "0.187534 0.185076 -0.964665 95.5408";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "116.771 8.59282 620.059";rotation = "0.186166 0.207149 -0.960433 88.9339";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "115.66 0.57685 619.52";rotation = "0.186723 0.198359 -0.962179 91.4773";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "115.292 23.6784 619.596";rotation = "0.186393 0.203594 -0.961149 89.9492";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "111.487 -9.23901 617.695";rotation = "0.186505 0.201824 -0.9615 90.4614";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "108.81 0.33816 616.681";rotation = "0.185691 0.214452 -0.958921 86.9045";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "70.1644 -14.4919 600.26";rotation = "-0.476822 -0.488343 -0.730864 108.975";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "108.183 16.2742 616.579";rotation = "0.187448 0.186505 -0.964406 95.0904";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "69.6924 5.25259 600.26";rotation = "0.0119411 -0.999769 -0.017846 67.5116";scale = "0.125 13 159";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "463.962 -5.08794 630.878";rotation = "0.630289 0.645518 0.431327 225.677";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "463.953 14.6673 630.686";rotation = "0.0119373 -0.999897 -0.00798039 112.505";scale = "0.125 13 157.998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.2215 24.9969 600.26";rotation = "-0.476822 -0.488343 -0.730864 108.975";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "463.019 34.4008 630.877";rotation = "0.630289 0.645518 0.431327 225.677";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "69.8466 -11.6554 600.51";rotation = "0 0 1 90.4655";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "69.7704 -8.46629 600.51";rotation = "0 0 1 89.1855";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "537.763 13.3917 608.583";rotation = "0 0 -1 93.0231";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "69.6911 -5.14523 600.51";rotation = "0 0 1 90.4655";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "537.216 19.5382 608.583";rotation = "0 0 -1 92.4519";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "69.6072 -1.6316 600.51";rotation = "0 0 1 90.3279";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "537.657 11.3393 605.567";rotation = "0 0 -1 93.611";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "69.5221 1.9324 600.51";rotation = "0 0 1 89.8942";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "538.236 5.23268 605.567";rotation = "0 0 -1 90.1171";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "69.434 5.6247 600.51";rotation = "0 0 1 89.7567";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "537.021 20.8388 605.567";rotation = "0 0 -1 94.1822";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "538.966 -1.23377 605.567";rotation = "0 0 -1 95.8301";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.9204 -14.7478 600.26";rotation = "0.5727 0.58654 0.572701 119.214";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "69.3535 8.9956 600.51";rotation = "0 0 1 89.8942";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "538.095 15.9896 606.554";rotation = "0 0 -1 93.1005";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "538.434 -0.588833 602.551";rotation = "0 0 -1 89.5407";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "538.26 5.54886 602.551";rotation = "0 0 -1 89.5407";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "537.888 11.5479 602.551";rotation = "0 0 -1 88.9689";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "69.2609 12.8709 600.51";rotation = "0 0 1 89.1855";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "537.968 15.879 604.541";rotation = "0 0 -1 91.9574";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "538.147 -1.7731 600.515";rotation = "0 0 1 88.0539";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "538.024 2.7166 600.515";rotation = "0 0 1 85.1971";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "537.413 20.5215 602.551";rotation = "0 0 1 86.8123";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "69.166 16.8475 600.51";rotation = "0 0 1 89.3224";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "538.11 7.42653 600.515";rotation = "0 0 1 88.6251";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "537.465 26.4626 605.567";rotation = "0 0 -1 90.705";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "536.684 35.9099 600.359";rotation = "-0.962343 -0.203389 0.180357 91.9271";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "537.929 12.1677 600.515";rotation = "0 0 1 87.4826";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "69.0769 20.5792 600.51";rotation = "0 0 1 89.1855";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "537.691 19.2978 600.515";rotation = "0 0 -1 92.1391";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "537.618 26.4254 602.551";rotation = "0 0 1 88.5701";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "537.459 23.698 600.515";rotation = "0 0 1 88.0092";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "68.9964 23.9512 600.51";rotation = "0 0 1 96.1778";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "537.358 27.9301 600.515";rotation = "0 0 1 86.2955";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "538.504 32.1919 605.567";rotation = "0 0 -1 89.5625";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "537.835 31.9639 602.551";rotation = "0 0 1 90.2615";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "537.511 32.0075 600.515";rotation = "0 0 -1 89.9527";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "538.294 36.5688 606.577";rotation = "0 0 -1 91.4687";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "537.861 36.4331 604.564";rotation = "0 0 -1 90.3262";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "537.863 36.4331 602.551";rotation = "0 0 -1 90.3262";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "541.406 14.1218 600.515";rotation = "0 0 1 95.9034";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "541.443 15.2972 600.515";rotation = "0 0 1 90.1904";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "541.381 16.393 600.515";rotation = "0 0 1 91.3335";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "541.459 17.3728 600.515";rotation = "0 0 1 82.7638";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "541.425 18.5378 600.515";rotation = "0 0 1 85.6205";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "537.383 16.4209 600.265";rotation = "0.568162 0.581886 0.581893 239.208";scale = "10 0.166666 40";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "555.975 7.92781 600.515";rotation = "0 0 -1 0.148037";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate6";position = "555.831 9.84275 600.515";rotation = "0 0 -1 94.0831";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate3";position = "556.182 10.0074 601.518";rotation = "0 0 -1 1.23858";scale = "1 1 1";team = "1";ownerGUID = "2000343";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2000343/Buildings/3.cs b/Univ/Data/2000343/Buildings/3.cs new file mode 100644 index 0000000..17ba6fa --- /dev/null +++ b/Univ/Data/2000343/Buildings/3.cs @@ -0,0 +1,219 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Phantom139" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.561 -0.77939 -4899.75";rotation = "-0.997501 0.0499524 0.04996 90.1428";scale = "1.12488 0.166666 16.0001";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.253 -8.49225 -4895.75";rotation = "0.59567 0.538849 0.595667 123.364";scale = "0.125 0.166666 16.0376";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField15";position = "208.315 -0.52968 -4899.51";rotation = "-0.538848 0.595666 0.595672 123.364";scale = "8.0388 3.52977 0.48";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.526 -0.826263 -4896";rotation = "0.0500204 0.998748 1.266e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.1 -0.2669 -4899.5";rotation = "0 0 1 95.7344";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.776 -8.28877 -4896";rotation = "0.0500204 0.998748 1.266e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.228 -8.741 -4899.5";rotation = "0 0 1 95.7344";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.501 -1.27588 -4897.75";rotation = "0.0353928 0.706662 0.706665 184.054";scale = "0.879902 1.16667 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.751 -8.73839 -4897.75";rotation = "0.0353928 0.706662 0.706665 184.054";scale = "0.879902 1.16667 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.277 -1.20296 -4895.75";rotation = "0.0499583 0.997501 0.0499584 90.1434";scale = "0.125 0.166666 8.04024";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.527 -8.66547 -4895.75";rotation = "0.0499583 0.997501 0.0499584 90.1434";scale = "0.125 0.166666 8.04024";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.825 -10.457 -4897.75";rotation = "-0.615849 -0.557104 -0.557103 116.745";scale = "0.748842 1.16667 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.526 -1.22794 -4899.5";rotation = "0 0 1 95.7344";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.776 -8.69045 -4899.5";rotation = "0 0 1 95.7344";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.924 -11.9722 -4895.75";rotation = "0.59567 0.538849 0.595667 123.364";scale = "0.125 0.166666 5.99074";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.899 -12.2209 -4899.5";rotation = "0 0 1 95.7344";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.321 -0.55447 -4891.75";rotation = "-0.706661 0.035391 0.706667 184.054";scale = "1.875 7.66673 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.571 12.3846 -4899.75";rotation = "-0.0353909 -0.706658 0.70667 184.054";scale = "5.00002 0.166666 48.0006";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.425 5.47239 -4897.75";rotation = "-0.615849 -0.557104 -0.557103 116.745";scale = "2.74653 1.16667 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.222 10.913 -4895.75";rotation = "-0.557106 0.61585 -0.557102 116.747";scale = "0.125 0.166666 21.9722";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.899 -12.2209 -4895.5";rotation = "0 0 1 95.7344";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.173 -11.4955 -4897.75";rotation = "0.0353928 0.706662 0.706665 184.054";scale = "4.74977 1.16667 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.222 10.913 -4887.75";rotation = "-0.557106 0.61585 -0.557102 116.747";scale = "0.125 0.166666 46.0004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.65 -12.1959 -4895.75";rotation = "0.0499583 0.997501 0.0499584 90.1434";scale = "0.125 0.166666 37.9982";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "204.842 8.90453 -4899.5";rotation = "0 0 1 6.29941";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.223 -10.9981 -4891.75";rotation = "-0.595668 -0.538849 0.59567 123.364";scale = "1.875 6.33303 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.372 0.4446 -4887.5";rotation = "0.741592 0.670851 -1.96627e-06 180";scale = "5.75005 6.33303 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "198.925 9.29874 -4899.5";rotation = "0 0 1 5.72819";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.247 11.1617 -4899.5";rotation = "0 0 1 95.7344";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.746 -10.2976 -4887.75";rotation = "0.706665 -0.0353928 0.706662 184.054";scale = "0.125 0.166666 37.9982";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.247 11.1617 -4895.5";rotation = "0 0 1 95.7344";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.571 12.3846 -4897.75";rotation = "-0.997501 0.0499597 0.049965 90.143";scale = "4.74977 1.16667 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.998 11.1867 -4895.75";rotation = "0.0499583 0.997501 0.0499584 90.1434";scale = "0.125 0.166666 37.9982";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.92 1.3937 -4897.75";rotation = "-0.538848 0.595666 0.595672 123.364";scale = "5.75005 1.16667 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.82 12.8613 -4895.75";rotation = "-0.557106 0.61585 -0.557102 116.747";scale = "0.125 0.166666 46.0004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "193.426 9.85031 -4899.5";rotation = "0 0 1 5.72819";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.521 11.8871 -4891.75";rotation = "0.557103 -0.615846 -0.557108 116.746";scale = "1.875 6.33299 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.497 -10.2726 -4899.5";rotation = "0 0 1 95.7344";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.423 1.44363 -4891.75";rotation = "-0.0499593 -0.997501 0.0499575 90.1429";scale = "1.875 7.66673 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.998 11.1867 -4887.75";rotation = "0.0499583 0.997501 0.0499584 90.1434";scale = "0.125 0.166666 37.9982";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.497 -10.2726 -4895.5";rotation = "0 0 1 95.7344";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.522 -10.0239 -4887.75";rotation = "0.59567 0.538849 0.595667 123.364";scale = "0.125 0.166666 46.0004";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.845 13.11 -4899.5";rotation = "0 0 1 95.7344";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "229.879 -6.77214 -4889.93";rotation = "0.0491699 0.981792 0.183486 30.5307";scale = "10.0004 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.845 13.11 -4895.5";rotation = "0 0 1 95.7344";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "249.355 -8.72729 -4880";rotation = "-4.95942e-07 2.07948e-07 1 185.733";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "249.055 -11.7123 -4877";rotation = "0.997502 -0.0499514 0.0499502 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "252.339 -9.02694 -4877";rotation = "0.0499514 0.997502 0.0499489 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "251.359 11.2429 -4869.93";rotation = "-0.0129595 -0.258799 0.965844 185.537";scale = "1.25 13.3333 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "233.347 32.7219 -4849.93";rotation = "0.258797 -0.0129571 0.965845 185.538";scale = "10.0009 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "253.319 30.7169 -4860";rotation = "-3.98451e-05 1.36077e-06 1 5.73297";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "213.87 34.6773 -4840";rotation = "-1.28655e-07 3.70846e-06 1 185.733";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "211.862 14.7072 -4829.93";rotation = "0.981793 -0.0491647 0.183479 30.5306";scale = "1.25 13.3335 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "253.618 33.702 -4857";rotation = "0.0353804 0.706665 -0.706663 175.947";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.304 30.4171 -4857";rotation = "0.706665 -0.0353804 -0.706663 175.946";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "210.885 34.977 -4837";rotation = "-0.0499514 -0.997501 0.0499566 90.1434";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "214.169 37.6624 -4837";rotation = "-0.997502 0.0499514 0.0499486 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "209.905 -4.76687 -4820";rotation = "3.9681e-05 -3.14574e-06 1 5.73297";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "206.92 -4.46713 -4817";rotation = "0.706665 -0.0353804 0.706663 184.054";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "209.606 -7.75191 -4817";rotation = "0.0353804 0.706665 0.706663 184.054";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "229.877 -6.77179 -4809.93";rotation = "-0.258797 0.0129571 0.965845 185.538";scale = "10.0012 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "249.354 -8.72725 -4800";rotation = "1.28655e-07 -3.70846e-06 1 185.733";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "249.055 -11.7123 -4797";rotation = "0.997502 -0.0499514 0.0499486 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "252.339 -9.02693 -4797";rotation = "0.0499514 0.997501 0.0499566 90.1434";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "251.359 11.2429 -4789.93";rotation = "-0.0129586 -0.258799 0.965844 185.537";scale = "1.25 13.3333 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "253.319 30.7169 -4780";rotation = "-3.9681e-05 3.14574e-06 1 5.73297";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "253.618 33.702 -4777";rotation = "0.0353804 0.706665 -0.706663 175.947";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.304 30.4171 -4777";rotation = "0.706665 -0.0353804 -0.706663 175.946";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "233.347 32.7219 -4769.93";rotation = "0.258797 -0.0129571 0.965845 185.538";scale = "10.0012 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "213.871 34.6774 -4760";rotation = "4.95394e-05 1.10778e-05 1 5.73352";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "210.887 34.9771 -4757";rotation = "0.706665 -0.0353843 0.706663 184.054";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "214.171 37.6624 -4757";rotation = "0.0353843 0.706665 -0.706663 175.946";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "211.864 14.7076 -4749.93";rotation = "0.981789 -0.0491584 0.183504 30.5307";scale = "1.25 13.3334 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "209.906 -4.76641 -4740";rotation = "-3.65621e-06 -4.12642e-07 1 185.734";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "206.922 -4.46674 -4737";rotation = "-0.049956 -0.997501 0.0499535 90.1434";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "209.606 -7.75135 -4737";rotation = "0.997501 -0.049956 0.0499619 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "229.875 -6.77159 -4729.93";rotation = "-0.258798 0.0129604 0.965845 185.538";scale = "10.0003 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "249.354 -8.72683 -4720";rotation = "1.26069e-05 -3.5375e-06 1 5.73352";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "249.054 -11.7118 -4717";rotation = "0.0353843 0.706665 0.706663 184.054";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "252.339 -9.02648 -4717";rotation = "0.706665 -0.0353843 -0.706663 175.946";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "251.362 11.2429 -4709.93";rotation = "-0.0129586 -0.258797 0.965845 185.539";scale = "1.25 13.3334 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "253.318 30.7169 -4700";rotation = "1.2696e-05 -4.73697e-05 1 5.73407";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "253.618 33.7019 -4697";rotation = "0.0353869 0.706665 -0.706662 175.946";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.302 30.4172 -4697";rotation = "0.706665 -0.0353869 -0.706663 175.946";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "233.349 32.7225 -4689.93";rotation = "-0.0491615 -0.981785 0.183524 30.5308";scale = "10.0003 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "213.874 34.6783 -4680";rotation = "-4.30226e-07 3.71888e-06 1 185.735";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "210.889 34.978 -4677";rotation = "-0.0499599 -0.9975 0.0499679 90.1434";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "214.174 37.6633 -4677";rotation = "-0.997501 0.0499599 0.0499593 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "211.866 14.7085 -4669.93";rotation = "0.981785 -0.0491684 0.183524 30.5307";scale = "1.25 13.3334 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "209.909 -4.76541 -4660";rotation = "-2.75268e-05 3.93341e-05 1 5.73475";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "206.924 -4.46571 -4657";rotation = "0.706665 -0.0353919 0.706662 184.054";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "209.609 -7.75036 -4657";rotation = "0.0353919 0.706665 0.706662 184.055";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "229.881 -6.77099 -4649.93";rotation = "-0.258797 0.0129614 0.965845 185.54";scale = "10.0007 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "249.356 -8.72703 -4640";rotation = "-4.60261e-05 -9.29761e-06 1 5.73529";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "249.056 -11.712 -4637";rotation = "0.0353956 0.706665 0.706662 184.055";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "252.34 -9.0268 -4637";rotation = "0.706665 -0.0353956 -0.706662 175.944";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "250.93 6.93452 -4632.43";rotation = "-0.981778 0.0491743 0.183559 30.531";scale = "1.25 9.99997 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "252.455 22.0998 -4625";rotation = "2.843e-06 4.37506e-07 1 185.736";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "252.755 25.0848 -4622";rotation = "-0.9975 0.0499704 0.0499754 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.439 21.8 -4622";rotation = "0.0499704 0.9975 0.0499687 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "236.793 23.673 -4617.43";rotation = "-0.0491828 -0.981779 0.183553 30.5311";scale = "7.50072 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "221.625 25.1964 -4610";rotation = "2.92715e-05 -3.19396e-05 1 5.73598";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "218.641 25.4962 -4607";rotation = "0.706665 -0.0354006 0.706662 184.056";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "221.925 28.1814 -4607";rotation = "0.0354006 0.706665 -0.706662 175.944";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "220.049 9.53503 -4602.43";rotation = "0.981778 -0.0491818 0.183559 30.5309";scale = "1.25 10 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "218.526 -5.63047 -4595";rotation = "-1.04084e-06 -4.5076e-07 1 185.736";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "215.542 -5.33071 -4592";rotation = "-0.0499704 -0.9975 0.0499688 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "218.226 -8.61541 -4592";rotation = "0.9975 -0.0499704 0.0499719 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "234.188 -7.20354 -4587.43";rotation = "0.0491828 0.981779 0.183553 30.5311";scale = "7.50072 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "249.356 -8.72691 -4580";rotation = "-2.92715e-05 3.19396e-05 1 5.73598";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "249.056 -11.7119 -4577";rotation = "0.0354006 0.706665 0.706662 184.056";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "252.34 -9.02671 -4577";rotation = "0.706665 -0.0354006 -0.706662 175.944";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "250.93 6.93462 -4572.43";rotation = "-0.981778 0.049181 0.183559 30.531";scale = "1.25 10 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "242.005 18.1244 -4565";rotation = "0 0 1 5.7357";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "247.48 22.5996 -4565";rotation = "1.04084e-06 4.5076e-07 1 185.736";scale = "3.74977 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "239.521 23.3992 -4562";rotation = "-0.0499704 -0.9975 0.0499708 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "242.805 26.0843 -4562";rotation = "-0.9975 0.0499704 0.0499719 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "252.754 25.085 -4562";rotation = "-0.9975 0.0499704 0.0499719 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.439 21.8 -4562";rotation = "0.0499704 0.9975 0.0499688 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "240.432 2.46278 -4557.43";rotation = "0.981778 -0.049181 0.183559 30.5309";scale = "1.25 10 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "238.906 -12.7026 -4550";rotation = "-1.04084e-06 -4.5076e-07 1 185.736";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "238.606 -15.6876 -4547";rotation = "0.9975 -0.0499704 0.0499719 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "241.891 -13.0024 -4547";rotation = "0.0499704 0.9975 0.0499708 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "223.245 -11.1295 -4542.43";rotation = "0.258798 -0.0129652 0.965844 185.54";scale = "7.50028 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "208.076 -9.60646 -4535";rotation = "-2.01028e-05 -2.75371e-05 1 5.73543";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "205.092 -9.30672 -4532";rotation = "0.706665 -0.0353969 0.706662 184.055";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "207.776 -12.5914 -4532";rotation = "0.0353969 0.706665 0.706662 184.055";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "209.649 6.05507 -4527.43";rotation = "-0.981778 0.0491759 0.183558 30.5312";scale = "1.25 10 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "211.176 21.2203 -4520";rotation = "0 0 1 185.736";scale = "6.24955 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "198.243 22.5194 -4517";rotation = "-0.0499704 -0.9975 0.0499698 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "201.528 25.2039 -4517";rotation = "-0.557097 0.615861 -0.557097 116.746";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "224.109 19.9212 -4517";rotation = "0.0499704 0.9975 0.0499698 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "221.423 23.2056 -4517";rotation = "0.595674 0.53884 -0.595671 236.635";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "199.867 8.71243 -4513.68";rotation = "0.981779 -0.0491828 0.183552 30.531";scale = "1.25 8.33327 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "219.768 6.71358 -4513.68";rotation = "0.981781 -0.0491843 0.183541 30.531";scale = "1.25 8.3333 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "208.517 -5.21217 -4506.18";rotation = "0.981781 -0.0491835 0.183541 30.531";scale = "6.25005 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "195.734 -2.42218 -4503.58";rotation = "0.708183 0.152239 0.68942 205.06";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "208.085 -9.52061 -4503.68";rotation = "0.981781 -0.0491825 0.18354 30.5312";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "221.599 -5.01953 -4503.58";rotation = "-0.68056 0.219391 0.699075 162.907";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "207.643 -13.915 -4502.5";rotation = "5.65836e-07 2.68445e-06 1 185.735";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "198.459 -5.30717 -4502.08";rotation = "-0.625562 0.69154 0.36117 223.53";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "218.354 -7.30553 -4502.08";rotation = "0.681737 0.616696 0.3936 140.804";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "210.628 -14.2147 -4499.5";rotation = "0.0499656 0.997501 0.0499594 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "207.343 -16.9 -4499.5";rotation = "0.9975 -0.0499656 0.0499639 90.1434";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "191.982 -12.342 -4494.93";rotation = "-0.0491783 -0.981782 0.183538 30.5309";scale = "7.50028 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "176.813 -10.819 -4487.5";rotation = "2.19887e-05 9.69757e-07 1 5.73529";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "176.513 -13.804 -4484.5";rotation = "0.0353956 0.706665 0.706662 184.055";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "173.829 -10.5192 -4484.5";rotation = "0.706665 -0.0353956 0.706662 184.055";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "178.389 4.84238 -4479.93";rotation = "-0.0129627 -0.258797 0.965845 185.54";scale = "1.25 9.99997 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "179.912 20.0078 -4472.5";rotation = "2.843e-06 4.37506e-07 1 185.736";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "180.212 22.9928 -4469.5";rotation = "-0.9975 0.0499704 0.0499754 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "176.928 20.3076 -4469.5";rotation = "-0.0499704 -0.9975 0.049971 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "195.574 18.4349 -4464.93";rotation = "0.0491828 0.981779 0.18355 30.531";scale = "7.50072 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "210.742 16.9117 -4457.5";rotation = "1.83009e-05 2.75777e-05 1 5.73543";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "213.726 16.6119 -4454.5";rotation = "0.706665 -0.0353969 -0.706662 175.945";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "211.042 19.8967 -4454.5";rotation = "0.0353969 0.706665 -0.706662 175.946";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "209.167 1.25013 -4449.93";rotation = "0.0129632 0.258798 0.965845 185.54";scale = "1.25 9.99997 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "207.643 -13.9152 -4442.5";rotation = "-2.29305e-06 8.05055e-07 1 185.736";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "210.627 -14.215 -4439.5";rotation = "0.0499704 0.9975 0.0499685 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "207.343 -16.9002 -4439.5";rotation = "0.9975 -0.0499704 0.0499745 90.1435";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "191.981 -12.342 -4434.93";rotation = "-0.0491828 -0.981779 0.183553 30.5311";scale = "7.50093 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "195.603 -77.659 -4432.57";rotation = "0 0 1 5.7357";scale = "3.74977 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "176.813 -10.8186 -4427.5";rotation = "2.92715e-05 -3.19396e-05 1 5.73598";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "200.078 -83.1335 -4432.57";rotation = "0 0 1 185.736";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "190.128 -82.1341 -4432.57";rotation = "2.17468e-07 1.63718e-06 1 185.736";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "194.603 -87.6085 -4432.57";rotation = "0 0 1 5.7357";scale = "3.74977 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "176.513 -13.8036 -4424.5";rotation = "0.0354005 0.706665 0.706662 184.055";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "173.829 -10.5188 -4424.5";rotation = "0.706665 -0.0354006 0.706662 184.056";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "198.246 -82.9497 -4427.14";rotation = "0.049674 0.991541 0.119913 45.3451";scale = "3.74833 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "178.387 4.84278 -4419.93";rotation = "-0.981774 0.0491817 0.183579 30.5312";scale = "1.25 10 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "201.685 -73.2002 -4421.32";rotation = "-0.93359 0.046697 0.355288 16.0518";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "201.18 -78.2195 -4421.98";rotation = "0 0 1 5.7357";scale = "3.75003 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "205.656 -83.6939 -4421.98";rotation = "0 0 1 185.736";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "190.73 -82.195 -4421.98";rotation = "0 0 1 185.736";scale = "3.75003 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "202.155 -68.5239 -4419.37";rotation = "-0.012954 -0.258783 0.965849 185.54";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "200.18 -88.1695 -4421.98";rotation = "0 0 1 5.7357";scale = "3.75003 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "202.559 -64.508 -4416.28";rotation = "-0.99154 0.049646 0.119932 45.3436";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "179.912 20.0082 -4412.5";rotation = "2.34971e-06 5.02829e-07 1 185.736";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "202.869 -61.4276 -4412.24";rotation = "-0.02503 -0.499832 0.865761 184.967";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "180.212 22.9932 -4409.5";rotation = "-0.997499 0.049976 0.0499787 90.144";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "176.928 20.308 -4409.5";rotation = "-0.049976 -0.997499 0.0499753 90.1434";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "203.015 -59.9692 -4407.41";rotation = "0.039719 0.792735 0.608271 183.49";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "195.573 18.4349 -4404.93";rotation = "-0.258799 0.0129662 0.965844 185.54";scale = "7.5003 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "203.344 -56.6939 -4406.38";rotation = "0.0129769 0.25881 0.965841 185.54";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "203.65 -53.6417 -4404.79";rotation = "0.0397184 0.792731 0.608276 183.49";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "203.979 -50.3664 -4403.76";rotation = "0.0129722 0.258798 0.965844 185.54";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "204.333 -46.8431 -4402.29";rotation = "-0.996631 0.0499176 0.0650699 75.1869";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "204.556 -44.6289 -4401.25";rotation = "0.0108476 0.216425 0.976239 185.599";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "204.918 -41.0345 -4399.57";rotation = "-0.996631 0.0499242 0.065071 75.187";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "205.152 -38.6994 -4398.35";rotation = "0.00870214 0.173639 0.984771 185.649";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "210.742 16.9115 -4397.5";rotation = "2.07534e-05 3.40332e-05 1 5.73598";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "205.517 -35.0716 -4396.44";rotation = "-0.996631 0.0499221 0.0650663 75.1869";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "213.727 16.6117 -4394.5";rotation = "0.706665 -0.0354006 -0.706662 175.945";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "205.763 -32.6286 -4395.03";rotation = "0.00654109 0.130523 0.991424 185.686";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "211.042 19.8965 -4394.5";rotation = "0.0354005 0.706665 -0.706662 175.945";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "206.13 -28.977 -4392.9";rotation = "-0.996631 0.0499268 0.0650675 75.187";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "206.383 -26.4522 -4391.29";rotation = "0.00436656 0.0871534 0.996185 185.714";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "150.363 -78.1402 -4398.93";rotation = "0.300671 -0.0150644 0.953609 185.47";scale = "20.0137 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "209.167 1.25003 -4389.93";rotation = "0.981774 -0.0491813 0.183579 30.5312";scale = "1.25 10 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "206.751 -22.796 -4388.94";rotation = "-0.996631 0.049931 0.0650678 75.187";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "207.01 -20.2076 -4387.11";rotation = "0.00218405 0.043616 0.999046 185.731";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "207.376 -16.566 -4384.54";rotation = "-0.996631 0.0499325 0.0650663 75.187";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "207.643 -13.9153 -4382.5";rotation = "-2.34971e-06 -5.02829e-07 1 185.736";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "115.975 -71.1329 -4378.94";rotation = "-0.130523 0.00653833 0.991424 185.686";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "111.46 -65.6098 -4378.94";rotation = "-0.00653833 -0.130523 0.991424 185.686";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "110.956 -70.6288 -4379.6";rotation = "7.04371e-06 -1.35004e-05 1 5.73557";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "111.93 -60.9343 -4376.99";rotation = "-0.98178 0.049181 0.183547 30.531";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "105.937 -70.1247 -4378.94";rotation = "0.130523 -0.00653833 0.991424 185.686";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "110.494 -75.2261 -4377.69";rotation = "0.0191671 0.382612 0.92371 185.299";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "115.578 -74.6455 -4376.07";rotation = "0 0 1 185.736";scale = "1.25 5.0001 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "111.103 -69.1707 -4376.07";rotation = "0 0 1 5.7357";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "101.261 -69.6552 -4376.99";rotation = "-0.049181 -0.98178 0.183547 30.531";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "110.103 -79.1207 -4376.07";rotation = "0 0 1 5.7357";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "105.628 -73.646 -4376.07";rotation = "0 0 1 185.736";scale = "1.25 5.00007 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2000343/Buildings/5.cs b/Univ/Data/2000343/Buildings/5.cs new file mode 100644 index 0000000..03cbeb7 --- /dev/null +++ b/Univ/Data/2000343/Buildings/5.cs @@ -0,0 +1,194 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Phantom139" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "SolarPanel";position = "357.588 -254.679 200";rotation = "0 0 1 92.4267";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "355.835 -254.647 200";rotation = "0 0 1 91.8555";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "354.331 -254.62 200";rotation = "0 0 1 91.8555";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.84 -254.503 199.75";rotation = "0.707094 -0.00637026 0.707091 180.73";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "352.272 -254.583 200";rotation = "0 0 1 91.8555";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "349.882 -254.54 200";rotation = "0 0 1 90.136";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.837 -254.633 195.014";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "346.43 -245.838 200";rotation = "0 0 1 0.734883";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "346.462 -244.096 200";rotation = "0 0 1 0.163129";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "346.393 -247.884 200";rotation = "0 0 1 0.734883";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "346.496 -242.201 200";rotation = "0 0 -1 0.979578";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.32 -251.949 199.75";rotation = "0.580787 0.570416 0.580786 120.598";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.837 -254.633 192.434";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "346.356 -249.954 200";rotation = "0 0 1 0.734883";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.659 -251.955 195.098";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.837 -254.633 189.687";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.625 -251.954 192.45";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "346.046 -253.995 200";rotation = "0 0 -1 0.331022";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";switchRadius = "150";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.6 -251.954 189.767";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.837 -254.633 186.972";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "346.194 -257.909 200";rotation = "0 0 1 181.883";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.569 -251.953 186.636";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.837 -254.633 184.092";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.02 -256.498 193.231";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "346.142 -260.796 200";rotation = "0 0 1 179.026";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.219 -256.502 199.75";rotation = "-0.57385 0.584288 -0.57385 119.406";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.538 -251.953 183.95";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "342.823 -254.076 200";rotation = "0 0 -1 88.1444";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.526 -254.721 195.399";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 190.399";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "346.113 -262.384 200";rotation = "0 0 1 180.169";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.837 -254.633 181.596";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.526 -254.721 193.056";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 187.569";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.526 -254.721 190.555";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "346.073 -264.598 200";rotation = "0 0 1 180.169";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.511 -251.952 181.056";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.837 -254.633 179.029";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.526 -254.721 188.088";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 185.148";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "346.044 -266.195 200";rotation = "0 0 1 183.026";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "340.356 -254.032 200";rotation = "0 0 -1 83.0032";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "344.537 -254.107 199.75";rotation = "0.00900958 0.999919 0.00900957 90.0048";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.676 185.347";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.512 -251.952 177.963";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 182.463";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.837 -254.633 176.109";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.528 -254.63 182.825";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "338.265 -253.994 200";rotation = "0 0 -1 87.0019";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 180.161";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.396 -251.95 175.219";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.528 -254.63 179.906";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "336.595 -253.964 200";rotation = "0 0 -1 88.1501";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.837 -254.633 172.67";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 177.414";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.666 -251.955 172.886";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.524 -254.857 177.343";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 175.438";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "334.789 -253.931 200";rotation = "0 0 -1 88.1501";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.837 -254.633 169.739";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 174.461";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 172.809";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.662 -251.955 169.412";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.837 -254.633 167.387";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 169.973";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.629 -251.955 166.813";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.837 -254.633 165.06";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 170.121";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.604 -251.954 164.948";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 167.725";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.839 -254.549 162.628";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 166.946";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 165.354";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.576 -251.954 162.674";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 165.055";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.839 -254.549 160.329";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 163.041";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.554 -251.953 160.53";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 162.831";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 160.957";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.839 -254.549 157.593";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.53 -251.953 158.036";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 160.337";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 158.418";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.839 -254.549 155.443";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.506 -251.952 155.509";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 157.349";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.839 -254.549 153.55";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 156.203";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.482 -251.952 152.442";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 155.203";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 154.004";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.842 -254.408 150.751";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 151.732";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 152.433";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.452 -251.951 149.586";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.842 -254.408 147.931";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.19 -254.224 100";rotation = "0 0 1 1.03248";scale = "0.827285 1.51799 200";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 148.901";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.418 -251.951 147.057";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 149.466";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.842 -254.408 145.556";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 146.9";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.393 -251.95 145.134";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 146.921";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.842 -254.408 143.329";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 144.574";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.478 -251.952 142.683";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 144.428";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.842 -254.408 140.881";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.455 -251.951 140.182";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 142.258";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 141.224";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.842 -254.408 138.978";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 138.975";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.427 -251.951 137.372";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.841 -254.449 136.614";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 138.999";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.434 -251.951 135.062";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 136.514";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 136.284";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.841 -254.449 133.14";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.512 -251.952 132.902";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 133.906";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.841 -254.449 131.307";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 133.274";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.491 -251.952 130.739";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 131.499";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.841 -254.449 129.245";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.472 -251.952 128.593";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 130.328";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 129.26";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.841 -254.449 126.995";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.45 -251.951 125.985";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 127.231";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 127.687";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.841 -254.449 124.837";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 124.81";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.425 -251.951 123.36";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.841 -254.449 122.751";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 124.742";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 122.564";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.841 -254.449 120.799";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.4 -251.95 120.894";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 122.007";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.839 -254.57 118.308";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 119.791";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.371 -251.95 118.194";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 119.464";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 117.556";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.341 -251.949 115.603";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.839 -254.57 114.383";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 115.975";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.019 -256.498 114.813";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.38 -251.95 112.817";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.839 -254.57 111.329";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "345.978 -256.498 112.185";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.673 112.479";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.346 -251.949 110.14";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.839 -254.57 109.427";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "345.978 -256.498 109.972";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.528 -254.628 109.87";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.311 -251.949 107.953";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.839 -254.57 107.376";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "345.978 -256.498 107.958";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.839 -254.57 105.599";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.528 -254.628 107.361";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.302 -251.949 105.504";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "345.813 -256.495 105.873";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.841 -254.45 103.63";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.528 -254.628 104.822";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.307 -251.949 103.259";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "345.913 -256.496 103.982";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.527 -254.703 102.604";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "347.839 -254.55 99.929";rotation = "-0.570416 0.580787 -0.580786 239.402";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "352.241 -254.091 100";rotation = "0 0 -1 90.654";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "351.387 -251.44 100";rotation = "0 0 -1 116.939";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "346.252 -251.948 99.999";rotation = "0.999919 -0.00900958 0.00900957 90.0048";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "350.503 -249.646 100";rotation = "0 0 1 218.935";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "350.876 -257.02 100";rotation = "0 0 -1 54.0256";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "347.991 -248.621 100";rotation = "0 0 1 188.668";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "345.875 -256.496 100.162";rotation = "0.00637026 0.707094 -0.707091 179.27";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "344.528 -254.612 100.359";rotation = "0.584288 0.57385 -0.57385 119.406";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "345.307 -248.869 100";rotation = "0 0 1 161.186";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "347.283 -260.657 100";rotation = "0 0 -1 9.39923";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "342.885 -251.679 100";rotation = "0 0 1 123.969";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "344.858 -260.362 100";rotation = "0 0 1 22.0876";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "340.46 -254.324 100";rotation = "0 0 1 73.02";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "341.114 -258.193 100";rotation = "0 0 1 40.9676";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); diff --git a/Univ/Data/2000343/Buildings/6.cs b/Univ/Data/2000343/Buildings/6.cs new file mode 100644 index 0000000..5f38f62 --- /dev/null +++ b/Univ/Data/2000343/Buildings/6.cs @@ -0,0 +1,22 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Phantom139" +// Created in mission "slapmydashH" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "-282.817 -485.001 129.874";rotation = "0.92375 -0.382997 -0.000540514 180.149";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";ispersonal = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-281.616 -478.985 128.96";rotation = "0.00341217 -0.00141607 0.999993 45.0003";scale = "3.75015 5.16709 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-281.615 -489.944 129.232";rotation = "0.863166 -0.357537 0.356527 98.5608";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-292.929 -478.984 129.233";rotation = "0.679179 -0.280202 0.678382 211.51";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-276.63 -479.186 129.45";rotation = "0.00340815 -0.00141306 0.999993 45.0391";scale = "1 1 1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-287.76 -477.979 129.47";rotation = "0.00340815 -0.00141306 0.999993 45.0391";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-292.575 -478.984 129.232";rotation = "0.863166 -0.357537 0.356527 98.5608";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-270.655 -478.63 129.188";rotation = "0.862984 0.356032 -0.35847 98.4789";scale = "0.125 0.166666 29.9984";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-281.792 -490.121 129.483";rotation = "0.00340966 -0.00141728 0.999993 45.0004";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-270.478 -478.807 129.438";rotation = "0.00141097 -0.00341229 -0.999993 45.0002";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-292.752 -479.16 129.483";rotation = "0.00340966 -0.00141728 0.999993 45.0004";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-270.623 -478.952 145.189";rotation = "-0.357277 0.862544 -0.358288 98.2811";scale = "0.125 0.166666 31.0026";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-281.438 -467.847 129.438";rotation = "0.00141097 -0.00341229 -0.999993 45.0002";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-281.937 -489.913 145.233";rotation = "0.358782 0.862724 0.356345 98.363";scale = "0.125 0.166666 30.0012";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-281.583 -467.992 145.189";rotation = "-0.357277 0.862544 -0.358288 98.2811";scale = "0.125 0.166666 30.9996";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-270.623 -478.599 145.188";rotation = "0.358782 0.862724 0.356345 98.363";scale = "0.125 0.166666 30.0012";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-281.813 -479.184 128.46";rotation = "0.000580397 0.00141087 0.999999 225";scale = "6.5 8.66666 1000";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2000343/Ranks/CnC4/Saved.Rank b/Univ/Data/2000343/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..9d292d5 --- /dev/null +++ b/Univ/Data/2000343/Ranks/CnC4/Saved.Rank @@ -0,0 +1,76 @@ +//Ranks File For GUID 2000343 +//Created On 2010-04-02, C&C 4 +$Rank::Name[2000343] = "Phantom139"; +$Rank::Rank[2000343, 1] = "General"; +$Rank::XP[2000343, 1] = 129475; +$Rank::Rank[2000343, 2] = "Hand Of Kane"; +$Rank::XP[2000343, 2] = 150238; +$Rank::Rank[2000343, 3] = "Hunter"; +$Rank::XP[2000343, 3] = 1643; +$CNC::Help[2000343, 2] = 0; +$CNC::Deaths[2000343] = 103; +$CNC::TotalCrawlerDecoms[2000343] = 23; +$CNC::TotalBuilds[2000343] = 547; +$CNC::BuildingsBuilt[2000343, "PowerPlant"] = 214; +$CNC::TotalKills[2000343] = 1569; +$CNC::UKills[2000343] = 850; +$CNC::BuildingsBuilt[2000343, "MissileTurret"] = 29; +$CNC::BuildingsBuilt[2000343, "GunTurret"] = 55; +$CNC::BuildingsBuilt[2000343, "ObeliskOfLight"] = 79; +$CNC::TotalBuildingLosses[2000343] = 81; +$CNC::BuildingLosses[2000343, "ObeliskOfLight"] = 24; +$CNC::BuildingLosses[2000343, "PowerPlant"] = 12; +$CNC::BuildingLosses[2000343, "MissileTurret"] = 6; +$CNC::KilledByPl[2000343, 2001729] = 41; +$CNC::Kills[2000343, 2001729] = 61; +$CNC::KilledByPl[2000343, 2450675] = 1; +$CNC::Kills[2000343, 2450675] = 2; +$CNC::BuildingsBuilt[2000343, "FocusBeam"] = 25; +$CNC::Kills[2000343, 2860882] = 2; +$CNC::KilledByPl[2000343, 2860882] = 1; +$CNC::TotalCrawlerKills[2000343] = 67; +$CNC::CrawlerKills[2000343, 2860882] = 1; +$CNC::BuildingLosses[2000343, "FocusBeam"] = 4; +$CNC::BuildingLosses[2000343, "GunTurret"] = 9; +$CNC::Kills[2000343, 2763554] = 30; +$CNC::KilledByPl[2000343, 2763554] = 47; +$CNC::CrawlerKills[2000343, 2763554] = 12; +$CNC::BuildingsBuilt[2000343, "IonControl"] = 15; +$CNC::BuildingLosses[2000343, "IonControl"] = 2; +$CNC::TotalBuildingKills[2000343] = 74; +$CNC::Kills[2000343, 2687806] = 1; +$CNC::Kills[2000343, 2000343] = 8; +$CNC::BuildingKills[2000343, "PowerPlant"] = 6; +$CNC::CrawlerKills[2000343, 2000343] = 1; +$CNC::BuildingsBuilt[2000343, "Bunker"] = 20; +$CNC::BuildingsBuilt[2000343, "CrystalShield"] = 20; +$CNC::BuildingLosses[2000343, "CrystalShield"] = 2; +$CNC::Help[2000343, 1] = 0; +$CNC::BuildingsBuilt[2000343, "Skystrike"] = 21; +$CNC::BuildingLosses[2000343, "Skystrike"] = 5; +$CNC::BuildingsBuilt[2000343, "FlameMortar"] = 34; +$CNC::BuildingLosses[2000343, "FlameMortar"] = 10; +$CNC::CrawlerKills[2000343, 2001729] = 21; +$CNC::BuildingKills[2000343, "FlameMortar"] = 2; +$CNC::CrawlerKills[2000343, 2485526] = 4; +$CNC::BuildingsBuilt[2000343, "FalconMRLS"] = 6; +$CNC::BuildingKills[2000343, "Skystrike"] = 1; +$CNC::BuildingKills[2000343, "Bunker"] = 2; +$CNC::Kills[2000343, 2003098] = 2; +$CNC::KilledByPl[2000343, 2003098] = 2; +$CNC::KilledByObj[2000343, RifleSoldierArmor] = 1; +$CNC::Kills[2000343, 2714648] = 3; +$CNC::KilledByPl[2000343, 2714648] = 4; +$CNC::Kills[2000343, 2982546] = 3; +$CNC::CrawlerKills[2000343, 2714648] = 4; +$CNC::BuildingsBuilt[2000343, "TempleOfNod"] = 6; +$CNC::BuildingsBuilt[2000343, "Tiberium"] = 7; +$CNC::KilledByPl[2000343, 2744981] = 1; +$CNC::BuildingsBuilt[2000343, "DisruptionTower"] = 3; +$CNC::CrawlerKills[2000343, 2744981] = 2; +$CNC::Kills[2000343, 2130825] = 1; +$CNC::Kills[2000343, 2886178] = 1; +$CNC::CrawlerKills[2000343, 2886178] = 2; +$CNC::BuildingKills[2000343, "FalconMRLS"] = 1; +$CNC::BuildingLosses[2000343, "Bunker"] = 1; +$CNC::BuildingLosses[2000343, "TempleOfNod"] = 1; \ No newline at end of file diff --git a/Univ/Data/2000343/Ranks/Powers/Saved.Dat b/Univ/Data/2000343/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..fca26e4 --- /dev/null +++ b/Univ/Data/2000343/Ranks/Powers/Saved.Dat @@ -0,0 +1,254 @@ +//--- OBJECT WRITE BEGIN --- +new SimSet(ClientData_2000343) { + + eulaAgree = "1"; + + new ScriptObject(classData5_2000343) { + class = "Star Lighter"; + + level = "67"; + affinity = "1"; + hasPowerEnergyBoost1 = "1"; + hasPowerHPBoost2 = "1"; + hasPowerShiningStar = "1"; + hasPowerShift = "1"; + hasPowerHPBoost1 = "1"; + hasPowerMedHeal = "1"; + hasPowerHealer = "1"; + hasPowerRepelShift = "1"; + hasPowerVapExplosion = "1"; + hasPowerEnviousDownpour = "1"; + hasPowerEnergyBoost3 = "1"; + hasPowerVaporize = "1"; + hasPowerEnergyBoost2 = "1"; + hasPowerCatalystBurst = "1"; + spendPoints = "68"; + hasPowerHPBoost3 = "1"; + exp = "9375"; + hasPowerStarShard = "1"; + hasPowerLightStrike = "1"; + hasPowerShardStorm = "1"; + }; + new ScriptObject(classData8_2000343) { + class = "Undecided"; + + level = "1"; + affinity = "0"; + spendPoints = "1"; + exp = "0"; + }; + new ScriptObject(classData7_2000343) { + class = "Phantom Lord"; + + hasPowerBarrierField = "1"; + level = "100"; + affinity = "2"; + hasPowerEnergyBoost5 = "1"; + hasPowerEnergyBoost1 = "1"; + hasPowerHPBoost2 = "1"; + hasPowerShadowArtillery = "1"; + hasPowerAvadusLightning = "1"; + hasPowerHPBoost4 = "1"; + hasPowerHPBoost1 = "1"; + hasPowerHPBoost6 = "1"; + hasPowerAvalanche = "1"; + hasPowerShadowHeal = "1"; + hasPowerShadowBoost = "1"; + hasPowerShadowSwipe = "1"; + hasPowerEnergyBoost3 = "1"; + hasPowerEnergyBoost7 = "1"; + hasPowerHPBoost5 = "1"; + hasPowerEnergyBoost4 = "1"; + hasPowerFlicker = "1"; + hasPowerShadowBomb = "1"; + hasPowerDematerialize = "1"; + hasPowerShadowBombDrop = "1"; + hasPowerEnergyBoost2 = "1"; + hasPowerAsteroidFall = "1"; + hasPowerShadowStrike = "1"; + spendPoints = "330"; + hasPowerShadowStorm = "1"; + hasPowerHPBoost3 = "1"; + exp = "153777"; + hasPowerEnergyBoost6 = "1"; + hasPowerShadowRift = "1"; + }; + new ScriptObject(classData3_2000343) { + class = "Annihilator"; + + hasPowerEnergyBall2 = "1"; + level = "86"; + affinity = "2"; + hasPowerEnergyBoost5 = "1"; + hasPowerEnergyBoost1 = "1"; + hasPowerHPBoost2 = "1"; + hasPowerMicrowave = "1"; + hasPowerHPBoost4 = "1"; + hasPowerHPBoost1 = "1"; + hasPowerHPBoost6 = "1"; + hasPowerSunRay = "1"; + hasPowerDarkVoid = "1"; + hasPowerSunStorm = "1"; + hasPowerEnergyBoost3 = "1"; + hasPowerLightning = "1"; + hasPowerEnergyBoost7 = "1"; + hasPowerHPBoost5 = "1"; + hasPowerFissureBurst = "1"; + hasPowerEnergyBoost4 = "1"; + hasPowerSplitFire = "1"; + hasPowerFireBall4 = "1"; + hasPowerBurnForce = "1"; + hasPowerFireBolt = "1"; + hasPowerEnergyBoost2 = "1"; + spendPoints = "105"; + hasPowerCrisp = "1"; + hasPowerHPBoost3 = "1"; + exp = "3643"; + hasPowerEnergyBoost6 = "1"; + hasPowerEnergyBall1 = "1"; + hasPowerEnergyBall3 = "1"; + hasPowerDesolation = "1"; + }; + new ScriptObject(classData1_2000343) { + class = "Deep Freezer"; + + hasPowerIceRush = "1"; + level = "100"; + affinity = "2"; + hasPowerEnergyBoost5 = "1"; + hasPowerEnergyBoost1 = "1"; + hasPowerHail = "1"; + hasPowerSeekingFreeze = "1"; + hasPowerHPBoost2 = "1"; + hasPowerShadowArtillery = "1"; + hasPowerHPBoost4 = "1"; + hasPowerSnowstorm = "1"; + hasPowerWhiteout = "1"; + hasPowerHPBoost1 = "1"; + hasPowerHPBoost6 = "1"; + hasPowerShadowRush = "1"; + hasPowerAvalanche = "1"; + hasPowerBlizzard = "1"; + hasPowerShadowBoost = "1"; + hasPowerEnergyBoost3 = "1"; + hasPowerEnergyBoost7 = "1"; + hasPowerHPBoost5 = "1"; + hasPowerIceBomb = "1"; + hasPowerEnergyBoost4 = "1"; + hasPowerFlicker = "1"; + hasPowerShadowBomb = "1"; + hasPowerShadowBrigade = "1"; + hasPowerShadowBombDrop = "1"; + hasPowerCrystalShock = "1"; + hasPowerEnergyBoost2 = "1"; + hasPowerCrystalBlast = "1"; + hasPowerDeepFreeze = "1"; + hasPowerShadowStrike = "1"; + spendPoints = "173"; + hasPowerShadowStorm = "1"; + hasPowerHPBoost3 = "1"; + hasPowerFrozenTwister = "1"; + exp = "156511"; + hasPowerEnergyBoost6 = "1"; + hasPowerShadowRift = "1"; + }; + new ScriptObject(classData6_2000343) { + class = "Guardian"; + + level = "60"; + affinity = "1"; + hasPowerEnergyBoost1 = "1"; + hasPowerDegaussianStrike = "1"; + hasPowerHPBoost2 = "1"; + hasPowerShift = "1"; + hasPowerHPBoost1 = "1"; + hasPowerMedHeal = "1"; + hasPowerHealer = "1"; + hasPowerStasisField = "1"; + hasPowerVapExplosion = "1"; + hasPowerEnergyBoost3 = "1"; + hasPowerForceedPush = "1"; + hasPowerVaporize = "1"; + hasPowerEnergyBoost2 = "1"; + hasPowerEnergyNuke = "1"; + spendPoints = "48"; + hasPowerHPBoost3 = "1"; + exp = "3555"; + hasPowerLightStrike = "1"; + hasPowerShielder = "1"; + }; + new ScriptObject(classData10_2000343) { + class = "Hunter"; + + level = "23"; + affinity = "0"; + hasPowerManaArrow = "1"; + hasPowerToxicTrap = "1"; + hasPowerAcidArrow = "1"; + spendPoints = "9"; + hasPowerBurnTrap = "1"; + exp = "3014"; + hasPowerSpearShower = "1"; + hasPowerBlastTrap = "1"; + }; + new ScriptObject(classData2_2000343) { + class = "Enforcer"; + + hasPowerEnergyBall2 = "1"; + level = "57"; + affinity = "1"; + hasPowerEnergyBoost1 = "1"; + hasPowerHPBoost2 = "1"; + hasPowerHPBoost1 = "1"; + hasPowerDeepFlameShot = "1"; + hasPowerEnergyBoost3 = "1"; + hasPowerLightning = "1"; + hasPowerSplitFire = "1"; + hasPowerFireBall4 = "1"; + hasPowerFireBolt = "1"; + hasPowerEnergyBoost2 = "1"; + hasPowerFireBall3 = "1"; + hasPowerFireBall5 = "1"; + spendPoints = "34"; + hasPowerHPBoost3 = "1"; + exp = "2323"; + hasPowerEnergyBall1 = "1"; + hasPowerEnergyBall3 = "1"; + hasPowerHellstorm = "1"; + }; + new ScriptObject(classData9_2000343) { + class = "Undecided"; + + level = "1"; + affinity = "0"; + spendPoints = "1"; + exp = "0"; + }; + new ScriptObject(classData4_2000343) { + class = "Nature Walker"; + + hasPowerSmackback = "1"; + level = "68"; + affinity = "1"; + hasPowerComposite = "1"; + hasPowerFreezeTrap = "1"; + hasPowerQuakeTrap = "1"; + hasPowerStrikeDown = "1"; + hasPowerManaArrow = "1"; + hasPowerToxicTrap = "1"; + hasPowerBurstTrap = "1"; + hasPowerMultishot = "1"; + hasPowerAcidArrow = "1"; + hasPowerNightTrap = "1"; + hasPowerAmbush = "1"; + hasPowerShineShot = "1"; + hasPowerNetTrap = "1"; + spendPoints = "81"; + hasPowerBurnTrap = "1"; + exp = "11986"; + hasPowerSpearShower = "1"; + hasPowerConcussionBlow = "1"; + hasPowerBlastTrap = "1"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2000343/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2000343/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..ce3e732 --- /dev/null +++ b/Univ/Data/2000343/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,433 @@ +//Ranks & Settings File For GUID 2000343 / Name: Phantom139 +//Created On 2010-10-30, Total Warfare Mod 2 3.4 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2000343) { + + new ScriptObject(TWM2Client_2000343) { + + weaponKillsP90Image = "292"; + noMoreEXPfec7f09facec5c8507ab7bbb4c1c63658fe94ae7 = "0"; + challengeCompleteIns1 = "1"; + noMoreEXP292027217f645da1c4a7f3dceced4234dc39a70c = "0"; + challengeCompleteNuke2 = "1"; + hasMedalRevengeAvoidedAgain = "1"; + noMoreEXP0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "0"; + xpGain721fe14a28612ef62ec71af4fef3996e0c811647 = "157000"; + challengeCompletePulsePhaserImage_1 = "1"; + xpGain083b1b79e00a4191c83b9770ff45c9feea79b3f8 = "1000"; + challengeCompleteBombPlanted = "1"; + xpGaine5bd4d1481c47eaa816988d443cfa217b1685764 = "670776"; + challengeCompleteOneK = "1"; + challengeCompleteNewYears = "1"; + challengeCompleteDownBoy = "1"; + challengeCompletepistolImage_2 = "1"; + challengeCompleteTopHit = "1"; + noMoreEXPd19410caba8981d853e95f180aee12d56c1d76e6 = "0"; + challengeCompleteGunHeli2 = "1"; + noMoreEXPbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "0"; + weaponKillsMp26CMDOImage = "105"; + challengeCompleteEMP1 = "1"; + challengeCompleteApache2 = "1"; + hasMedalTheUltimateHeadshot = "1"; + bossDefeatCountLordRog = "3"; + xpGaine343c981fa8dea7e0c230bfdef8ff5c0aa5a99a6 = "288"; + challengeCompleteHelicopter1 = "1"; + noMoreEXPb508ff07f5dd8a97704dac705e9bbacda201b159 = "0"; + noMoreEXP083b1b79e00a4191c83b9770ff45c9feea79b3f8 = "0"; + xpGain8837f4a6104c173fbf9ab957f308aa83162df37e = "203724"; + AirstrikeCalls = "160"; + challengeCompleteWaveDefeater = "1"; + challengeCompleteIndepRPG = "1"; + challengeCompleteLifeGiver = "1"; + challengeCompleteGOL2 = "1"; + challengeCompleteAirstrike3 = "1"; + vehicleKillsCentaurVehicle = "7"; + hasMedalRoyalSmackdown = "1"; + xpGaina350595951d9f03da23f710c22cbb108542dbdeb = "78828"; + noMoreEXP78d85c76473a76f1cbae9cdf07bae11d6363d158 = "0"; + challengeCompleteTreb3 = "1"; + noMoreEXPf4754809ab006cf7a9983d764a86f9c0150b646c = "0"; + xpGain292027217f645da1c4a7f3dceced4234dc39a70c = "100898"; + challengeCompleteFission3 = "1"; + weaponKillsMiniColliderCannonImage = "6"; + xpGain232efdff56b108c368cbe587f5fd4eac010b95f4 = "7464"; + noMoreEXPdd7dfcc969fa279e882307c86c4c61faece8aef0 = "0"; + noMoreEXP1e202bd59e5aeeff3235e04d7b28f7e2a337586e = "0"; + challengeCompleteNuke3 = "1"; + challengeCompleteHarrier2 = "1"; + challengeCompleteLD06SavagerImage_1 = "1"; + xpGainb83507ec9eb66c5c2ad20c7a9d913e577e3ce341 = "20"; + FissionCalls = "14"; + weaponKillsG17SniperRifleImage = "12"; + challengeCompleteSatNuke2 = "1"; + hasMedalAboutDamnTime = "1"; + challengeCompleteVeg2 = "1"; + challengeCompleteAirstrike2 = "1"; + phrase = "What is this phrase you speak of!?!?"; + noMoreEXP1f7f58a8d93c266873f16389f02b9268024fe5dd = "0"; + hasMedalMySky = "1"; + challengeCompleteFission1 = "1"; + challengeCompleteSBomber2 = "1"; + xpGainc94422717f85facc9d2642d19994183ade378ad4 = "6000"; + xpGain420be5c4b1c8c244206a8c7139a0a3ec81e724c0 = "204324"; + hasMedalInvatationAccepted = "1"; + xpGain26bc77186b7fdb0087fd458a5b4986ae1822641b = "62862"; + challengeCompleteTreb2 = "1"; + noMoreEXP17f6421af195e695e934dd8162f356acc59a5c2f = "0"; + noMoreEXP491376453857451529ec7a2e80c74296ba02ae98 = "0"; + noMoreEXP24a5f5898db61153fd1ae9ccb7f3dd2b0429ed46 = "0"; + weaponKillsrapierShieldImage = "50"; + weaponKillsDeagleImage = "44"; + challengeCompleteACGunship1 = "1"; + xpGainec8ad366aa726a0de12bd02e381cab0d5ed55648 = "42856"; + challengeCompleteABC = "1"; + noMoreEXP8837f4a6104c173fbf9ab957f308aa83162df37e = "0"; + noMoreEXP6b2adc2654df13f216ee16140041e011150b6122 = "0"; + noMoreEXP7c002129fba7c117b128edb1f4ef0ce1153a3ea1 = "0"; + CGCalls = "8"; + xpGainedf337ec0cf2ba8034b081eb97f1acc4b928f84f = "232812"; + bossDefeatCountGhostOfFire = "22"; + challengeCompleteEMP2 = "1"; + challengeCompletePulsePhaserImage_0 = "1"; + weaponKillsLD06SavagerImage = "121"; + challengeCompleteP90Image_2 = "1"; + weaponKillsAC130BigCannonImage = "3"; + challengeCompleteUAMS3 = "1"; + hasMedalThundaStruk = "1"; + hasMedalHonorsA = "1"; + weaponKillsspikerImage = "3"; + challengeCompleteCWS3 = "1"; + xpGainbdbabad4b8dedaeeec4d8d11739eb163b9b5e6e4 = "55026"; + challengeCompletePulsePhaserImage_6 = "1"; + challengeCompleteCentaur1 = "1"; + xpGaind19410caba8981d853e95f180aee12d56c1d76e6 = "2108"; + challengeCompleteUAV2 = "1"; + bossDefeatCountDAVardison = "1"; + bossDefeatCountShadeLord = "18"; + challengeCompleteCentaur2 = "1"; + challengeCompleteAirstrike1 = "1"; + challengeCompletepistolImage_3 = "1"; + xpGain491376453857451529ec7a2e80c74296ba02ae98 = "42426"; + xpGainb508ff07f5dd8a97704dac705e9bbacda201b159 = "40909"; + challengeCompleteLD06SavagerImage_2 = "1"; + noMoreEXPccdd06b5c5ef7d4dfaf1f621309802964e0178e1 = "0"; + xpGain4748a65e36180e18f5c4b0672b73c1d9ac593a59 = "2.22247e+06"; + challengeCompleteArmyOf50Stopped = "1"; + noMoreEXP420be5c4b1c8c244206a8c7139a0a3ec81e724c0 = "0"; + noMoreEXP344a199fa5d3cafb644ed4f9c40b81e18f813131 = "0"; + challengeCompleteGunship2 = "1"; + xpGain5810ab261901bdc66797a7083e12622e3ab85fe7 = "107724"; + challengeCompleteUAMS1 = "1"; + noMoreEXPb47efe2379f1336e87dd71f87643bb12f14c6659 = "0"; + challengeCompleteGroupBuster = "1"; + challengeCompleteAngel = "1"; + noMoreEXPfa8db70e7f35c186327d98c2421d66a498b44bd6 = "0"; + HarrierCalls = "27"; + challengeCompleteModel1887Image_1 = "1"; + rank = "Master Commander"; + challengeCompleteTreb1 = "1"; + noMoreEXP3168ab06a67b7ef06492b6f0c5af4a73283849ef = "0"; + weaponKillsM1700Image = "49"; + challengeCompleteNapalmHarrier1 = "1"; + weaponKillspistolImage = "5629"; + noMoreEXPc3ac0c579876ef5c463086e09c3dc237df9ce8b0 = "0"; + challengeCompleteHelicopter2 = "1"; + challengeCompleteBombDetonated = "1"; + challengeCompleteLRog3 = "1"; + challengeCompleteGunshipMall = "1"; + challengeCompleteVard1 = "1"; + hasMedalSrysly = "1"; + challengeCompletePulsePhaserImage_3 = "1"; + challengeCompleteGameEnder = "1"; + noMoreEXPdc7b9d125155cc301183ae093f3bfe9b8cc3a597 = "0"; + xpGain8d0fc508615725718e009df09699c012d754ce7b = "191094"; + challengeCompleteGunship3 = "1"; + challengeComplete15For15 = "1"; + rankNumber = "61"; + bossDefeatCountVengenor = "1"; + weaponKillsALSWPSniperRifleImage = "28"; + hasMedalHazing = "1"; + noMoreEXP2cfc78ad546abef081e0be3c1fbbc0d642226245 = "0"; + challengeCompletePulsePhaserImage_5 = "1"; + xpGain435092c5a67f712b37291f2963f9d47ad1aabca8 = "102000"; + noMoreEXPbdbabad4b8dedaeeec4d8d11739eb163b9b5e6e4 = "0"; + vehicleKillsHarbingerGunship = "6"; + xpGain9bb36e48ae146ab8e50eee42d43857bc81c3caca = "35262"; + xpGain9d7a38ce97bd188d84124e78647e97cb64a096f6 = "574302"; + noMoreEXP3036b90eb1218d797775c8e553bff2027f8a2da7 = "0"; + xpGainbc39284a1aa14327b7c30710854ab02d70934cb4 = "297648"; + noMoreEXPaf662d077a2c8fc44786f68fdd5c1479b195a3cc = "0"; + UAVCalls = "9"; + HWCalls = "4"; + weaponKillsAC130LittleCannonImage = "1"; + challengeComplete3For5Sabo = "1"; + hasMedalTheSourceOfAllEvil = "1"; + hasMedalHazingAC130 = "1"; + weaponKillsPulseSMGImage = "30"; + xpGainb15b03eec8e3e613c4d694f6f06bfdf1da1fa937 = "6.938e+06"; + noMoreEXP80673a496f9daf5bfa9345b87f4ae884c55a8df8 = "0"; + SatNukeCalls = "47"; + challengeCompletepistolImage_6 = "1"; + challengeCompleteYvex2 = "1"; + challengeCompletepistolImage_1 = "1"; + weaponKillsm93Image = "1"; + ZBCalls = "8"; + challengeCompleteMilestone25 = "1"; + challengeCompleteVeg1 = "1"; + challengeCompleteVard3 = "1"; + challengeCompleteMiniChaingunImage_4 = "1"; + xpGain4f043683dae6227c4c2efd508bf2b517ade94cd0 = "188400"; + xpGain24a5f5898db61153fd1ae9ccb7f3dd2b0429ed46 = "34632"; + xpGain3168ab06a67b7ef06492b6f0c5af4a73283849ef = "12000"; + challengeCompletepistolImage_4 = "1"; + hasMedalTheLight = "1"; + weaponKillsPg700Image = "41"; + bossDefeatCountCnlWindshear = "1"; + challengeCompleteBaseDestroyer = "1"; + weaponKillsHarbingerGunshipColliderImage = "2"; + challengeCompleteDEagleImage_1 = "1"; + noMoreEXPb83507ec9eb66c5c2ad20c7a9d913e577e3ce341 = "0"; + challengeCompleteSBomber1 = "1"; + ACCalls = "11"; + noMoreEXPbdd827761f1ab2ee90be57d19b47d608dd78e2bc = "0"; + weaponKillsG41RifleImage = "15"; + challengeCompleteIns3 = "1"; + challengeCompleteCrimsonHawkImage_1 = "1"; + challengeCompleteFaster = "1"; + challengeCompleteHelicopter3 = "1"; + xpGain89cdac08df21a5718f555304b1ff83706f567ff0 = "214650"; + hasMedalBurningNightmare = "1"; + bossDefeatCountStormrider = "3"; + xpGain6b2adc2654df13f216ee16140041e011150b6122 = "107790"; + xpGain7c002129fba7c117b128edb1f4ef0ce1153a3ea1 = "157830"; + xpGainaf662d077a2c8fc44786f68fdd5c1479b195a3cc = "104"; + vehicleKillsAC130 = "4"; + noMoreEXP0c8f78516eb5eb8e861c17cc2a17887330cc3d78 = "0"; + noMoreEXP5810ab261901bdc66797a7083e12622e3ab85fe7 = "0"; + noMoreEXPec8ad366aa726a0de12bd02e381cab0d5ed55648 = "0"; + noMoreEXPe5bd4d1481c47eaa816988d443cfa217b1685764 = "0"; + weaponKillsR700SniperRifleImage = "78"; + noMoreEXP1039f9bee04ef0fe706e8b49159ab9825bd08d7f = "0"; + challengeCompleteButIm2 = "1"; + noMoreEXP9d7a38ce97bd188d84124e78647e97cb64a096f6 = "0"; + xpGain5f1188775495558a565f7bda1a812d8c6fe6da41 = "398004"; + noMoreEXPc94422717f85facc9d2642d19994183ade378ad4 = "0"; + challengeCompleteCWS1 = "1"; + challengeCompleteVeg3 = "1"; + money = "6.08375e+06"; + noMoreEXPcf2c9dddda893c59031ef5ce5e5a8fff24281047 = "0"; + noMoreEXP5b576b6bae0c6065b4af156a60df188dec2b8b77 = "0"; + challengeCompleteLRog1 = "1"; + xpGain80673a496f9daf5bfa9345b87f4ae884c55a8df8 = "3180"; + challengeCompleteGOL3 = "1"; + challengeCompleteGunHeli3 = "1"; + challengeCompleteHarrier3 = "1"; + weaponKillsM1SniperRifleImage = "57"; + noMoreEXP7157524394b5b23795f12ae582a4859a543a7db9 = "0"; + weaponKillsStingerImage = "7"; + noMoreEXPf003e063e88cfa65eb43b21f9c4ae26bc5746fea = "0"; + challengeCompleteUndefeatable = "1"; + xpGaincf2c9dddda893c59031ef5ce5e5a8fff24281047 = "301164"; + xpGainae27473a04462f40846555ef3c15130473191fd1 = "329592"; + challengeCompleteZoneCapture = "1"; + noMoreEXP721fe14a28612ef62ec71af4fef3996e0c811647 = "0"; + noMoreEXP26bc77186b7fdb0087fd458a5b4986ae1822641b = "0"; + weaponKillsModel1887Image = "171"; + bossDefeatCountGhostOfLightning = "6"; + xpGain680e7deda563526e500f58036b6375a82134c2b0 = "25386"; + challengeCompleteIns2 = "1"; + hasMedalNuclearDawn = "1"; + noMoreEXP8d0fc508615725718e009df09699c012d754ce7b = "0"; + challengeCompleteMatchSet = "1"; + challengeCompleteCWS2 = "1"; + millionxp = "16"; + SlthAirstrikeCalls = "42"; + GMCalls = "80"; + challengeCompleteGoldStar = "1"; + xpGaindd7dfcc969fa279e882307c86c4c61faece8aef0 = "370206"; + xpGain4ab044aba12120725c31fc423e983af15f0e9c2e = "19322"; + name = "Phantom139"; + hasMedalHarbingersWhoa = "1"; + noMoreEXPb6410fc738b5c91870eea4499330a95635d881b9 = "0"; + weaponKillsShadowRifleImage = "1"; + challengeCompleteApache1 = "1"; + xpGain344a199fa5d3cafb644ed4f9c40b81e18f813131 = "93696"; + hasMedalGamerExcuisite = "1"; + challengeCompletepistolImage_5 = "1"; + challengeCompleteZBomber = "1"; + challengeCompleteCentaur3 = "1"; + weaponKillslasergunImage = "12"; + xpGainf4754809ab006cf7a9983d764a86f9c0150b646c = "1632"; + noMoreEXP4ab044aba12120725c31fc423e983af15f0e9c2e = "0"; + challengeCompletepistolImage_8 = "1"; + weaponKillsM4A1Image = "44"; + challengeCompleteClassExtravaganza = "1"; + noMoreEXPa8fddb1f8fd50ae9e9deff924f327c011b684f1c = "0"; + NukeCalls = "47"; + hasMedalHonorsB = "1"; + challengeCompleteAcceptance = "1"; + challengeCompleteNewYearsEve = "1"; + challengeCompleteMiniChaingunImage_1 = "1"; + challengeCompletePulsePhaserImage_4 = "1"; + weaponKillsRPGImage = "17"; + xpGain1039f9bee04ef0fe706e8b49159ab9825bd08d7f = "514"; + weaponKillsPulsePhaserImage = "2214"; + xpGainb47efe2379f1336e87dd71f87643bb12f14c6659 = "107964"; + challengeCompleteModel1887Image_2 = "1"; + challengeCompleteACGunship3 = "1"; + challengeCompleteSimonSays = "1"; + hasMedalSurvivor = "1"; + hasMedalPurist = "1"; + xpGain78d85c76473a76f1cbae9cdf07bae11d6363d158 = "11872"; + weaponKillsJavelinImage = "11"; + xpGain20721f5a2c9680e330b67d62bac22b18f43f273c = "91996"; + noMoreEXP680e7deda563526e500f58036b6375a82134c2b0 = "0"; + noMoreEXP0ac8aa337ed55dfac1136c0c0cfd911858b091df = "0"; + weaponKillsflamerImage = "23"; + weaponKillsSCD343Image = "27"; + bossDefeatCountTrebor = "4"; + challengeComplete3For5 = "1"; + weaponKillsCrimsonHawkImage = "458"; + noMoreEXP4f043683dae6227c4c2efd508bf2b517ade94cd0 = "0"; + xpGain0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "211572"; + challengeCompleteEMP3 = "1"; + challengeCompleteNuke1 = "1"; + hasMedalGloriousFire = "1"; + challengeCompleteNapalmHarrier3 = "1"; + xpGainfa8db70e7f35c186327d98c2421d66a498b44bd6 = "32022"; + hasMedalSerialKiller = "1"; + EMPCalls = "4"; + challengeCompleteCrimsonHawkImage_2 = "1"; + weaponKillsMG42Image = "12"; + weaponKillsPlasmaTorpedoImage = "57"; + challengeCompleteUAV1 = "1"; + challengeCompleteMiniChaingunImage_2 = "1"; + xpGain32e7a41d6a6254ba324c56bd9b15fd58f54423ea = "127260"; + xpGain5d662845851c50e989e78a8c2ac577c059c5dc40 = "79810"; + xp = "3000"; + hasMedalHonorsC = "1"; + noMoreEXP232efdff56b108c368cbe587f5fd4eac010b95f4 = "0"; + noMoreEXP435092c5a67f712b37291f2963f9d47ad1aabca8 = "0"; + challengeCompleteListHit = "1"; + challengeCompleteNapalmHarrier2 = "1"; + challengeCompleteLRog2 = "1"; + xpGain3036b90eb1218d797775c8e553bff2027f8a2da7 = "60"; + noMoreEXP3fff5581ed175894ba62b9644117f99dbb2df614 = "0"; + challengeCompleteSBomber3 = "1"; + hasMedalSkyFront = "1"; + challengeCompleteS3RifleImage_2 = "1"; + challengeCompleteEpicFailure = "1"; + officer = "10"; + hasMedalDownWithTheHarbingers = "1"; + noMoreEXP20721f5a2c9680e330b67d62bac22b18f43f273c = "0"; + NapalmHarrierCalls = "39"; + challengeCompleteUAV3 = "1"; + challengeCompleteMiniChaingunImage_3 = "1"; + xpGain4436560adc04b26b975f41b64e1a6fda2f8e2715 = "6210"; + HeliCalls = "95"; + challengeCompleteS3RifleImage_3 = "1"; + weaponKillsApacheCGImage = "5"; + challengeCompleteVard2 = "1"; + xpGain1f7f58a8d93c266873f16389f02b9268024fe5dd = "77862"; + xpGain0c8f78516eb5eb8e861c17cc2a17887330cc3d78 = "111900"; + challengeCompleteMiniChaingunImage_6 = "1"; + bossDefeatCountVardison3 = "22"; + weaponKillsSuperChaingunImage = "444"; + noMoreEXP9bb36e48ae146ab8e50eee42d43857bc81c3caca = "0"; + challengeCompleteACGunship2 = "1"; + xpGain2cfc78ad546abef081e0be3c1fbbc0d642226245 = "155472"; + noMoreEXP89cdac08df21a5718f555304b1ff83706f567ff0 = "0"; + noMoreEXPa350595951d9f03da23f710c22cbb108542dbdeb = "0"; + challengeCompleteGOL1 = "1"; + challengeCompleteSatNuke3 = "1"; + challengeCompleteCrimsonHawkImage_4 = "1"; + hasMedalSwarmOfDeath = "1"; + weaponKillsMRXXImage = "2"; + challengeCompleteHarrier1 = "1"; + noMoreEXP2133a288a74c089b4f8ec5d7a85eae04149afeaf = "0"; + challengeCompleteFission2 = "1"; + noMoreEXPb15b03eec8e3e613c4d694f6f06bfdf1da1fa937 = "0"; + noMoreEXPe98a0dc28947c2de62e554c9800c0a1f6ea0ffa2 = "0"; + weaponKillsPulseRifleImage = "2"; + noMoreEXPe0d890db9a571ea96915b06a699c59c4bb86f494 = "0"; + gameTime = "24071"; + challengeCompleteMiniChaingunImage_5 = "1"; + noMoreEXPbc39284a1aa14327b7c30710854ab02d70934cb4 = "0"; + noMoreEXP4436560adc04b26b975f41b64e1a6fda2f8e2715 = "0"; + hasMedalInsigniaDefeated = "1"; + xpGain7157524394b5b23795f12ae582a4859a543a7db9 = "400964"; + hasMedalLordraniussFall = "1"; + xpGaine98a0dc28947c2de62e554c9800c0a1f6ea0ffa2 = "88120"; + weaponKillsS3SRifleImage = "228"; + challengeCompleteS3RifleImage_1 = "1"; + challengeCompleteDF3 = "1"; + hasMedalTheNewGeneral = "1"; + xpGain0eb529f6a90c7ec5b9c1dbe52ded5285d5aee89c = "385150"; + xpGaind9de6e2caeda34a1a37110ca942c2f04524d90c8 = "194524"; + challengeCompleteUAMS2 = "1"; + hasMedalAGreatCommando = "1"; + challengeCompleteSoulsticeBombard = "1"; + xpGainccdd06b5c5ef7d4dfaf1f621309802964e0178e1 = "116556"; + weaponKillsMp26Image = "10"; + ArtyCalls = "32"; + bossDefeatCountYvex = "5"; + challengeCompleteFromTheTop = "1"; + weaponKillsSA2400Image = "1"; + noMoreEXPe343c981fa8dea7e0c230bfdef8ff5c0aa5a99a6 = "0"; + weaponKillsS3RifleImage = "334"; + noMoreEXPedf337ec0cf2ba8034b081eb97f1acc4b928f84f = "0"; + challengeCompletepistolImage_7 = "1"; + challengeCompleteYvex3 = "1"; + noMoreEXP32e7a41d6a6254ba324c56bd9b15fd58f54423ea = "0"; + challengeCompleteYvex1 = "1"; + noMoreEXPae27473a04462f40846555ef3c15130473191fd1 = "0"; + weaponKillsWp400Image = "24"; + challengeCompletePulsePhaserImage_2 = "1"; + noMoreEXP5d662845851c50e989e78a8c2ac577c059c5dc40 = "0"; + challengeCompleteGunship1 = "1"; + challengeCompleteP90Image_3 = "1"; + challengeCompleteSatNuke1 = "1"; + xpGaina8fddb1f8fd50ae9e9deff924f327c011b684f1c = "100324"; + challengeCompleteGunHeli1 = "1"; + bossDefeatCountInsignia = "3"; + challengeCompleteCrimsonHawkImage_3 = "1"; + noMoreEXP0eb529f6a90c7ec5b9c1dbe52ded5285d5aee89c = "0"; + challengeCompleteBombDisarmed = "1"; + weaponKillsMiniChaingunImage = "3866"; + challengeCompleteP90Image_1 = "1"; + challengeCompleteApache3 = "1"; + GunHeliCalls = "19"; + noMoreEXPd9de6e2caeda34a1a37110ca942c2f04524d90c8 = "0"; + xpGainc3ac0c579876ef5c463086e09c3dc237df9ce8b0 = "308596"; + noMoreEXP5f1188775495558a565f7bda1a812d8c6fe6da41 = "0"; + noMoreEXP4748a65e36180e18f5c4b0672b73c1d9ac593a59 = "0"; + hasMedalHarbiend = "1"; + }; + new ScriptObject(CCD_2000343) { + + expireDate = "20140131"; + }; + new ScriptObject(ClientSettings2000343) { + + savedstreak5 = "14"; + savedstreak2 = "3"; + savedstreak6 = "16"; + savedperk1 = "Advanced Grip"; + savedstreak1 = "2"; + savedperk3 = "Ammo Vet"; + savedperk2 = "Head Guard"; + savedstreak3 = "4"; + savedstreak4 = "6"; + }; + new ScriptObject(ClientStore2000343) { + + nextSlot = "0"; + nextLoto = "0"; + }; + new ScriptObject(CCD_2000343) { + + killstreakCalls20140213_14 = "2"; + expireDate = "20140228"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2001245/Buildings/1.cs b/Univ/Data/2001245/Buildings/1.cs new file mode 100644 index 0000000..66a5bee --- /dev/null +++ b/Univ/Data/2001245/Buildings/1.cs @@ -0,0 +1,13 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Signal360" +// Created in mission "slapmydash" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-101.225 -236.656 128.938";rotation = "0 0 1 109.314";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-101.514 -236.555 128.938";rotation = "0 0 1 109.314";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-102.04 -236.371 128.938";rotation = "0 0 1 109.314";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-102.538 -236.196 128.938";rotation = "0 0 1 109.314";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.563 -235.795 128.938";rotation = "0 0 1 109.885";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.888 -235.585 128.938";rotation = "0 0 1 111.028";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.888 -235.585 129.038";rotation = "0 0 1 111.028";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.96319 -195.136 129.427";rotation = "-0.00293192 -0.00830612 0.999961 218.883";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2001245/Buildings/2.cs b/Univ/Data/2001245/Buildings/2.cs new file mode 100644 index 0000000..46258fa --- /dev/null +++ b/Univ/Data/2001245/Buildings/2.cs @@ -0,0 +1,103 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Signal360" +// Created in mission "slapmydash" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "StationInventory";position = "-237.552 -237.897 129.138";rotation = "0 0 1 139.966";scale = "2 2 0.03";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-237.721 -238.258 132.288";rotation = "0 0 1 34.089";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "14";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-237.721 -238.258 132.288";rotation = "0.956077 -0.293114 3.71549e-07 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-237.707 -238.226 133.438";rotation = "0.933192 -0.359379 -4.55546e-07 180";scale = "0.75 0.999999 1.5";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-236.449 -236.973 136.438";rotation = "0.374879 0.927074 1.17515e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-226.566 -248.341 134.188";rotation = "-0.299498 0.674648 0.674649 146.654";scale = "2.5 0.5 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-233.273 -255.758 134.188";rotation = "-0.299498 0.674648 0.674649 146.654";scale = "2.5 0.5 59.9972";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-228.21 -250.161 130.627";rotation = "0.338208 0.878201 0.338199 97.42";scale = "0.125 0.0333333 1";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-258.456 -239.388 130.627";rotation = "-0.846926 -0.375977 -0.375976 99.4758";scale = "0.125 0.166666 59.316";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-236.477 -258.929 130.627";rotation = "0.878202 -0.338204 0.3382 97.4212";scale = "0.125 0.166666 23.9968";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-224.923 -246.522 130.627";rotation = "0.682263 -0.262743 -0.682263 150.557";scale = "0.125 0.0333333 1";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-226.492 -248.26 123.016";rotation = "-0.299498 0.67465 0.674647 146.654";scale = "0.4 0.4 0.4";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "4.5";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-225.298 -246.939 121.952";rotation = "-0.299498 0.67465 0.674647 146.654";scale = "0.2 0.2 0.2";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "4.6";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-219.859 -240.924 134.188";rotation = "-0.299498 0.674648 0.674649 146.654";scale = "2.5 0.5 60";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-241.4 -234.927 134.188";rotation = "-0.299498 0.674648 0.674649 146.654";scale = "2.5 0.5 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-225.61 -252.575 130.513";rotation = "0.262743 0.682261 0.682266 209.443";scale = "0.2 0.2 0.2";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "4.5";isSwitchedOff = "1";switchRadius = "100";timed = "2";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-217.026 -237.418 130.627";rotation = "-0.878202 0.338202 0.338202 97.4212";scale = "0.125 0.166666 23.9968";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-225.374 -254.477 132.438";rotation = "0.913984 0.405749 4.48432e-06 179.999";scale = "0.625003 3.33333 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "4.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "-224.392 -253.693 132.398";rotation = "0.846921 0.375989 -0.375974 99.4752";scale = "5.02201 3.46999 0.48";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "4.6";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-225.372 -254.476 132.438";rotation = "-0.405748 0.913985 3.54284e-06 180";scale = "0.05 0.0666666 0.4";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-224.033 -253.668 129.317";rotation = "0 0 1 222.124";scale = "0.125 0.166666 6.242";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-222.857 -251.694 132.438";rotation = "0 0 1 42.1241";scale = "2.5 3.33333 5";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-239.624 -270.237 134.788";rotation = "0.67465 0.299498 0.674647 146.654";scale = "0.125 3.3335 99.999";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-221.013 -250.329 129.317";rotation = "0 0 1 222.124";scale = "0.125 0.166666 6.242";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-220.342 -248.913 132.438";rotation = "-0.405748 0.913985 3.54284e-06 180";scale = "0.625003 3.33333 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-238.669 -217.509 130.627";rotation = "-0.846926 -0.375977 -0.375976 99.4758";scale = "0.125 0.166666 59.3132";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-248.425 -228.892 130.627";rotation = "-0.299498 0.674647 0.67465 146.654";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "15";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-248.425 -228.892 130.627";rotation = "-0.299498 0.674649 -0.674648 213.346";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-258.809 -239.406 130.627";rotation = "0.878202 -0.338202 0.338201 97.4205";scale = "0.125 0.166666 59.9986";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-249.408 -228.042 130.627";rotation = "-0.846926 -0.375978 -0.375976 99.476";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "15";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-249.408 -228.042 130.627";rotation = "0.846925 0.375976 -0.375979 99.4758";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-254.814 -249.76 124.938";rotation = "0 0 1 42.1241";scale = "10 3.33333 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-221.03 -256.383 129.067";rotation = "0.846923 0.375985 -0.375975 99.4753";scale = "0.125 0.166666 8.59652";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-221.029 -256.383 130.945";rotation = "0.338201 0.878203 0.3382 97.4206";scale = "0.125 0.166666 7.59824";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-218.01 -253.044 129.067";rotation = "0.846923 0.375985 -0.375975 99.4753";scale = "0.125 0.166666 8.59654";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-269.647 -236.346 134.788";rotation = "0.682263 -0.262746 0.682262 209.442";scale = "0.125 3.33353 79.998";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-237.691 -238.28 133.438";rotation = "0 0 1 42.1241";scale = "2.5 3.33333 60";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-218.01 -253.043 130.958";rotation = "0.338201 0.878203 0.3382 97.4206";scale = "0.125 0.166666 7.59544";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-232.917 -262.819 124.938";rotation = "0 0 1 42.1241";scale = "2.5 6.66666 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-240.036 -263.833 130.734";rotation = "-0.299498 0.67465 0.674647 146.654";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "11";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-240.036 -263.833 130.734";rotation = "0.299498 -0.674646 0.674651 146.654";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-220.844 -256.551 129.317";rotation = "0 0 -1 47.8761";scale = "0.125 0.166666 6.242";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-241.087 -263.713 130.681";rotation = "-0.846926 -0.375977 -0.375976 99.4758";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "11";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-241.187 -263.913 130.681";rotation = "0.846925 0.375976 -0.375978 99.4757";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-221.012 -256.736 129.067";rotation = "0.375974 -0.846923 -0.375986 99.4753";scale = "0.125 0.166666 10.004";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-220.676 -256.366 130.963";rotation = "0.674649 0.2995 0.674647 146.654";scale = "0.125 0.166666 8.00456";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-217.825 -253.211 129.317";rotation = "0 0 -1 47.8761";scale = "0.125 0.166666 6.242";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-220.912 -258.412 128.938";rotation = "0 0 1 45.2737";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "4.5";isSwitchedOff = "1";switchRadius = "25";timed = "2";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-272.341 -240.18 130.081";rotation = "0.299498 -0.674647 0.67465 146.654";scale = "0.125 0.166666 78.8512";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-252.525 -224.866 124.938";rotation = "0 0 1 42.1241";scale = "2.5 9.99977 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-242.464 -213.741 134.788";rotation = "-0.375977 0.846926 -0.375976 99.4758";scale = "0.125 3.333 59.9986";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-235.774 -272.911 130.081";rotation = "0.878202 -0.338199 0.338204 97.4211";scale = "0.125 0.166666 38.7954";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-227.986 -220.092 124.938";rotation = "0 0 1 42.1241";scale = "9.9996 3.33333 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-212.796 -240.568 124.938";rotation = "-0 -0 1 42.1241";scale = "2.5 6.6665 20";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-242.819 -206.678 134.788";rotation = "0.682261 -0.262741 0.682266 209.442";scale = "0.125 3.33326 79.9954";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-212.238 -233.313 131.049";rotation = "-0.299498 0.67465 0.674647 146.654";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "9";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-212.438 -233.313 131.049";rotation = "0.299498 -0.674646 0.674651 146.654";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-263.332 -236.023 130.9";rotation = "0.262746 0.682263 0.682262 209.442";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "6";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-263.147 -236.023 130.898";rotation = "-0.262741 -0.682262 0.682265 209.443";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-243.099 -266.624 130.081";rotation = "0.299497 -0.674646 0.674651 146.654";scale = "0.125 0.166666 19.8";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-263.376 -234.317 130.901";rotation = "-0.878202 0.338202 0.338201 82.5792";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "6";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-263.84 -234.317 130.901";rotation = "0.878202 -0.338201 0.338203 97.4206";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-203.043 -236.716 130.084";rotation = "-0.878203 0.338202 0.338198 97.4204";scale = "0.125 0.166666 38.7998";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-211.988 -231.324 131.144";rotation = "-0.846926 -0.375977 -0.375976 99.4758";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "9";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-211.988 -231.624 131.144";rotation = "0.846925 0.375976 -0.375978 99.4757";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-245.961 -210.578 130.084";rotation = "-0.878203 0.338203 0.3382 97.4207";scale = "0.125 0.166666 59.9972";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-239.303 -203.588 130.084";rotation = "-0.846925 -0.375975 -0.37598 99.4758";scale = "0.125 0.166666 78.9276";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-242.325 -212.948 131.203";rotation = "-0.782504 -0.0196417 0.622336 114.532";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "7";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-242.325 -213.369 131.094";rotation = "0.776531 -0.629765 -0.0198754 103.252";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-243.93 -213.136 130.99";rotation = "0.262746 0.682263 0.682262 209.442";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "7";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-243.729 -213.136 131.094";rotation = "-0.262741 -0.682262 0.682265 209.443";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-210.033 -230.058 130.084";rotation = "-0.846925 -0.375975 -0.375981 99.4759";scale = "0.125 0.166666 19.8";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-266.054 -232.855 130.081";rotation = "-0.878202 0.338202 0.338201 97.4205";scale = "0.125 0.166666 19.8";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-233.8 -241.976 163.438";rotation = "-1.33505e-13 1 -5.99315e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2001245";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-241.337 -242.301 163.438";rotation = "-1.33505e-13 1 -5.99315e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2001245";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-232.66 -232.716 163.688";rotation = "-0.878202 0.338202 0.338202 97.4206";scale = "3.75 0.166667 30";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-233.932 -234.425 163.438";rotation = "-1.33505e-13 1 -5.99315e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2001245";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-241.782 -234.721 163.438";rotation = "-1.33505e-13 1 -5.99315e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2001245";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-237.38 -247.999 164.187";rotation = "0.878202 -0.338203 0.3382 97.42";scale = "0.125 0.166666 28.0012";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-237.398 -247.646 164.187";rotation = "0.846923 0.375982 -0.375978 99.4753";scale = "0.125 0.166666 27.0002";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-238.757 -238.87 163.938";rotation = "0 0 1 42.1241";scale = "0.625 0.833332 2";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-237.008 -248.334 164.445";rotation = "0.674649 0.299498 0.674647 146.654";scale = "0.25325 0.166666 28.0014";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-247.746 -238.961 164.441";rotation = "0.682264 -0.262745 0.682262 209.442";scale = "0.25175 0.166666 28.0014";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-245.961 -210.578 130.084";rotation = "0.878202 -0.3382 0.338204 97.4206";scale = "0.125 0.166666 19.8";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-228.342 -237.632 164.187";rotation = "0.846923 0.375982 -0.375978 99.4753";scale = "0.125 0.166666 27.0002";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-238.337 -228.93 164.187";rotation = "0.26274 0.682267 -0.682261 150.557";scale = "0.125 0.166666 26.0034";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-238.02 -228.207 164.456";rotation = "0.682264 -0.262745 0.682262 209.442";scale = "0.25925 0.166666 28";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-238.373 -228.224 164.442";rotation = "-0.375977 0.846926 -0.375976 99.4758";scale = "0.252 0.166666 28";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-237.176 -248.519 163.938";rotation = "0 0 1 42.1241";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-227.457 -237.771 163.938";rotation = "0 0 1 42.1241";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-237.01 -248.335 167.734";rotation = "0.674649 0.299498 0.674647 146.654";scale = "0.383 0.166666 28.0014";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-237.361 -248.351 167.699";rotation = "0.338202 0.878202 0.338201 97.4206";scale = "0.382753 0.166666 28.0014";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-247.931 -238.793 163.938";rotation = "0 0 1 42.1241";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-238.788 -238.82 168.038";rotation = "0 0 1 38.2032";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "14";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-238.788 -238.82 168.038";rotation = "0.94494 -0.327244 4.14812e-07 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-232.994 -233.086 168.688";rotation = "0.262741 0.682264 -0.682263 150.557";scale = "3.50017 0.166667 28.0028";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-237.008 -248.334 168.688";rotation = "0.674649 0.299498 0.674647 146.654";scale = "0.125 0.166666 28.0014";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-247.746 -238.961 168.688";rotation = "0.682264 -0.262745 0.682262 209.442";scale = "0.125 0.166666 28.0014";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-227.635 -237.597 167.715";rotation = "0.338202 0.878202 0.338201 97.4206";scale = "0.371498 0.166666 28";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-238.205 -228.039 163.938";rotation = "0 0 1 42.1241";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-238.373 -228.224 167.751";rotation = "-0.375977 0.846926 -0.375976 99.4758";scale = "0.371998 0.166666 28";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-227.635 -237.596 168.688";rotation = "0.338202 0.878202 0.338201 97.4206";scale = "0.125 0.166666 28";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-238.373 -228.224 168.688";rotation = "-0.375977 0.846926 -0.375976 99.4758";scale = "0.125 0.166666 28";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-235.018 -301.666 130.622";rotation = "-0.299498 0.674649 0.674648 146.655";scale = "0.125 0.0333333 180";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-206.704 -271.104 130.622";rotation = "-0.299496 0.67465 -0.674648 213.345";scale = "0.125 0.0333333 4";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-202.572 -266.534 130.622";rotation = "-0.299496 0.67465 -0.674648 213.345";scale = "0.125 0.0333333 4";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-206.722 -270.751 130.622";rotation = "-0.375976 0.846927 -0.375974 99.4758";scale = "0.025 0.166666 84.302";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-174.299 -235.272 130.622";rotation = "0.846927 0.375976 -0.375974 99.4758";scale = "0.125 0.0333333 181";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-301.417 -241.281 130.622";rotation = "0.262745 0.682261 0.682265 209.443";scale = "0.125 0.0333333 180";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-174.653 -235.289 130.622";rotation = "-0.375976 0.846927 -0.375974 99.4758";scale = "0.025 0.166666 84.302";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2001245/Buildings/3.cs b/Univ/Data/2001245/Buildings/3.cs new file mode 100644 index 0000000..eeead0d --- /dev/null +++ b/Univ/Data/2001245/Buildings/3.cs @@ -0,0 +1,101 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Signal360" +// Created in mission "FlatlandBigH" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.477 -158.929 101.627";rotation = "0.878202 -0.338204 0.3382 97.4212";scale = "0.125 0.166666 23.9968";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-132.917 -162.819 95.938";rotation = "0 0 1 42.1241";scale = "2.5 6.66666 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-125.374 -154.477 103.438";rotation = "0.913984 0.405749 4.48432e-06 179.999";scale = "0.625003 3.33333 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "4.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-125.372 -154.476 103.438";rotation = "-0.405748 0.913985 3.54284e-06 180";scale = "0.05 0.0666666 0.4";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-128.21 -150.161 101.627";rotation = "0.338208 0.878201 0.338199 97.42";scale = "0.125 0.0333333 1";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-135.774 -172.911 101.081";rotation = "0.878202 -0.338199 0.338204 97.4211";scale = "0.125 0.166666 38.7954";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-124.033 -153.668 100.317";rotation = "0 0 1 222.124";scale = "0.125 0.166666 6.242";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-140.036 -163.833 101.734";rotation = "-0.299498 0.67465 0.674647 146.654";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "11";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-240.036 -263.833 130.734";rotation = "0.299498 -0.674646 0.674651 146.654";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-121.03 -156.383 100.067";rotation = "0.846923 0.375985 -0.375975 99.4753";scale = "0.125 0.166666 8.59652";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-121.029 -156.383 101.945";rotation = "0.338201 0.878203 0.3382 97.4206";scale = "0.125 0.166666 7.59824";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-141.087 -163.713 101.681";rotation = "-0.846926 -0.375977 -0.375976 99.4758";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "11";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-241.187 -263.913 130.681";rotation = "0.846925 0.375976 -0.375978 99.4757";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "-124.392 -153.693 103.398";rotation = "0.846921 0.375989 -0.375974 99.4752";scale = "5.02201 3.46999 0.48";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "4.6";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-120.844 -156.551 100.317";rotation = "0 0 -1 47.8761";scale = "0.125 0.166666 6.242";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-122.857 -151.694 103.438";rotation = "0 0 1 42.1241";scale = "2.5 3.33333 5";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-126.492 -148.26 94.016";rotation = "-0.299498 0.67465 0.674647 146.654";scale = "0.4 0.4 0.4";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "4.5";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-139.624 -170.237 105.788";rotation = "0.67465 0.299498 0.674647 146.654";scale = "0.125 3.3335 99.999";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-124.923 -146.522 101.627";rotation = "0.682263 -0.262743 -0.682263 150.557";scale = "0.125 0.0333333 1";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-121.012 -156.736 100.067";rotation = "0.375974 -0.846923 -0.375986 99.4753";scale = "0.125 0.166666 10.004";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-126.566 -148.341 105.188";rotation = "-0.299498 0.674648 0.674649 146.654";scale = "2.5 0.5 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-117.993 -153.395 101.878";rotation = "-0.375978 0.846925 -0.375977 99.4758";scale = "0.780251 0.166666 8.00606";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;closedscale = "0.780251 0.166666 8.00606";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";openedscale = "0.780251 0.166666 0.1";prevscale = "0.780251 0.166666 8.00606";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-121.013 -150.329 100.317";rotation = "0 0 1 222.124";scale = "0.125 0.166666 6.242";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-118.01 -153.044 100.067";rotation = "0.846923 0.375985 -0.375975 99.4753";scale = "0.125 0.166666 8.59654";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-143.099 -166.624 101.081";rotation = "0.299497 -0.674646 0.674651 146.654";scale = "0.125 0.166666 19.8";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-118.01 -153.043 101.958";rotation = "0.338201 0.878203 0.3382 97.4206";scale = "0.125 0.166666 7.59544";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-125.298 -146.939 92.952";rotation = "-0.299498 0.67465 0.674647 146.654";scale = "0.2 0.2 0.2";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "4.6";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-120.342 -148.913 103.438";rotation = "-0.405748 0.913985 3.54284e-06 180";scale = "0.625003 3.33333 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-117.825 -153.211 100.317";rotation = "0 0 -1 47.8761";scale = "0.125 0.166666 6.242";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-158.456 -139.388 101.627";rotation = "-0.846926 -0.375977 -0.375976 99.4758";scale = "0.125 0.166666 59.316";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-133.273 -155.758 105.188";rotation = "-0.299498 0.674648 0.674649 146.654";scale = "2.5 0.5 59.9972";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-117.026 -137.418 101.627";rotation = "-0.878202 0.338202 0.338202 97.4212";scale = "0.125 0.166666 23.9968";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-137.552 -137.897 100.138";rotation = "0 0 1 139.966";scale = "2 2 0.03";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-137.721 -138.258 103.288";rotation = "0 0 1 34.089";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "14";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-237.721 -238.258 132.288";rotation = "0.956077 -0.293114 3.71549e-07 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.707 -138.226 104.438";rotation = "0.933192 -0.359379 -4.55546e-07 180";scale = "0.75 0.999999 1.5";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-136.449 -136.973 107.438";rotation = "0.374879 0.927074 1.17515e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-154.814 -149.76 95.938";rotation = "0 0 1 42.1241";scale = "10 3.33333 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-169.647 -136.346 105.788";rotation = "0.682263 -0.262746 0.682262 209.442";scale = "0.125 3.33353 79.998";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-172.341 -140.18 101.081";rotation = "0.299498 -0.674647 0.67465 146.654";scale = "0.125 0.166666 78.8512";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-112.796 -140.568 95.938";rotation = "-0 -0 1 42.1241";scale = "2.5 6.6665 20";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.043 -136.716 101.084";rotation = "-0.878203 0.338202 0.338198 97.4205";scale = "0.125 0.166666 38.7998";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-119.859 -140.924 105.188";rotation = "-0.299498 0.674648 0.674649 146.654";scale = "2.5 0.5 60";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-137.691 -138.28 104.438";rotation = "0 0 1 42.1241";scale = "2.5 3.33333 60";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-141.4 -134.927 105.188";rotation = "-0.299498 0.674648 0.674649 146.654";scale = "2.5 0.5 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-106.704 -171.104 101.622";rotation = "-0.299496 0.67465 -0.674648 213.345";scale = "0.125 0.0333333 4";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.669 -117.509 101.627";rotation = "-0.846926 -0.375977 -0.375976 99.4758";scale = "0.125 0.166666 59.3132";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-106.722 -170.751 101.622";rotation = "-0.375976 0.846927 -0.375974 99.4758";scale = "0.025 0.166666 84.302";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-112.238 -133.313 102.049";rotation = "-0.299498 0.67465 0.674647 146.654";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "9";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-212.438 -233.313 131.049";rotation = "0.299498 -0.674646 0.674651 146.654";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-102.572 -166.534 101.622";rotation = "-0.299496 0.67465 -0.674648 213.345";scale = "0.125 0.0333333 4";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-148.425 -128.892 101.627";rotation = "-0.299498 0.674647 0.67465 146.654";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "15";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-248.425 -228.892 130.627";rotation = "-0.299498 0.674649 -0.674648 213.346";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-111.988 -131.324 102.144";rotation = "-0.846926 -0.375977 -0.375976 99.4758";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "9";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-211.988 -231.624 131.144";rotation = "0.846925 0.375976 -0.375978 99.4757";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-158.809 -139.406 101.627";rotation = "0.878202 -0.338202 0.338201 97.4205";scale = "0.125 0.166666 59.9986";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-149.408 -128.042 101.627";rotation = "-0.846926 -0.375978 -0.375976 99.4759";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "15";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-249.408 -228.042 130.627";rotation = "0.846925 0.375976 -0.375979 99.4758";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-110.033 -130.058 101.084";rotation = "-0.846925 -0.375975 -0.375981 99.4758";scale = "0.125 0.166666 19.8";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-133.8 -141.976 134.438";rotation = "-1.33505e-13 1 -5.99315e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2001245";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-163.332 -136.023 101.9";rotation = "0.262746 0.682263 0.682262 209.442";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "6";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-263.147 -236.023 130.898";rotation = "-0.262741 -0.682262 0.682265 209.443";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-127.986 -120.092 95.938";rotation = "0 0 1 42.1241";scale = "9.9996 3.33333 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-142.819 -106.678 105.788";rotation = "0.682261 -0.262741 0.682266 209.442";scale = "0.125 3.33326 79.9954";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-141.337 -142.301 134.438";rotation = "-1.33505e-13 1 -5.99315e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2001245";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.38 -147.999 135.187";rotation = "0.878202 -0.338203 0.3382 97.42";scale = "0.125 0.166666 28.0012";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-152.525 -124.866 95.938";rotation = "0 0 1 42.1241";scale = "2.5 9.99977 20";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.008 -148.334 135.445";rotation = "0.674649 0.299498 0.674647 146.654";scale = "0.25325 0.166666 28.0014";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-163.376 -134.317 101.901";rotation = "-0.878202 0.338202 0.338201 82.5792";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "6";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-263.84 -234.317 130.901";rotation = "0.878202 -0.338201 0.338203 97.4206";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-135.018 -201.666 101.622";rotation = "-0.299498 0.674649 0.674648 146.655";scale = "0.125 0.0333333 180";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-142.464 -113.741 105.788";rotation = "-0.375977 0.846926 -0.375976 99.4758";scale = "0.125 3.333 59.9986";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.176 -148.519 134.938";rotation = "0 0 1 42.1241";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.398 -147.646 135.187";rotation = "0.846923 0.375982 -0.375978 99.4753";scale = "0.125 0.166666 27.0002";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-147.746 -138.961 135.441";rotation = "0.682264 -0.262745 0.682262 209.442";scale = "0.25175 0.166666 28.0014";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-132.66 -132.716 134.688";rotation = "-0.878202 0.338202 0.338202 97.4206";scale = "3.75 0.166667 30";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.757 -138.87 134.938";rotation = "0 0 1 42.1241";scale = "0.625 0.833332 2";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-133.932 -134.425 134.438";rotation = "-1.33505e-13 1 -5.99315e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2001245";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.01 -148.335 138.734";rotation = "0.674649 0.299498 0.674647 146.654";scale = "0.383 0.166666 28.0014";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-139.303 -103.588 101.084";rotation = "-0.846925 -0.375975 -0.37598 99.4758";scale = "0.125 0.166666 78.9276";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-141.782 -134.721 134.438";rotation = "-1.33505e-13 1 -5.99315e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2001245";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.008 -148.334 139.688";rotation = "0.674649 0.299498 0.674647 146.654";scale = "0.125 0.166666 28.0014";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.361 -148.351 138.699";rotation = "0.338202 0.878202 0.338201 97.4205";scale = "0.382753 0.166666 28.0014";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-166.054 -132.855 101.081";rotation = "-0.878202 0.338202 0.338201 97.4205";scale = "0.125 0.166666 19.8";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.457 -137.771 134.938";rotation = "0 0 1 42.1241";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-145.961 -110.578 101.084";rotation = "-0.878203 0.338203 0.3382 97.4206";scale = "0.125 0.166666 59.9972";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-128.342 -137.632 135.187";rotation = "0.846923 0.375982 -0.375978 99.4753";scale = "0.125 0.166666 27.0002";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.02 -128.207 135.456";rotation = "0.682264 -0.262745 0.682262 209.442";scale = "0.25925 0.166666 28";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-147.746 -138.961 139.688";rotation = "0.682264 -0.262745 0.682262 209.442";scale = "0.125 0.166666 28.0014";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.337 -128.93 135.187";rotation = "0.26274 0.682267 -0.682261 150.557";scale = "0.125 0.166666 26.0034";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-138.788 -138.82 139.038";rotation = "0 0 1 38.2032";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "14";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-238.788 -238.82 168.038";rotation = "0.94494 -0.327244 4.14812e-07 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.373 -128.224 135.442";rotation = "-0.375977 0.846926 -0.375976 99.4758";scale = "0.252 0.166666 28";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-132.994 -133.086 139.688";rotation = "0.262741 0.682264 -0.682263 150.557";scale = "3.50017 0.166667 28.0028";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.653 -135.289 101.622";rotation = "-0.375976 0.846927 -0.375974 99.4758";scale = "0.025 0.166666 84.302";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-147.931 -138.793 134.938";rotation = "0 0 1 42.1241";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-142.325 -112.948 102.203";rotation = "-0.782504 -0.0196417 0.622336 114.532";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "7";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-242.325 -213.369 131.094";rotation = "0.776531 -0.629765 -0.0198754 103.252";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.635 -137.597 138.715";rotation = "0.338202 0.878202 0.338201 97.4205";scale = "0.371498 0.166666 28";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-143.93 -113.136 101.99";rotation = "0.262746 0.682263 0.682262 209.442";scale = "1 1 1";team = "1";ownerGUID = "2001245";deployed = "1";powerFreq = "5.5";frequency = "7";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-243.729 -213.136 131.094";rotation = "-0.262741 -0.682262 0.682265 209.443";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.635 -137.596 139.688";rotation = "0.338202 0.878202 0.338201 97.4205";scale = "0.125 0.166666 28";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.373 -128.224 138.751";rotation = "-0.375977 0.846926 -0.375976 99.4758";scale = "0.371998 0.166666 28";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.373 -128.224 139.688";rotation = "-0.375977 0.846926 -0.375976 99.4758";scale = "0.125 0.166666 28";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.205 -128.039 134.938";rotation = "0 0 1 42.1241";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "5.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-145.961 -110.578 101.084";rotation = "0.878202 -0.3382 0.338204 97.4206";scale = "0.125 0.166666 19.8";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.299 -135.272 101.622";rotation = "0.846927 0.375976 -0.375974 99.4758";scale = "0.125 0.0333333 181";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-201.417 -141.281 101.622";rotation = "0.262745 0.682261 0.682265 209.443";scale = "0.125 0.0333333 180";team = "1";ownerGUID = "2001245";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2001245/Buildings/8.cs b/Univ/Data/2001245/Buildings/8.cs new file mode 100644 index 0000000..9783b41 --- /dev/null +++ b/Univ/Data/2001245/Buildings/8.cs @@ -0,0 +1,20 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Signal360" +// Created in mission "Pretty" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-36.0022 -247.874 128.938";rotation = "0 0 -1 22.4891";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-34.3474 -247.947 128.938";rotation = "0 0 -1 49.9659";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-35.6447 -249.099 128.938";rotation = "0 0 -1 20.2039";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-34.8718 -248.778 128.938";rotation = "0 0 -1 33.9368";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.3663 -246.775 128.938";rotation = "0 0 -1 75.152";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.2384 -248.156 128.938";rotation = "0 0 -1 57.4092";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-34.4021 -250.29 128.938";rotation = "0 0 -1 28.7842";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.9652 -248.026 128.938";rotation = "0 0 -1 65.9893";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.4707 -249.398 128.938";rotation = "0 0 -1 51.1194";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-30.3159 -248.997 128.938";rotation = "0 0 -1 64.2756";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.738 -247.288 128.938";rotation = "0 0 -1 78.58";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.9193 -253.104 128.938";rotation = "0 0 -1 43.6653";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.1381 -261.76 128.938";rotation = "0 0 -1 33.9314";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-24.459 -260.491 128.938";rotation = "0 0 -1 40.2264";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.31595 -256.072 128.972";rotation = "0.00519616 0.00519614 -0.999973 90.0019";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2001245";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2001245/Ranks/CnC4/Saved.Rank b/Univ/Data/2001245/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..69923cd --- /dev/null +++ b/Univ/Data/2001245/Ranks/CnC4/Saved.Rank @@ -0,0 +1,9 @@ +//Ranks File For GUID 2001245 +//Created On 2010-04-06, C&C 4 +$Rank::Name[2001245] = "Signal360"; +$Rank::Rank[2001245, 1] = "Gunnary Private"; +$Rank::XP[2001245, 1] = 1000; +$Rank::Rank[2001245, 2] = "Acolyte"; +$Rank::XP[2001245, 2] = 0; +$CNC::Deaths[2001245] = 5; +$CNC::TotalBuildingKills[2001245] = 3; \ No newline at end of file diff --git a/Univ/Data/2001729/Ranks/CnC4/Saved.Rank b/Univ/Data/2001729/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..6bae6b6 --- /dev/null +++ b/Univ/Data/2001729/Ranks/CnC4/Saved.Rank @@ -0,0 +1,52 @@ +//Ranks File For GUID 2001729 +//Created On 2010-04-02, C&C 4 +$Rank::Name[2001729] = "DarkTiger"; +$Rank::Rank[2001729, 1] = "Sergeant"; +$Rank::XP[2001729, 1] = 7190; +$Rank::Rank[2001729, 2] = "Delerion"; +$Rank::XP[2001729, 2] = 4358; +$CNC::Deaths[2001729] = 228; +$CNC::Help[2001729, 1] = 0; +$CNC::TotalCrawlerDecoms[2001729] = 16; +$CNC::KilledByObj[2001729, ObeliskTurretDeployedBase] = 21; +$CNC::TotalBuildingKills[2001729] = 37; +$CNC::BuildingKills[2001729, "ObeliskOfLight"] = 1; +$CNC::BuildingKills[2001729, "PowerPlant"] = 2; +$CNC::KilledByObj[2001729, GunTurretDeployedBase] = 18; +$CNC::TotalKills[2001729] = 131; +$CNC::UKills[2001729] = 72; +$CNC::BuildingKills[2001729, "MissileTurret"] = 1; +$CNC::Kills[2001729, 2000343] = 41; +$CNC::KilledByPl[2001729, 2000343] = 63; +$CNC::Kills[2001729, 2450675] = 12; +$CNC::KilledByPl[2001729, 2450675] = 3; +$CNC::Kills[2001729, 2001729] = 5; +$CNC::TotalCrawlerKills[2001729] = 12; +$CNC::CrawlerKills[2001729, 2001729] = 2; +$CNC::CrawlerKills[2001729, 2450675] = 1; +$CNC::KilledByObj[2001729, DeployedTempOfNod] = 5; +$CNC::TotalBuilds[2001729] = 49; +$CNC::BuildingsBuilt[2001729, "PowerPlant"] = 18; +$CNC::KilledByObj[2001729, FocusBeamTurretDeployedBase] = 9; +$CNC::KilledByObj[2001729, CrawlerTurretBase] = 7; +$CNC::BuildingKills[2001729, "FocusBeam"] = 1; +$CNC::KilledByObj[2001729, RifleSoldierArmor] = 4; +$CNC::Kills[2001729, 2003098] = 10; +$CNC::BuildingsBuilt[2001729, "Bunker"] = 31; +$CNC::CrawlerKills[2001729, 2000343] = 4; +$CNC::TotalBuildingLosses[2001729] = 28; +$CNC::BuildingLosses[2001729, "PowerPlant"] = 9; +$CNC::KilledByObj[2001729, FlameMortarTurretDeployedBase] = 3; +$CNC::BuildingKills[2001729, "FlameMortar"] = 2; +$CNC::KilledByPl[2001729, 2687806] = 4; +$CNC::Kills[2001729, 2687806] = 1; +$CNC::CrawlerKills[2001729, 2148110] = 2; +$CNC::BuildingLosses[2001729, "Bunker"] = 7; +$CNC::BuildingKills[2001729, "Bunker"] = 1; +$CNC::Kills[2001729, 2714648] = 7; +$CNC::CrawlerKills[2001729, 2714648] = 1; +$CNC::KilledByObj[2001729, SkystrikeTurretDeployedBase] = 2; +$CNC::BuildingKills[2001729, "Skystrike"] = 2; +$CNC::KilledByPl[2001729, 2714648] = 9; +$CNC::Kills[2001729, 2485526] = 2; +$CNC::CrawlerKills[2001729, 2485526] = 1; \ No newline at end of file diff --git a/Univ/Data/2003098/Ranks/CnC4/Saved.Rank b/Univ/Data/2003098/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..0b0d27e --- /dev/null +++ b/Univ/Data/2003098/Ranks/CnC4/Saved.Rank @@ -0,0 +1,50 @@ +//Ranks File For GUID 2003098 +//Created On 2010-04-02, C&C 4 +$Rank::Name[2003098] = "DarkDragonDX"; +$Rank::Rank[2003098, 1] = "Gunnary Private"; +$Rank::XP[2003098, 1] = 2141; +$Rank::Rank[2003098, 2] = "Delerion"; +$Rank::XP[2003098, 2] = 5168; +$CNC::Deaths[2003098] = 99; +$CNC::KilledByPl[2003098, 2763554] = 13; +$CNC::TotalKills[2003098] = 63; +$CNC::Kills[2003098, 2763554] = 4; +$CNC::TotalCrawlerKills[2003098] = 9; +$CNC::CrawlerKills[2003098, 2763554] = 6; +$CNC::KilledByPl[2003098, 2001729] = 10; +$CNC::Kills[2003098, 2001729] = 2; +$CNC::UKills[2003098] = 45; +$CNC::Kills[2003098, 2003098] = 2; +$CNC::TotalCrawlerDecoms[2003098] = 8; +$CNC::Help[2003098, 2] = 0; +$CNC::KilledByObj[2003098, RifleSoldierArmor] = 5; +$CNC::Kills[2003098, 2000343] = 5; +$CNC::KilledByPl[2003098, 2000343] = 10; +$CNC::CrawlerKills[2003098, 2000343] = 2; +$CNC::TotalBuilds[2003098] = 18; +$CNC::BuildingsBuilt[2003098, "PowerPlant"] = 7; +$CNC::BuildingsBuilt[2003098, "Bunker"] = 11; +$CNC::TotalBuildingLosses[2003098] = 7; +$CNC::BuildingLosses[2003098, "Bunker"] = 6; +$CNC::BuildingLosses[2003098, "PowerPlant"] = 1; +$CNC::CrawlerKills[2003098, 2687806] = 1; +$CNC::KilledByObj[2003098, CrawlerTurretBase] = 1; +$CNC::KilledByObj[2003098, FlameTankTurret] = 1; +$CNC::KilledByObj[2003098, DeployedTempOfNod] = 1; +$CNC::TotalBuildingKills[2003098] = 12; +$CNC::BuildingKills[2003098, "MissileTurret"] = 2; +$CNC::BuildingKills[2003098, "GunTurret"] = 1; +$CNC::BuildingKills[2003098, "DisruptionTower"] = 1; +$CNC::BuildingKills[2003098, "Tiberium"] = 1; +$CNC::BuildingKills[2003098, "PowerPlant"] = 2; +$CNC::BuildingKills[2003098, "TempleOfNod"] = 1; +$CNC::KilledByPl[2003098, 2436377] = 2; +$CNC::Kills[2003098, 2436377] = 1; +$CNC::Kills[2003098, 2714648] = 4; +$CNC::KilledByObj[2003098, FocusBeamTurretDeployedBase] = 3; +$CNC::KilledByObj[2003098, DeployedIonControl] = 1; +$CNC::KilledByPl[2003098, 2714648] = 4; +$CNC::KilledByObj[2003098, BunkerTurretDeployedBase] = 1; +$CNC::KilledByObj[2003098, SkystrikeTurretDeployedBase] = 2; +$CNC::KilledByObj[2003098, GunTurretDeployedBase] = 3; +$CNC::BuildingKills[2003098, "IonControl"] = 1; \ No newline at end of file diff --git a/Univ/Data/2003098/Ranks/Powers/Saved.Dat b/Univ/Data/2003098/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..18d5a11 --- /dev/null +++ b/Univ/Data/2003098/Ranks/Powers/Saved.Dat @@ -0,0 +1,148 @@ +//--- OBJECT WRITE BEGIN --- +new SimSet(ClientData_2003098) { + + eulaAgree = "1"; + + new ScriptObject(classData10_2003098) { + class = "Phantom Lord"; + + hasPowerHPBoost4 = "1"; + hasPowerHPBoost1 = "1"; + hasPowerEnergyBoost4 = "1"; + hasPowerShadowHeal = "1"; + hasPowerShadowSwipe = "1"; + hasPowerHPBoost2 = "1"; + hasPowerPhantomStorm = "1"; + hasPowerTornadicUprising = "1"; + hasPowerEnergyBoost5 = "1"; + hasPowerNightmare = "1"; + hasPowerEnergyBoost1 = "1"; + hasPowerShadowBombDrop = "1"; + hasPowerEnergyBoost3 = "1"; + hasPowerShadowBrigade = "1"; + hasPowerAvalanche = "1"; + storePoints = "500"; + hasPowerEnergyBoost2 = "1"; + hasPowerHPBoost3 = "1"; + hasPowerAvadusLightning = "1"; + hasPowerEnergyBoost7 = "1"; + level = "82"; + hasPowerHPBoost5 = "1"; + hasPowerStabRush = "1"; + hasPowerAsteroidFall = "1"; + hasPowerShadowRift = "1"; + hasPowerShadowArtillery = "1"; + hasPowerDematerialize = "1"; + spendPoints = "13"; + hasPowerBarrierField = "1"; + hasPowerHailStorm = "1"; + hasPowerChainLightning = "1"; + exp = "810"; + hasPowerEnergyBoost6 = "1"; + hasPowerHPBoost6 = "1"; + affinity = "2"; + hasPowerFlasher = "1"; + hasPowerShadowStorm = "1"; + }; + new ScriptObject(classData2_2003098) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData3_2003098) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData4_2003098) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData5_2003098) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData6_2003098) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData7_2003098) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData8_2003098) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData9_2003098) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData1_2003098) { + class = "Annihilator"; + + hasPowerHPBoost4 = "1"; + hasPowerHPBoost1 = "1"; + hasPowerEnergyBoost4 = "1"; + hasPowerHPBoost2 = "1"; + hasPowerSplitFire = "1"; + hasPowerEnergyBoost5 = "1"; + hasPowerCrisp = "1"; + hasPowerFireBall1 = "1"; + hasPowerEnergyBoost1 = "1"; + hasPowerEnergyBoost3 = "1"; + hasPowerFireBall4 = "1"; + hasPowerBurnForce = "1"; + hasPowerEnergyBoost2 = "1"; + hasPowerHPBoost3 = "1"; + hasPowerEnergyBoost7 = "1"; + hasPowerThunder = "1"; + hasPowerDragonsRevenge = "1"; + level = "96"; + hasPowerHPBoost5 = "1"; + hasPowerSunRay = "1"; + hasPowerEnergyBall1 = "1"; + hasPowerDesolation = "1"; + hasPowerFireBall3 = "1"; + spendPoints = "5"; + hasPowerFireBolt = "1"; + hasPowerSunStorm = "1"; + exp = "61766"; + hasPowerLightning = "1"; + hasPowerEnergyBoost6 = "1"; + hasPowerDarkVoid = "1"; + hasPowerMicrowave = "1"; + hasPowerHPBoost6 = "1"; + affinity = "2"; + }; +}; \ No newline at end of file diff --git a/Univ/Data/2003098/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2003098/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..99438c5 --- /dev/null +++ b/Univ/Data/2003098/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,285 @@ +//Ranks & Settings File For GUID 2003098 / Name: DarkDragonDX +//Ranks & Settings File For GUID 2003098 / Name: DarkDragonDX +//Created On 2010-11-15, Total Warfare Mod 2 3.5 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2003098) { + + new ScriptObject(TWM2Client_2003098) { + + challengeCompleteS3RifleImage_1 = "1"; + challengeCompleteNuke1 = "1"; + noMoreEXP93100e78a63d34f669ae1e90809d76e5cf5067a4 = "0"; + rank = "Master Commander"; + noMoreEXPaf662d077a2c8fc44786f68fdd5c1479b195a3cc = "0"; + xpGainacc6411866b5c324fa7563f06684d17dd798ec07 = "1.10162e+06"; + noMoreEXP89cdac08df21a5718f555304b1ff83706f567ff0 = "0"; + hasMedalDownWithTheHarbingers = "1"; + hasMedalNuclearDawn = "1"; + weaponKillsM1700Image = "8"; + noMoreEXP8ef7f28db8a7ff3196ad40b78d982f15117c9015 = "0"; + hasMedalTheNewGeneral = "1"; + noMoreEXPba128552ac345bae3a977f3de9cb3feddca537b3 = "0"; + xpGain163309f7d20e9d13aea1cddbb374e4a5e2fbf87f = "48"; + weaponKillsm93Image = "3"; + noMoreEXP4ab044aba12120725c31fc423e983af15f0e9c2e = "0"; + UAVCalls = "10"; + HWCalls = "0"; + officer = "9"; + challengeComplete3For5Sabo = "1"; + xpGainb1fd600680666b8dc4172c96cd10d65fa29106ac = "4731"; + noMoreEXPbd48c846517b4b75dc7cd1d86c0fafe33e62e6cb = "0"; + noMoreEXP614508913f1350047f2036932b7b3febfa64320a = "0"; + challengeCompleteNapalmHarrier3 = "1"; + noMoreEXP2e05d1d1d2224290c739678bfbccdc90222cb405 = "0"; + noMoreEXP9ebf52d7849805989308bb86b0eed48fdf8f2b26 = "0"; + challengeCompleteR700SniperRifleImage_2 = "1"; + weaponKillsM4A1Image = "20"; + ZBCalls = "0"; + noMoreEXPae27473a04462f40846555ef3c15130473191fd1 = "0"; + challengeCompleteGOL1 = "1"; + challengeCompleteMilestone25 = "1"; + challengeCompletePulsePhaserImage_2 = "1"; + hasMedalTheSourceOfAllEvil = "1"; + challengeCompleteCWS1 = "1"; + weaponKillspistolImage = "1"; + challengeCompleteNapalmHarrier1 = "1"; + NapalmHarrierCalls = "114"; + bossDefeatCountShadeLord = "2"; + weaponKillsNapalmImage = "25"; + weaponKillsMRXXImage = "5"; + noMoreEXP163309f7d20e9d13aea1cddbb374e4a5e2fbf87f = "0"; + money = "218240"; + noMoreEXP45380fab5de863b133c80e1f68b0e65402e03ff2 = "0"; + SlthAirstrikeCalls = "0"; + GMCalls = "11"; + millionxp = "5"; + challengeCompleteIns1 = "1"; + noMoreEXP37977c25913848c55e07dbfbc1721d30db147888 = "0"; + xpGainedf337ec0cf2ba8034b081eb97f1acc4b928f84f = "191066"; + challengeCompleteCWS2 = "1"; + weaponKillsDeagleImage = "10"; + xpGaind9de6e2caeda34a1a37110ca942c2f04524d90c8 = "321444"; + noMoreEXPa8fddb1f8fd50ae9e9deff924f327c011b684f1c = "0"; + noMoreEXP027181282838e40d68840413272fa121b4ab5124 = "0"; + NukeCalls = "16"; + challengeCompleteAcceptance = "1"; + noMoreEXP5fee0414a8d60335286629d7cd63255d472cda63 = "0"; + challengeCompleteFission2 = "1"; + hasMedalHonorsB = "1"; + bossDefeatCountGhostOfFire = "12"; + xpGain0ac238afdd346e7b2e22a669d608862c217b87af = "76"; + challengeCompleteBombDetonated = "1"; + noMoreEXP680e7deda563526e500f58036b6375a82134c2b0 = "0"; + xpGaina8fddb1f8fd50ae9e9deff924f327c011b684f1c = "70096"; + hasMedalTheLight = "1"; + noMoreEXP9b2fe339eba643a579236518f96010aab9e83524 = "0"; + xpGain88dfe234cf9bcb0f0b20f3c8b9ecd21aec9b2345 = "70"; + hasMedalBurningNightmare = "1"; + weaponKillsMp26CMDOImage = "35"; + challengeCompleteGoldStar = "1"; + xpGain89cdac08df21a5718f555304b1ff83706f567ff0 = "41934"; + bossDefeatCountInsignia = "2"; + weaponKillsPulseSMGImage = "8"; + noMoreEXP5be143b521a92037e4ff2c5bdc0d1c925af7e527 = "0"; + weaponKillsRP432Image = "3"; + challengeCompleteAirstrike1 = "1"; + xpGain7c002129fba7c117b128edb1f4ef0ce1153a3ea1 = "34"; + xp = "626491"; + bossDefeatCountStormrider = "1"; + xpGain80673a496f9daf5bfa9345b87f4ae884c55a8df8 = "82"; + challengeCompleteNuke2 = "1"; + challengeCompleteVard1 = "1"; + challengeCompleteLRog1 = "1"; + weaponKillsLD06SavagerImage = "2"; + weaponKillsRPGImage = "34"; + challengeCompleteBombDisarmed = "1"; + bossDefeatCountCnlWindshear = "6"; + weaponKillsflamerImage = "2"; + hasMedalHonorsC = "1"; + noMoreEXPe757d19354f8a1053d193a6261ad4617887c42fe = "0"; + hasMedalSrysly = "1"; + weaponKillsPulsePhaserImage = "217"; + HeliCalls = "20"; + weaponKillsAC130BigCannonImage = "2"; + hasMedalRevengeAvoidedAgain = "1"; + xpGainb15b03eec8e3e613c4d694f6f06bfdf1da1fa937 = "145570"; + gameTime = "10454"; + noMoreEXPdc7b9d125155cc301183ae093f3bfe9b8cc3a597 = "0"; + xpGain4ab044aba12120725c31fc423e983af15f0e9c2e = "398"; + challengeCompleteGameEnder = "1"; + noMoreEXPede11104d231d7649917ff6289def0f9287e6902 = "0"; + challengeCompleteVard2 = "1"; + FissionCalls = "3"; + xpGainb83507ec9eb66c5c2ad20c7a9d913e577e3ce341 = "543693"; + hasMedalThundaStruk = "1"; + challengeCompletePulsePhaserImage_1 = "1"; + hasMedalTheUltimateHeadshot = "1"; + noMoreEXPe8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "0"; + challengeComplete15For15 = "1"; + challengeCompleteNapalmHarrier2 = "1"; + ArtyCalls = "0"; + rankNumber = "61"; + weaponKillsM1SniperRifleImage = "2"; + xpGain49106f22de9d150fbd5606af00eb16405f8f8184 = "40"; + name = "DarkDragonDX"; + noMoreEXPf28861ebbb5a2a0cfb6f3984a5d3aadb24c1ee94 = "0"; + weaponKillsMiniChaingunImage = "20"; + noMoreEXP7157524394b5b23795f12ae582a4859a543a7db9 = "0"; + xpGain8ef7f28db8a7ff3196ad40b78d982f15117c9015 = "100476"; + xpGain2e05d1d1d2224290c739678bfbccdc90222cb405 = "42456"; + noMoreEXPd9de6e2caeda34a1a37110ca942c2f04524d90c8 = "0"; + noMoreEXP5810ab261901bdc66797a7083e12622e3ab85fe7 = "0"; + vehicleKillsScoutFlyer = "46"; + noMoreEXP80673a496f9daf5bfa9345b87f4ae884c55a8df8 = "0"; + challengeCompleteBaseDestroyer = "1"; + bossDefeatCountLordRog = "2"; + GunHeliCalls = "2"; + bossDefeatCountVengenor = "3"; + noMoreEXP3fff5581ed175894ba62b9644117f99dbb2df614 = "0"; + noMoreEXPb6410fc738b5c91870eea4499330a95635d881b9 = "0"; + noMoreEXPacc6411866b5c324fa7563f06684d17dd798ec07 = "0"; + bossDefeatCountYvex = "2"; + hasMedalAboutDamnTime = "1"; + xpGain5be143b521a92037e4ff2c5bdc0d1c925af7e527 = "210"; + hasMedalInsigniaDefeated = "1"; + xpGain9b2fe339eba643a579236518f96010aab9e83524 = "9202"; + noMoreEXP49106f22de9d150fbd5606af00eb16405f8f8184 = "0"; + xpGainae27473a04462f40846555ef3c15130473191fd1 = "499836"; + weaponKillsALSWPSniperRifleImage = "28"; + noMoreEXPccdd06b5c5ef7d4dfaf1f621309802964e0178e1 = "0"; + challengeCompleteR700SniperRifleImage_1 = "1"; + hasMedalGamerExcuisite = "1"; + hasMedalSkyFront = "1"; + AirstrikeCalls = "40"; + noMoreEXPb1fd600680666b8dc4172c96cd10d65fa29106ac = "0"; + bossDefeatCountVardison3 = "3"; + challengeCompleteSimonSays = "1"; + noMoreEXP0ac238afdd346e7b2e22a669d608862c217b87af = "0"; + noMoreEXPb83507ec9eb66c5c2ad20c7a9d913e577e3ce341 = "0"; + noMoreEXP4748a65e36180e18f5c4b0672b73c1d9ac593a59 = "0"; + xpGain9ebf52d7849805989308bb86b0eed48fdf8f2b26 = "184"; + noMoreEXP5f1188775495558a565f7bda1a812d8c6fe6da41 = "0"; + xpGain5810ab261901bdc66797a7083e12622e3ab85fe7 = "1.27531e+06"; + weaponKillsCrimsonHawkImage = "3"; + phrase = "No gun? Get one!"; + challengeCompleteS3RifleImage_2 = "1"; + noMoreEXP7c002129fba7c117b128edb1f4ef0ce1153a3ea1 = "0"; + noMoreEXPb47efe2379f1336e87dd71f87643bb12f14c6659 = "0"; + challengeCompleteEpicFailure = "1"; + SatNukeCalls = "2"; + challengeCompleteGroupBuster = "1"; + ACCalls = "6"; + noMoreEXPbdbabad4b8dedaeeec4d8d11739eb163b9b5e6e4 = "0"; + noMoreEXPb6fbdce79185e8b928f7dc576a18af95af468452 = "0"; + challengeCompleteFission1 = "1"; + noMoreEXPdc639ae21874998a6e776e35d984558db2913f29 = "0"; + noMoreEXPba937bb0ce80fc1d9d269b739df9ba36963f59ef = "0"; + challengeCompleteFromTheTop = "1"; + xpGainbdd827761f1ab2ee90be57d19b47d608dd78e2bc = "584116"; + weaponKillsR700SniperRifleImage = "309"; + challengeCompleteDownBoy = "1"; + challengeCompleteLifeGiver = "1"; + CGCalls = "0"; + weaponKillsS3RifleImage = "163"; + weaponKillsSA2400Image = "4"; + weaponKillsSuperChaingunImage = "48"; + xpGainbdbabad4b8dedaeeec4d8d11739eb163b9b5e6e4 = "2880"; + xpGainbd48c846517b4b75dc7cd1d86c0fafe33e62e6cb = "3466"; + challengeCompleteAngel = "1"; + challengeCompleteNapalmImage_1 = "1"; + weaponKillsModel1887Image = "12"; + xpGainb6410fc738b5c91870eea4499330a95635d881b9 = "60"; + noMoreEXPbdd827761f1ab2ee90be57d19b47d608dd78e2bc = "0"; + bossDefeatCountGhostOfLightning = "4"; + noMoreEXPedf337ec0cf2ba8034b081eb97f1acc4b928f84f = "0"; + hasMedalHarbiend = "1"; + noMoreEXPc709bed61d79462c4b5dbb6925539e9605f5832f = "0"; + xpGain5f1188775495558a565f7bda1a812d8c6fe6da41 = "557262"; + weaponKillsS3SRifleImage = "77"; + HarrierCalls = "0"; + noMoreEXP88dfe234cf9bcb0f0b20f3c8b9ecd21aec9b2345 = "0"; + }; + new ScriptObject(CCD_2003098) { + + expireDate = "20131231"; + }; + new ScriptObject(ClientSettings2003098) { + + savedstreak2 = "2"; + savedstreak1 = "1"; + savedstreak3 = "4"; + savedperk1 = "Advanced Grip"; + savedperk2 = "OverKill"; + savedperk3 = "Clip Boxes"; + }; + new ScriptObject(ClientStore2003098) { + + purchasedThunderstorm = "1"; + nextLoto = "0"; + purchasedHologram = "0"; + purchasedFalseExplosion = "0"; + nextSlot = "0"; + purchasedGuardianFlare = "0"; + purchasedFireworks = "0"; + purchasedSilverFlag = "0"; + purchasedBlueFlag = "1"; + purchasedRedFlag = "0"; + purchasedSpontaneousCombustion = "0"; + purchasedGoldFlag = "1"; + }; + new ScriptObject(CCD_2003098) { + + expireDate = "20111231"; + }; + new ScriptObject(CCD_2003098) { + + totalPlayerKillCount20111221 = "12"; + sabotageRoundWins20111221_DerGott = "1"; + PlayerKillCount20111221_DeagleImage = "8"; + sabotageRoundWinTotal20111221 = "1"; + expireDate = "20111231"; + successiveStreak20111221_1 = "9"; + PlayerKillCount20111221_ = "1"; + PlayerKillCount20111221_M4A1Image = "2"; + successiveStreak20111221_2 = "3"; + PlayerKillCount20111221_flamerImage = "1"; + }; + new ScriptObject(CCD_2003098) { + + totalPlayerKillCount20111221 = "2"; + expireDate = "20111231"; + playerBackstabs20111221 = "1"; + successiveStreak20111221_1 = "1"; + PlayerKillCount20111221_ = "1"; + PlayerKillCount20111221_M4A1Image = "1"; + bombDisarm20111221_EngelamHimmel = "1"; + bombDisarmTotal20111221 = "1"; + }; + new ScriptObject(CCD_2003098) { + + expireDate = "20120131"; + }; + new ScriptObject(CCD_2003098) { + + expireDate = "20120831"; + }; + new ScriptObject(CCD_2003098) { + + expireDate = "20121231"; + }; + new ScriptObject(CCD_2003098) { + + successiveStreak20121216_1 = "3"; + totalPlayerKillCount20121216 = "5"; + PlayerKillCount20121216_PulsePhaserImage = "1"; + expireDate = "20121231"; + successiveStreak20121216_2 = "2"; + PlayerKillCount20121216_ = "1"; + PlayerKillCount20121216_M4A1Image = "3"; + }; + new ScriptObject(CCD_2003098) { + + expireDate = "20131231"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2007255/Ranks/CnC4/Saved.Rank b/Univ/Data/2007255/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..8f9aff9 --- /dev/null +++ b/Univ/Data/2007255/Ranks/CnC4/Saved.Rank @@ -0,0 +1,23 @@ +//Ranks File For GUID 2007255 +//Created On 2010-04-16, C&C 4 +$Rank::Name[2007255] = "DEATHBORN"; +$Rank::Rank[2007255, 1] = "Private"; +$Rank::XP[2007255, 1] = 632; +$Rank::Rank[2007255, 2] = "Acolyte"; +$Rank::XP[2007255, 2] = 0; +$CNC::Deaths[2007255] = 11; +$CNC::TotalCrawlerDecoms[2007255] = 5; +$CNC::KilledByObj[2007255, RifleSoldierArmor] = 2; +$CNC::TotalKills[2007255] = 27; +$CNC::Kills[2007255, 2007255] = 2; +$CNC::UKills[2007255] = 24; +$CNC::TotalBuilds[2007255] = 8; +$CNC::BuildingsBuilt[2007255, "PowerPlant"] = 6; +$CNC::BuildingsBuilt[2007255, "Bunker"] = 2; +$CNC::TotalBuildingLosses[2007255] = 3; +$CNC::BuildingLosses[2007255, "Bunker"] = 1; +$CNC::TotalBuildingKills[2007255] = 3; +$CNC::BuildingKills[2007255, "ObeliskOfLight"] = 1; +$CNC::BuildingLosses[2007255, "PowerPlant"] = 2; +$CNC::BuildingKills[2007255, "PowerPlant"] = 2; +$CNC::Kills[2007255, 2148110] = 1; \ No newline at end of file diff --git a/Univ/Data/2007255/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2007255/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..e668d33 --- /dev/null +++ b/Univ/Data/2007255/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,199 @@ +//Ranks & Settings File For GUID 2007255 / Name: DEATHBORN +//Created On 2011-12-11, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2007255) { + + new ScriptObject(TWM2Client_2007255) { + + hasMedalGamerExcuisite = "1"; + weaponKillsM4A1Image = "78"; + challengeCompleteM4A1Image_1 = "1"; + weaponKillsSuperChaingunImage = "2159"; + weaponKillsS3RifleImage = "21"; + weaponKillsM1700Image = "17"; + challengeCompleteArmyOf50Stopped = "1"; + rank = "Fleet Commander"; + GMCalls = "0"; + SlthAirstrikeCalls = "7"; + weaponKillsflamerImage = "5"; + NukeCalls = "0"; + challengeCompleteModel1887Image_2 = "1"; + name = "DEATHBORN"; + bossDefeatCountStormrider = "1"; + xpGain9d7a38ce97bd188d84124e78647e97cb64a096f6 = "5436"; + hasMedalBurningNightmare = "1"; + rankNumber = "58"; + hasMedalHarbiend = "1"; + weaponKillsModel1887Image = "481"; + hasMedalThundaStruk = "1"; + xpGain163309f7d20e9d13aea1cddbb374e4a5e2fbf87f = "106128"; + money = "1.04609e+06"; + HeliCalls = "2"; + hasMedalTheNewGeneral = "1"; + hasMedalSkyFront = "1"; + millionxp = "2"; + bossDefeatCountVengenor = "2"; + weaponKillsPulsePhaserImage = "2"; + ArtyCalls = "0"; + hasMedalLordraniussFall = "1"; + weaponKillsRP432Image = "1"; + bossDefeatCountCnlWindshear = "1"; + noMoreEXP9d7a38ce97bd188d84124e78647e97cb64a096f6 = "0"; + GunHeliCalls = "8"; + bossDefeatCountTrebor = "1"; + noMoreEXP163309f7d20e9d13aea1cddbb374e4a5e2fbf87f = "0"; + challengeCompleteModel1887Image_1 = "1"; + xp = "256920"; + challengeComplete15For15 = "1"; + AirstrikeCalls = "5"; + weaponKillsMRXXImage = "2"; + weaponKillspistolImage = "1"; + gameTime = "3577"; + hasMedalHonorsA = "1"; + CGCalls = "0"; + bossDefeatCountYvex = "1"; + bossDefeatCountGhostOfFire = "1"; + challengeCompleteModel1887Image_3 = "1"; + hasMedalSrysly = "1"; + challengeCompleteMilestone25 = "1"; + officer = "1"; + hasMedalHonorsB = "1"; + HarrierCalls = "0"; + bossDefeatCountGhostOfLightning = "1"; + weaponKillsG17SniperRifleImage = "3"; + weaponKillsM1SniperRifleImage = "50"; + phrase = "None Set"; + UAVCalls = "0"; + HWCalls = "0"; + weaponKillsMiniChaingunImage = "6"; + ZBCalls = "0"; + noMoreEXPf6f045c371147768a1944f1b771a0256db259806 = "0"; + xpGainf6f045c371147768a1944f1b771a0256db259806 = "1.9986e+06"; + hasMedalHonorsC = "1"; + hasMedalTheUltimateHeadshot = "1"; + }; + new ScriptObject(CCD_2007255) { + + ZombieKillCount20111213_RP432Image_1 = "1"; + ZombieKillCount20111216__4 = "6"; + ZombieKillCount20111213__1 = "282"; + ZombieKillCount20111213_MRXXImage_1 = "4"; + ZombieKillCount20111213_Model1887Image_1 = "479"; + totalZombieKillCount20111216 = "1279"; + ZombieKillCount20111213_Wp400Image_1 = "1"; + ZombieKillCount20111213_0_3 = "2"; + ZombieKillCount20111216_0_4 = "6"; + ZombieKillCount20111213_MiniChaingunImage_1 = "10"; + ZombieKillCount20111213_Grenade_1 = "10"; + ZombieKillCount20111213_MG42Image_1 = "18"; + ZombieKillCount20111213_PulsePhaserImage_1 = "2"; + expireDate = "20111231"; + totalZombieKillCount20111213 = "831"; + ZombieKillCount20111213_Model1887Image_9 = "5"; + ZombieKillCount20111213_0_1 = "819"; + ZombieKillCount20111213_0_12 = "5"; + ZombieKillCount20111216_0_1 = "1273"; + ZombieKillCount20111213__12 = "5"; + ZombieKillCount20111213__3 = "2"; + ZombieKillCount20111213_0_9 = "5"; + ZombieKillCount20111213_0_2 = "1"; + ZombieKillCount20111216__1 = "1273"; + ZombieKillCount20111213_flamerImage_1 = "12"; + ZombieKillCount20111213_Model1887Image_2 = "1"; + }; + new ScriptObject(ClientSettings2007255) { + + savedperk3 = "Bandolier"; + savedperk1 = "Double Down"; + savedperk2 = "OverKill"; + }; + new ScriptObject(ClientStore2007255) { + + nextSlot = "0"; + purchasedHologram = "0"; + purchasedSpontaneousCombustion = "0"; + purchasedFalseExplosion = "1"; + nextLoto = "0"; + purchasedGuardianFlare = "0"; + purchasedThunderstorm = "0"; + }; + new ScriptObject(ClientSettings2007255) { + + savedperk3 = "Kevlar Armor"; + savedstreak2 = "8"; + savedperk1 = "Double Down"; + savedstreak3 = "14"; + savedperk4 = "Bandolier"; + savedperk2 = "OverKill"; + savedstreak1 = "7"; + }; + new ScriptObject(CCD_2007255) { + + ZombieKillCount20111213_PulsePhaserImage_9 = "1"; + ZombieKillCount20111213__2 = "6"; + ZombieKillCount20111213__1 = "58"; + ZombieKillCount20111213__11 = "11"; + ZombieKillCount20111213_0_5 = "16"; + ZombieKillCount20111213_Model1887Image_1 = "2"; + ZombieKillCount20111213_0_11 = "12"; + zombieHeadshots20111213 = "2"; + ZombieKillCount20111213__5 = "12"; + ZombieKillCount20111213_Model1887Image_3 = "1"; + ZombieKillCount20111213_0_3 = "25"; + killstreakCalls20111213_8 = "3"; + ZombieKillCount20111213_MeleeImage_12 = "1"; + ZombieKillCount20111213__9 = "6"; + ZombieKillCount20111213_M1SniperRifleImage_1 = "1"; + ZombieKillCount20111213_MeleeImage_5 = "2"; + ZombieKillCount20111213_ALSWPSniperRifleImage_11 = "1"; + expireDate = "20111231"; + ZombieKillCount20111213_0_6 = "2"; + totalZombieKillCount20111213 = "165"; + ZombieKillCount20111213_P90Image_1 = "1"; + ZombieKillCount20111213_0_1 = "64"; + ZombieKillCount20111213_0_12 = "4"; + ZombieKillCount20111213_MeleeImage_9 = "6"; + ZombieKillCount20111213_m93Image_1 = "2"; + ZombieKillCount20111213__12 = "3"; + ZombieKillCount20111213__6 = "2"; + ZombieKillCount20111213__4 = "17"; + killstreakCalls20111213_7 = "3"; + ZombieKillCount20111213__3 = "24"; + ZombieKillCount20111213_Model1887Image_4 = "4"; + ZombieKillCount20111213_0_9 = "13"; + ZombieKillCount20111213_0_2 = "9"; + ZombieKillCount20111213_M1SniperRifleImage_5 = "2"; + ZombieKillCount20111213_0_4 = "21"; + ZombieKillCount20111213_Model1887Image_2 = "3"; + }; + new ScriptObject(CCD_2007255) { + + ZombieKillCount20111213_flamerImage_9 = "5"; + ZombieKillCount20111213__1 = "12"; + zombieHeadshots20111213 = "20"; + ZombieKillCount20111213__13 = "49"; + killstreakCalls20111213_8 = "2"; + ZombieKillCount20111213_Grenade_1 = "1"; + ZombieKillCount20111213__9 = "1"; + ZombieKillCount20111213_0_13 = "50"; + ZombieKillCount20111213_M1SniperRifleImage_1 = "1"; + ZombieKillCount20111213_PistolImage_1 = "1"; + expireDate = "20111231"; + ZombieKillCount20111213_M1700Image_1 = "17"; + totalZombieKillCount20111213 = "108"; + ZombieKillCount20111213_0_1 = "53"; + ZombieKillCount20111213_S3RifleImage_1 = "21"; + killstreakCalls20111213_7 = "2"; + ZombieKillCount20111213_0_9 = "6"; + ZombieKillCount20111213_Grenade_13 = "1"; + }; + new ScriptObject(CCD_2007255) { + + ZombieKillCount20111213__1 = "1"; + expireDate = "20111231"; + totalZombieKillCount20111213 = "13"; + ZombieKillCount20111213_0_1 = "14"; + ZombieKillCount20111213_flamerImage_1 = "13"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2073419/Buildings/1.cs b/Univ/Data/2073419/Buildings/1.cs new file mode 100644 index 0000000..981f249 --- /dev/null +++ b/Univ/Data/2073419/Buildings/1.cs @@ -0,0 +1,131 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Crappage" +// Created in mission "slapmydashH" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.8436 -268.767 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "71.0526 -268.871 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "72.2617 -268.975 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.6791 -269.097 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "73.0284 -298.779 129.52";rotation = "0.740854 0.671666 8.51398e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.1531 -331.996 130.75";rotation = "0.593204 0.544263 0.5932 122.885";scale = "0.125 0.166666 138";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.142 -269.223 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.5726 -327.443 130";rotation = "0.593204 0.544263 0.5932 122.885";scale = "0.250068 0.166666 97.9972";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "76.8513 -269.371 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.576 -327.444 133";rotation = "0.593204 0.544263 0.5932 122.885";scale = "0.25 0.166666 97.9982";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "76.061 -298.913 133";rotation = "-0.676063 0.736844 9.34017e-07 180";scale = "1.75022 0.166666 7";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "0";moving = "open";prevscale = "1.75022 0.166666 7";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "78.1855 -269.486 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "68.9752 -322.892 121.25";rotation = "0.593204 0.544263 0.5932 122.885";scale = "0.125 0.166666 98.0002";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "74.8381 -289.095 129.3";rotation = "0 0 1 96.7348";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "77.27 -292.454 131.229";rotation = "-0.544268 0.5932 0.593201 122.883";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";frequency = "15";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "77.27 -292.454 131.229";rotation = "0.544271 -0.593198 0.593199 122.884";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.5195 -269.601 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "76.061 -298.912 120";rotation = "-5.51865e-06 8.42741e-06 1 94.9271";scale = "9.75 0.166667 7.99998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.0619 -269.734 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "76.697 -299.101 121.67";rotation = "-0.544267 0.593205 0.593196 122.885";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";frequency = "15";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "76.697 -299.101 121.67";rotation = "0.544262 -0.593197 0.593208 122.884";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "77.7355 -279.484 131.25";rotation = "-0.998155 0.0429313 0.0429418 90.1057";scale = "0.125 1.16667 32.0002";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.4795 -269.856 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "78.0972 -285.314 129.5";rotation = "0 0 1 95.4003";scale = "0.5 0.25 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.8968 -269.978 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "72.982 -309.605 129.3";rotation = "0 0 1 94.9328";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.3141 -270.1 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.7604 -302.4 131.25";rotation = "-0.998155 0.0429313 0.0429418 90.1057";scale = "0.125 1.16667 31.9982";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "86.6082 -270.212 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.913 -311.189 129.5";rotation = "0 0 1 95.4439";scale = "0.5 0.25 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.523 -278.869 129.999";rotation = "0.0429458 0.998154 0.0429456 90.1062";scale = "0.25 0.166666 11.0006";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.794 -278.376 129.5";rotation = "0 0 -1 85.0728";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "68.0431 -278.397 132.75";rotation = "0.706781 -0.0304103 0.706778 183.483";scale = "0.125 0.166666 10.0003";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.2739 -278.848 130.499";rotation = "0 0 1 184.927";scale = "0.125 0.166666 5.00202";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "80.3617 -285.771 119.8";rotation = "0 0 -1 82.9414";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.9912 -270.331 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "79.7162 -281.433 129.3";rotation = "0 0 -1 41.5883";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.3174 -270.445 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "81.8991 -281.514 120";rotation = "0 0 1 97.1032";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "79.4873 -278.731 131.221";rotation = "-0.998155 0.0429393 0.0429391 90.1069";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";frequency = "14";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "79.4873 -278.731 131.221";rotation = "0.998155 -0.0429394 0.0429397 90.1052";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.6989 -270.564 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "78.5649 -312.603 119.8";rotation = "0 0 -1 85.3363";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "68.6315 -268.662 129.1";rotation = "-0.560077 0.610436 -0.560073 117.195";scale = "0.25 0.166666 19.0003";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "68.6315 -268.662 133";rotation = "0.593205 0.54426 -0.593202 237.115";scale = "0.25 0.166666 19.0003";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.1079 -270.686 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "76.8534 -316.652 129.3";rotation = "0 0 1 230.758";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "120.646 -302.756 129.25";rotation = "0.70678 -0.0304073 -0.706779 176.516";scale = "0.125 23.3333 120";team = "1";ownerGUID = "2073419";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.7564 -300.179 129";rotation = "0 0 -1 85.0728";scale = "15 16.6666 7";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.7564 -300.179 129";rotation = "1.69943e-07 4.91868e-06 -1 85.0728";scale = "15 16.6666 9";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "93.5249 -270.808 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "79.3943 -316.546 120";rotation = "0 0 1 96.4219";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "91.5233 -300.414 129.9";rotation = "-0.683584 0.729872 9.25179e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";frequency = "16";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "91.5233 -300.414 129.9";rotation = "5.49529e-07 8.54482e-14 1 93.7514";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "76.3088 -298.95 123.75";rotation = "-0.544263 0.593206 -0.593198 237.116";scale = "9.741 0.166667 58.9986";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "94.9764 -270.933 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "88.6093 -325.086 119.75";rotation = "0.0304067 0.706777 0.706783 183.483";scale = "9.99998 0.166667 100";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "96.3879 -271.055 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "68.6531 -268.413 129.5";rotation = "0 0 1 94.9271";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.8715 -271.183 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "107.391 -281.789 131.25";rotation = "-0.544268 0.593197 0.593203 122.884";scale = "0.125 1.16667 59.9874";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "99.3322 -271.309 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "92.3574 -280.529 124";rotation = "0.0429788 0.999076 6.47966e-06 180";scale = "7.5 0.166667 7.99998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.7564 -300.179 166";rotation = "0.736848 0.676058 1.10144e-07 180";scale = "6.25 4.99999 65";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.955 -271.449 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.5426 -327.693 129.5";rotation = "0 0 1 94.9271";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.975 -321.141 131.25";rotation = "-0.544268 0.593197 0.593203 122.884";scale = "0.125 1.16667 59.8932";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "102.279 -271.563 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "64.101 -263.002 129.5";rotation = "0 0 -1 85.0728";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "63.4534 -262.947 130.25";rotation = "-0.610437 -0.560076 -0.560073 117.197";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";frequency = "14";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "63.4534 -262.947 130.25";rotation = "0.610435 0.560073 -0.560078 117.197";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "89.0598 -319.855 120";rotation = "-4.60621e-07 -2.22118e-06 1 184.927";scale = "7.5 0.166667 7.99998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "112.31 -277.195 121.25";rotation = "0.0429453 0.998154 0.042945 90.1062";scale = "0.125 0.166666 77.9998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.892 -271.702 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "68.9022 -268.434 130";rotation = "0.706781 -0.0304084 0.706778 183.483";scale = "0.25 0.166666 97.9996";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "105.587 -271.848 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "117.721 -272.643 133";rotation = "0.0429439 0.998154 0.0429437 90.1062";scale = "0.25 0.166666 97.9996";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "69.2028 -323.162 121.25";rotation = "0.706781 -0.0304103 0.706778 183.483";scale = "0.125 0.166666 78.0006";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "107.017 -271.971 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.1316 -332.245 129.5";rotation = "0 0 -1 85.0728";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.5025 -311.512 164.25";rotation = "0.593204 0.544263 0.5932 122.885";scale = "0.025 0.0333333 48";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "105.446 -301.445 133.001";rotation = "-0.676063 0.736844 1.17411e-06 180";scale = "1.74997 0.166666 6.99802";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "0";moving = "open";prevscale = "1.74997 0.166666 6.99802";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "104.51 -283.888 129.3";rotation = "0 0 1 51.5042";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "108.395 -272.09 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "105.45 -301.462 123.5";rotation = "-0.676059 0.736847 9.34021e-07 180";scale = "9.74105 0.166666 7";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";canmove = 1;Collision = 1;isdoor = "1";issliding = "0";lv = "4";moving = "open";prevscale = "9.74105 0.166666 7";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.5854 -287.352 162";rotation = "0 0 -1 85.0728";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "107.121 -282.017 131.251";rotation = "-0.998154 0.0429358 0.0429432 90.1077";scale = "0.125 1.16667 32";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.611 -331.923 130";rotation = "0.0429439 0.998154 0.0429437 90.1062";scale = "0.25 0.166666 98.0008";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.7919 -327.714 133";rotation = "0.706781 -0.0304084 0.706778 183.483";scale = "0.25 0.166666 98.0006";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.7305 -300.78 161.75";rotation = "0.70678 -0.0304073 -0.706779 176.516";scale = "0.125 8 28";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.0251 -311.643 165.25";rotation = "0.0304068 0.706781 0.706778 183.484";scale = "0.125 0.166666 47.9994";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.132 -268.092 130.75";rotation = "0.0429453 0.998154 0.042945 90.1062";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "102.975 -283.091 120";rotation = "0 0 -1 85.2808";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "109.914 -272.221 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.5455 -311.774 165.25";rotation = "0.0304068 0.706781 0.706778 183.484";scale = "0.125 0.166666 47.9994";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "92.1421 -300.086 162.02";rotation = "-0.670414 0.741987 9.40536e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";frequency = "16";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "92.1421 -300.086 162.4";rotation = "5.63057e-07 -8.57042e-14 1 95.802";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.772 -320.873 131.25";rotation = "0.998154 -0.0429444 0.0429371 90.1044";scale = "0.125 1.16667 32";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.481 -311.761 162";rotation = "0 0 -1 85.0728";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.7564 -300.179 161.5";rotation = "0 0 -1 85.0728";scale = "6.25 4.99999 7";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "108.37 -290.135 129.3";rotation = "0 0 -1 84.7869";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "86.9523 -311.896 165.25";rotation = "0.0304068 0.706781 0.706778 183.484";scale = "0.125 0.166666 48.0014";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "101.944 -318.793 129.3";rotation = "0 0 1 141.493";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "111.29 -272.34 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "88.4083 -312.021 165.25";rotation = "0.0304068 0.706781 0.706778 183.484";scale = "0.125 0.166666 47.9994";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "99.6969 -319.318 120";rotation = "0 0 -1 83.4954";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "106.366 -312.434 129.3";rotation = "0 0 -1 84.2706";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.8094 -312.142 165.25";rotation = "0.0304068 0.706781 0.706778 183.484";scale = "0.125 0.166666 48.0014";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "98.7827 -288.576 164.25";rotation = "0.0429453 0.998154 0.042945 90.1062";scale = "0.025 0.0333333 28";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.777 -272.468 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "91.3334 -312.273 165.25";rotation = "0.0304068 0.706781 0.706778 183.484";scale = "0.125 0.166666 47.9994";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.3807 -332.266 130.75";rotation = "0.706781 -0.0304103 0.706778 183.483";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "112.538 -277.465 121.25";rotation = "-0.560076 0.610437 -0.560073 117.197";scale = "0.125 0.166666 98.0002";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.7301 -311.782 164.25";rotation = "0.706781 -0.0304103 0.706778 183.483";scale = "0.025 0.0333333 28";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.8361 -312.403 165.25";rotation = "0.0304068 0.706781 0.706778 183.484";scale = "0.125 0.166666 48.0014";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "114.303 -272.599 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "96.8674 -290.418 161.8";rotation = "0 0 1 48.1486";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "94.1582 -312.517 165.25";rotation = "0.0304068 0.706781 0.706778 183.484";scale = "0.125 0.166666 48.0014";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "95.1066 -310.842 161.8";rotation = "0 0 1 139.192";scale = "1 1 1";team = "1";ownerGUID = "2073419";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "115.686 -272.719 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "95.5821 -312.64 165.25";rotation = "0.0304068 0.706781 0.706778 183.484";scale = "0.125 0.166666 48.0014";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "99.0103 -288.846 164.25";rotation = "-0.560076 0.610437 -0.560073 117.197";scale = "0.025 0.0333333 48";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "99.0318 -288.597 162";rotation = "0 0 -1 85.0728";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "116.941 -272.827 132.75";rotation = "0.0304084 0.706781 -0.706778 176.517";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "117.949 -272.913 130";rotation = "-0.560077 0.610435 -0.560073 117.197";scale = "0.25 0.166666 118";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "96.9275 -313.006 162";rotation = "0 0 -1 85.0728";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.881 -331.695 133";rotation = "0.593203 0.544265 0.5932 122.885";scale = "0.25 0.166666 118";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.36 -268.362 130.75";rotation = "-0.560076 0.610437 -0.560073 117.197";scale = "0.125 0.166666 138";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "117.97 -272.664 129.5";rotation = "0 0 1 94.9271";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.86 -331.944 129.5";rotation = "0 0 1 94.9271";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.381 -268.113 129.5";rotation = "0 0 -1 85.0728";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "117.412 -337.356 129.5";rotation = "0 0 -1 85.0728";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2073419";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2073419/Ranks/Powers/Saved.Dat b/Univ/Data/2073419/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..bc9c4f7 --- /dev/null +++ b/Univ/Data/2073419/Ranks/Powers/Saved.Dat @@ -0,0 +1,89 @@ +$PowerSave::Level[2073419, 1] = 1; +$PowerSave::SpendPoints[2073419, 1] = 1; +$PowerSave::EXP[2073419, 1] = 0; +$PowerSave::TopPlPosition[2073419, 1] = 1; +//--- OBJECT WRITE BEGIN --- +new SimSet(ClientData_2073419) { + + new ScriptObject(classData10_2073419) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData2_2073419) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData3_2073419) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData4_2073419) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData5_2073419) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData6_2073419) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData7_2073419) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData8_2073419) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData9_2073419) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData1_2073419) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2073419/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2073419/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..733b128 --- /dev/null +++ b/Univ/Data/2073419/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,93 @@ +//Ranks & Settings File For GUID 2073419 / Name: Crappage +//Created On 2010-12-05, Total Warfare Mod 2 3.6 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2073419) { + + new ScriptObject(TWM2Client_2073419) { + + noMoreEXPc7412b8fcc6af13f36096bacea1e97d0ab47c3d1 = "0"; + money = "1.77138e+07"; + challengeCompleteAcceptance = "1"; + challengeCompleteGameEnder = "1"; + officer = "7"; + weaponKillsWp400Image = "81"; + GMCalls = "4"; + SlthAirstrikeCalls = "27"; + millionxp = "2"; + xpGaine8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "60300"; + noMoreEXPbdbabad4b8dedaeeec4d8d11739eb163b9b5e6e4 = "0"; + NukeCalls = "4"; + challengeComplete15For15 = "1"; + noMoreEXPacc6411866b5c324fa7563f06684d17dd798ec07 = "0"; + challengeCompleteHelicopter1 = "1"; + xpGain89cdac08df21a5718f555304b1ff83706f567ff0 = "350190"; + FissionCalls = "1"; + challengeCompleteS3RifleImage_1 = "1"; + challengeCompleteWp400Image_1 = "1"; + noMoreEXPd0c6f581c60c16e2bdea3fdec0420e572976d8d9 = "0"; + xp = "338280"; + xpGaindd7dfcc969fa279e882307c86c4c61faece8aef0 = "516252"; + noMoreEXP0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "0"; + challengeCompleteMilestone25 = "1"; + HeliCalls = "31"; + challengeCompleteAngel = "1"; + xpGainc7412b8fcc6af13f36096bacea1e97d0ab47c3d1 = "9210"; + hasMedalHonorsC = "1"; + gameTime = "10486"; + weaponKillsS3RifleImage = "209"; + challengeCompleteAirstrike1 = "1"; + ArtyCalls = "0"; + bossDefeatCountLordRog = "1"; + xpGainae27473a04462f40846555ef3c15130473191fd1 = "522040"; + xpGainb357f24507ce1e3484c97e0f69aba8cb58dbc5e0 = "189072"; + noMoreEXPfc415304893efb384e432cd91acd761a21b60f5c = "0"; + GunHeliCalls = "0"; + bossDefeatCountGhostOfLightning = "2"; + noMoreEXPae27473a04462f40846555ef3c15130473191fd1 = "0"; + hasMedalHonorsB = "1"; + hasMedalThundaStruk = "1"; + hasMedalNuclearDawn = "1"; + name = "Crappage"; + AirstrikeCalls = "42"; + challengeCompleteS3RifleImage_2 = "1"; + rankNumber = "58"; + noMoreEXP7157524394b5b23795f12ae582a4859a543a7db9 = "0"; + phrase = "None Set"; + noMoreEXPb357f24507ce1e3484c97e0f69aba8cb58dbc5e0 = "0"; + challengeCompleteHarrier1 = "1"; + noMoreEXPdd7dfcc969fa279e882307c86c4c61faece8aef0 = "0"; + hasMedalTheUltimateHeadshot = "1"; + hasMedalGamerExcuisite = "1"; + CGCalls = "0"; + xpGain0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "181680"; + noMoreEXP89cdac08df21a5718f555304b1ff83706f567ff0 = "0"; + bossDefeatCountShadeLord = "3"; + hasMedalRevengeAvoidedAgain = "1"; + weaponKillsSuperChaingunImage = "777"; + HarrierCalls = "23"; + rank = "Fleet Commander"; + weaponKillspistolImage = "1"; + hasMedalTheLight = "1"; + hasMedalHonorsA = "1"; + xpGain7157524394b5b23795f12ae582a4859a543a7db9 = "385124"; + UAVCalls = "0"; + HWCalls = "0"; + noMoreEXPe8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "0"; + challengeCompleteFission1 = "1"; + weaponKillsM1700Image = "10"; + ZBCalls = "0"; + bossDefeatCountInsignia = "1"; + hasMedalInsigniaDefeated = "1"; + challengeCompleteSBomber1 = "1"; + }; + new ScriptObject(CCD_2073419) { + + expireDate = "20140131"; + }; + new ScriptObject(ClientStore2073419) { + + nextLoto = "0"; + nextSlot = "0"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2118847/Buildings/3.cs b/Univ/Data/2118847/Buildings/3.cs new file mode 100644 index 0000000..cbae8aa --- /dev/null +++ b/Univ/Data/2118847/Buildings/3.cs @@ -0,0 +1,19 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Phantom139" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "52.8401 -29.8135 100";rotation = "0 0 1 0.88381";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "52.8166 -27.6062 100";rotation = "0 0 1 1.46604";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "53.6846 -27.7301 100";rotation = "0 0 -1 7.11432";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.4099 -26.7099 100";rotation = "0 0 -1 27.1589";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.4338 -30.534 100";rotation = "0 0 -1 21.9953";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.8125 -28.1645 100";rotation = "0 0 -1 31.7347";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.2958 -26.4875 100.25";rotation = "0.462273 0.756711 0.462268 105.77";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.297 -27.8375 100";rotation = "0 0 -1 36.3105";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.4525 -25.3997 100";rotation = "0 0 -1 52.3725";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.8476 -28.5904 100";rotation = "0 0 -1 41.5015";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "59.4463 -31.1413 100";rotation = "0 0 -1 35.1679";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.7727 -24.3025 100";rotation = "0 0 -1 63.8258";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.3099 -24.2436 100";rotation = "0 0 -1 66.6877";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.0413 -43.1027 100";rotation = "0 0 -1 8.27886";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2000343";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); diff --git a/Univ/Data/2118847/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2118847/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..6f2b818 --- /dev/null +++ b/Univ/Data/2118847/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,53 @@ +//Ranks & Settings File For GUID 2118847 / Name: [ShadowForce] +//Created On 2010-11-22, Total Warfare Mod 2 3.5 +//--- OBJECT WRITE BEGIN --- +new ScriptObject(TWM2Client_2118847) { + + bossDefeatCountGhostOfLightning = "1"; + hasMedalRevengeAvoidedAgain = "1"; + HarrierCalls = "0"; + HWCalls = "0"; + hasMedalThundaStruk = "1"; + weaponKillspistolImage = "1"; + challengeCompleteVard1 = "1"; + hasMedalSrysly = "1"; + AirstrikeCalls = "0"; + CGCalls = "0"; + bossDefeatCountCnlWindshear = "1"; + millionxp = "0"; + bossDefeatCountVengenor = "1"; + GunHeliCalls = "0"; + xpGaindd80bc24dac8672bcf767d755c529873255414ac = "304713"; + name = "[ShadowForce]"; + officer = "0"; + weaponKillsWp400Image = "14"; + challengeCompleteAcceptance = "1"; + hasMedalHonorsA = "1"; + ArtyCalls = "0"; + bossDefeatCountInsignia = "1"; + weaponKillsSuperChaingunImage = "16"; + hasMedalInsigniaDefeated = "1"; + noMoreEXPdd80bc24dac8672bcf767d755c529873255414ac = "0"; + HeliCalls = "0"; + rankNumber = "46"; + hasMedalTheNewGeneral = "1"; + xp = "304713"; + SlthAirstrikeCalls = "0"; + bossDefeatCountStormrider = "2"; + hasMedalSkyFront = "1"; + bossDefeatCountYvex = "2"; + NukeCalls = "0"; + hasMedalTheSourceOfAllEvil = "1"; + bossDefeatCountVardison3 = "1"; + phrase = "None Set"; + rank = "Brigadier General"; + GMCalls = "0"; + hasMedalHonorsB = "1"; + hasMedalHonorsC = "1"; + hasMedalHarbiend = "1"; + gameTime = "1220"; + bossDefeatCountLordRog = "1"; + UAVCalls = "0"; + ZBCalls = "0"; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2130825/Ranks/CnC4/Saved.Rank b/Univ/Data/2130825/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..f6eb779 --- /dev/null +++ b/Univ/Data/2130825/Ranks/CnC4/Saved.Rank @@ -0,0 +1,12 @@ +//Ranks File For GUID 2130825 +//Created On 2010-07-31, C&C 4 +$Rank::Name[2130825] = "DarknessOfLight"; +$Rank::Rank[2130825, 1] = "Gunnary Private"; +$Rank::XP[2130825, 1] = 1000; +$Rank::Rank[2130825, 2] = "Initiate"; +$Rank::XP[2130825, 2] = 1250; +$Rank::Rank[2130825, 3] = "Hunter"; +$Rank::XP[2130825, 3] = 1250; +$CNC::Deaths[2130825] = 12; +$CNC::KilledByPl[2130825, 2000343] = 1; +$CNC::KilledByPl[2130825, 2714648] = 6; \ No newline at end of file diff --git a/Univ/Data/2130825/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2130825/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..419b43c --- /dev/null +++ b/Univ/Data/2130825/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,96 @@ +//Ranks & Settings File For GUID 2130825 / Name: DarknessOfLight +//Created On 2010-11-06, Total Warfare Mod 2 3.4 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2130825) { + + new ScriptObject(TWM2Client_2130825) { + + noMoreEXPafd65474d446a6dde699343e249c8305bb5c112c = "0"; + weaponKillsS3RifleImage = "1"; + money = "200828"; + ArtyCalls = "13"; + GunHeliCalls = "0"; + challengeCompleteVard1 = "1"; + hasMedalGamerExcuisite = "1"; + weaponKillsSuperChaingunImage = "19"; + xpGain4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "225708"; + noMoreEXP9002e32633e00c82128b7d12c928b85d2b4d3d7c = "0"; + xp = "652040"; + AirstrikeCalls = "9"; + noMoreEXP30bef08fa7bdeea74f775312fd4474ad898b26b5 = "0"; + millionxp = "0"; + noMoreEXPf84cf81cacd074fe1f02819cef3f78be4a0d36d7 = "0"; + bossDefeatCountVengenor = "1"; + xpGain20101116 = "37500"; + weaponKillsMissileLauncherImage = "9"; + CGCalls = "0"; + xpGaind860ebbfad59517ab665e030b87d44bd614d83a5 = "39"; + officer = "0"; + weaponKillsS3SRifleImage = "210"; + noMoreEXPfebce0d090179df639e250e081cdce7f2147fcd5 = "0"; + weaponKillsflamerImage = "26"; + ACCalls = "1"; + hasMedalHonorsB = "1"; + xpGaina551bd7c55ccc51f49b5a3863ebc0a96223288e4 = "40176"; + hasMedalInsigniaDefeated = "1"; + challengeCompleteVard2 = "1"; + weaponKillsM1SniperRifleImage = "14"; + hasMedalHonorsC = "1"; + xpGain9002e32633e00c82128b7d12c928b85d2b4d3d7c = "78500"; + HarrierCalls = "0"; + weaponKillspistolImage = "1"; + bossDefeatCountInsignia = "1"; + xpGain20101106 = "68"; + weaponKillsSA2400Image = "15"; + xpGain20101108 = "73"; + bossDefeatCountGhostOfFire = "2"; + noMoreEXPa551bd7c55ccc51f49b5a3863ebc0a96223288e4 = "0"; + UAVCalls = "0"; + HWCalls = "0"; + gameTime = "2483"; + xpGainf84cf81cacd074fe1f02819cef3f78be4a0d36d7 = "421"; + weaponKillsStingerImage = "19"; + xpGainafd65474d446a6dde699343e249c8305bb5c112c = "67747"; + xpGain20101120 = "123180"; + ZBCalls = "3"; + noMoreEXPd860ebbfad59517ab665e030b87d44bd614d83a5 = "0"; + challengeCompleteCentaur1 = "1"; + hasMedalBurningNightmare = "1"; + noMoreEXP6a0c8abf721c54d1168639f7efe996c0de0104eb = "0"; + bossDefeatCountStormrider = "1"; + weaponKillsNuclearImage = "3"; + noMoreEXPfdd9330966537889b883c917c248124703b206ee = "0"; + rank = "3 Star General"; + name = "DarknessOfLight"; + noMoreEXPdd80bc24dac8672bcf767d755c529873255414ac = "0"; + hasMedalTheNewGeneral = "1"; + hasMedalTheUltimateHeadshot = "1"; + SlthAirstrikeCalls = "0"; + GMCalls = "0"; + hasMedalTheSourceOfAllEvil = "1"; + hasMedalSkyFront = "1"; + NukeCalls = "0"; + phrase = "None Set"; + noMoreEXP6a7c7eb2feb760bf98217eeee06e9b652947e70e = "0"; + rankNumber = "51"; + xpGaindd80bc24dac8672bcf767d755c529873255414ac = "78504"; + xpGain6a7c7eb2feb760bf98217eeee06e9b652947e70e = "124"; + weaponKillsG17SniperRifleImage = "6"; + noMoreEXP91add7cf7886d77002ae84ea77fa577c0db892c1 = "0"; + weaponKillsPulsePhaserImage = "1"; + bossDefeatCountVardison3 = "3"; + noMoreEXP4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "0"; + weaponKillsMortarImage = "51"; + HeliCalls = "1"; + }; + new ScriptObject(ClientStore2130825) { + + nextSlot = "0"; + nextLoto = "0"; + }; + new ScriptObject(CCD_2130825) { + + expireDate = "20101231"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2166941/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2166941/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..0741c4c --- /dev/null +++ b/Univ/Data/2166941/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,161 @@ +//Ranks & Settings File For GUID 2166941 / Name: firefox509 +//Created On 2011-11-26, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2166941) { + + new ScriptObject(TWM2Client_2166941) { + + xp = "302396"; + weaponKillsM1700Image = "4"; + CGCalls = "0"; + millionxp = "0"; + bossDefeatCountYvex = "2"; + challengeCompleteMilestone25 = "1"; + rank = "Brigadier General"; + hasMedalHonorsB = "1"; + HarrierCalls = "0"; + name = "firefox509"; + officer = "0"; + hasMedalSrysly = "1"; + UAVCalls = "0"; + HWCalls = "0"; + ZBCalls = "0"; + gameTime = "669"; + xpGain7157524394b5b23795f12ae582a4859a543a7db9 = "302396"; + weaponKillsMp26Image = "4"; + weaponKillsPulsePhaserImage = "3"; + weaponKillsMiniChaingunImage = "2"; + weaponKillsLD06SavagerImage = "53"; + weaponKillsG17SniperRifleImage = "1"; + weaponKillsR700SniperRifleImage = "81"; + hasMedalHonorsC = "1"; + challengeCompleteLD06SavagerImage_1 = "1"; + GMCalls = "0"; + SlthAirstrikeCalls = "0"; + NukeCalls = "0"; + phrase = "None Set"; + weaponKillsRP432Image = "1"; + HeliCalls = "9"; + noMoreEXP7157524394b5b23795f12ae582a4859a543a7db9 = "0"; + rankNumber = "46"; + weaponKillsM4A1Image = "19"; + weaponKillsMRXXImage = "2"; + ArtyCalls = "0"; + money = "302346"; + weaponKillsM1SniperRifleImage = "28"; + GunHeliCalls = "0"; + weaponKillsSA2400Image = "1"; + vehicleKillsScoutFlyer = "2"; + AirstrikeCalls = "13"; + weaponKillsS3RifleImage = "3"; + }; + new ScriptObject(CCD_2166941) { + + ZombieKillCount20111126_MRXXImage_9 = "1"; + ZombieKillCount20111126_MRXXImage_1 = "2"; + ZombieKillCount20111126_0_9 = "5"; + ZombieKillCount20111126_0_12 = "3"; + ZombieKillCount20111126_Grenade_5 = "1"; + ZombieKillCount20111126_0_4 = "3"; + ZombieKillCount20111126_Grenade_4 = "2"; + ZombieKillCount20111126_MG42Image_1 = "6"; + ZombieKillCount20111126_RP432Image_1 = "1"; + totalZombieKillCount20111126 = "299"; + ZombieKillCount20111126_S3RifleImage_1 = "3"; + ZombieKillCount20111126__12 = "3"; + ZombieKillCount20111126__1 = "190"; + ZombieKillCount20111126_Wp400Image_9 = "2"; + ZombieKillCount20111126_SA2400Image_1 = "1"; + expireDate = "20111130"; + ZombieKillCount20111126_M1700Image_9 = "1"; + ZombieKillCount20111126_Mp26Image_9 = "1"; + ZombieKillCount20111126__2 = "1"; + ZombieKillCount20111126_Grenade_1 = "2"; + ZombieKillCount20111126_R700SniperRifleImage_1 = "34"; + ZombieKillCount20111126_M1700Image_1 = "2"; + ZombieKillCount20111126_MeleeImage_1 = "6"; + ZombieKillCount20111126_Wp400Image_2 = "1"; + PlayerKillCount20111126_Wp400Image = "1"; + totalPlayerKillCount20111126 = "3"; + ZombieKillCount20111126_0_2 = "3"; + ZombieKillCount20111126_R700SniperRifleImage_11 = "1"; + successiveStreak20111126_1 = "3"; + ZombieKillCount20111126_Wp400Image_4 = "1"; + ZombieKillCount20111126_R700SniperRifleImage_3 = "1"; + killstreakCalls20111126_2 = "9"; + ZombieKillCount20111126_0_11 = "2"; + ZombieKillCount20111126_Mp26Image_11 = "1"; + ZombieKillCount20111126_flamerImage_3 = "1"; + ZombieKillCount20111126_Wp400Image_1 = "10"; + ZombieKillCount20111126_0_1 = "281"; + ZombieKillCount20111126_0_5 = "1"; + ZombieKillCount20111126_R700SniperRifleImage_2 = "1"; + killstreakCalls20111126_4 = "6"; + ZombieKillCount20111126_Mp26Image_1 = "2"; + ZombieKillCount20111126_0_3 = "2"; + zombieHeadshots20111126 = "35"; + ZombieKillCount20111126_M4A1Image_1 = "22"; + PlayerKillCount20111126_M4A1Image = "2"; + }; + new ScriptObject(ClientSettings2166941) { + + savedstreak1 = "1"; + savedstreak2 = "2"; + savedstreak3 = "4"; + }; + new ScriptObject(ClientStore2166941) { + + nextLoto = "0"; + purchasedSpontaneousCombustion = "0"; + purchasedFireworks = "0"; + nextSlot = "0"; + purchasedGuardianFlare = "0"; + purchasedFalseExplosion = "0"; + purchasedThunderstorm = "0"; + purchasedHologram = "0"; + }; + new ScriptObject(CCD_2166941) { + + ZombieKillCount20111126__5 = "1"; + ZombieKillCount20111126_flamerImage_5 = "3"; + ZombieKillCount20111126_M1SniperRifleImage_3 = "3"; + ZombieKillCount20111126_G17SniperRifleImage_1 = "1"; + ZombieKillCount20111126_R700SniperRifleImage_4 = "7"; + ZombieKillCount20111126_R700SniperRifleImage_5 = "3"; + ZombieKillCount20111126_0_4 = "7"; + totalZombieKillCount20111126 = "68"; + ZombieKillCount20111126_M4A1Image_2 = "1"; + expireDate = "20111130"; + ZombieKillCount20111126_M1SniperRifleImage_2 = "1"; + ZombieKillCount20111126__2 = "1"; + ZombieKillCount20111126_R700SniperRifleImage_1 = "6"; + ZombieKillCount20111126_0_2 = "5"; + ZombieKillCount20111126_M1SniperRifleImage_1 = "24"; + ZombieKillCount20111126_Grenade_2 = "1"; + ZombieKillCount20111126_R700SniperRifleImage_3 = "13"; + killstreakCalls20111126_2 = "1"; + ZombieKillCount20111126_0_1 = "31"; + ZombieKillCount20111126_R700SniperRifleImage_2 = "1"; + ZombieKillCount20111126_0_5 = "10"; + ZombieKillCount20111126_PulsePhaserImage_5 = "3"; + killstreakCalls20111126_4 = "1"; + ZombieKillCount20111126_0_3 = "16"; + zombieHeadshots20111126 = "55"; + }; + new ScriptObject(CCD_2166941) { + + totalZombieKillCount20111126 = "121"; + ZombieKillCount20111126__1 = "62"; + expireDate = "20111130"; + ZombieKillCount20111126_M1700Image_1 = "2"; + ZombieKillCount20111126_R700SniperRifleImage_1 = "17"; + ZombieKillCount20111126_MeleeImage_1 = "1"; + ZombieKillCount20111126_MiniChaingunImage_1 = "2"; + killstreakCalls20111126_2 = "3"; + ZombieKillCount20111126_Wp400Image_1 = "38"; + ZombieKillCount20111126_0_1 = "122"; + killstreakCalls20111126_4 = "2"; + zombieHeadshots20111126 = "11"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2205246/Buildings/1.cs b/Univ/Data/2205246/Buildings/1.cs new file mode 100644 index 0000000..24a064a --- /dev/null +++ b/Univ/Data/2205246/Buildings/1.cs @@ -0,0 +1,48 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Castiger" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-321.276 49.282 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-314.832 64.9934 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-304.072 52.2494 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-310.277 64.4432 100.5";rotation = "0.741043 0.671457 3.99677e-06 180";scale = "19.9999 26.6668 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-337.252 55.5818 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-310.329 36.8956 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-330.891 37.5993 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-333.508 71.1363 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-309.797 66.8054 90.5";rotation = "0 0 1 5.55921";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-307.132 66.5523 90.5";rotation = "0 0 1 5.55921";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-319.897 79.1157 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-308.864 71.6788 90.5";rotation = "0 0 1 8.41569";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-343.407 42.523 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-306.691 71.4074 90.5";rotation = "0 0 1 2.13139";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-293.982 66.5781 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "-351.566 30.5777 139.463";rotation = "-0.595384 -0.539476 0.595385 123.309";scale = "38.973 75.5207 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-306.548 81.1914 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-289.659 51.8927 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-294.573 37.5011 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-354.04 28.32 100.25";rotation = "-0.615222 -0.557447 -0.557453 116.799";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "-268.987 98.3075 139.509";rotation = "-4.9301e-06 -7.15612e-06 1 185.641";scale = "75.5216 75.5187 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "-344.142 105.732 139.51";rotation = "-0.706676 0.0348136 0.70668 183.988";scale = "39.02 75.5204 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-346.4 108.206 100.25";rotation = "-0.557449 0.615226 -0.557448 116.799";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-293.782 79.1974 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 19.98";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-327.652 91.7897 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-280.987 64.5775 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-351.58 30.3379 139.703";rotation = "0.706676 -0.0348144 0.70668 183.988";scale = "0.125 0.166666 151.001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-314.608 95.4564 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-344.382 105.746 139.75";rotation = "-0.557449 0.615226 -0.557448 116.799";scale = "0.125 0.166666 151.001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-300.536 92.7348 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-354.289 28.3446 100";rotation = "-2.24534e-05 2.79956e-05 1 5.64086";scale = "1.25 1.66666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-287.467 88.2457 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-278.322 76.426 100.5";rotation = "0 0 1 5.64072";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "-268.509 98.2603 139.509";rotation = "-0.706675 0.0348107 0.706681 183.988";scale = "39.019 75.5188 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "-268.987 98.3074 139.502";rotation = "0.557451 -0.615217 -0.557456 116.799";scale = "39.012 75.5206 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-274.153 20.6809 100.25";rotation = "0.0348116 0.706676 0.70668 183.988";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-346.126 108.43 100.25";rotation = "0.706679 -0.0348187 0.706677 183.988";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-268.749 98.2742 139.749";rotation = "-0.557448 0.615223 -0.557452 116.799";scale = "0.125 0.166666 150.998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-274.178 20.4321 100";rotation = "-3.6324e-06 -1.669e-06 1 185.641";scale = "1.25 1.66666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-268.974 98.5476 139.742";rotation = "0.0491428 0.997582 0.0491442 90.1395";scale = "0.125 0.166666 150.999";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-346.375 108.455 100";rotation = "0 0 1 185.641";scale = "1.25 1.66666 80";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-266.264 100.541 100";rotation = "5.57103e-06 7.20789e-06 -1 84.3595";scale = "1.25 1.66666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-341.291 59.2862 100";rotation = "0 0 -1 92.5986";scale = "50 66.6666 400";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2205246/Buildings/17.cs b/Univ/Data/2205246/Buildings/17.cs new file mode 100644 index 0000000..1c38cdf --- /dev/null +++ b/Univ/Data/2205246/Buildings/17.cs @@ -0,0 +1,288 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Castiger" +// Created in mission "Pretty" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.077 -419.054 135.164";rotation = "0.0620864 0.998071 1.26515e-06 180";scale = "1.12065 0.166666 10.452";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-114.812 -416.072 132.785";rotation = "0.0619687 0.996152 0.061969 90.2206";scale = "1.423 0.166666 28.0644";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-124.45 -415.183 135.435";rotation = "-0.551911 0.625133 -0.551909 115.979";scale = "0.0875 1.66666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.853 -419.332 135.414";rotation = "0.0619687 0.996152 0.061969 90.2205";scale = "0.125 0.166666 26.19";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.605 -419.363 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.798 -414.449 135.63";rotation = "0 0 1 187.119";scale = "0.472138 0.166666 8.422";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-133.169 -418.044 135.164";rotation = "0.0620864 0.998071 1.26515e-06 180";scale = "1.34913 0.166666 10.452";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.925 -421.919 136.722";rotation = "0 0 1 97.1192";scale = "1.1632 0.166666 3.428";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-118.369 -415.627 135.63";rotation = "0 0 1 187.119";scale = "1.79181 0.166666 8.422";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-131.631 -418.235 135.663";rotation = "0 0 1 187.119";scale = "2.1244 0.166666 7.178";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.853 -419.332 139.503";rotation = "0.0619687 0.996152 0.061969 90.2205";scale = "0.125 0.166666 26.19";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-135.559 -419.566 135.414";rotation = "-0.529562 0.599824 -0.599813 235.808";scale = "0.778503 0.166666 7.2962";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-135.847 -417.709 140.002";rotation = "-0.0619768 -0.996152 0.0619705 90.2208";scale = "0.25 0.166667 26.19";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-120.806 -407.458 140.092";rotation = "-0.996152 0.0619677 0.0619722 90.2208";scale = "3.50752 0.166667 15.1084";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.853 -419.332 140.623";rotation = "0.0619687 0.996152 0.061969 90.2205";scale = "0.125 0.166666 26.19";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-124.264 -419.155 140.873";rotation = "0 0 1 187.119";scale = "0.711 0.166666 3.35998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.831 -422.599 130.188";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-128.571 -429.052 139.495";rotation = "0.0439436 0.706418 0.70643 185.033";scale = "2.23424 0.166666 20.2078";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.907 -423.205 130.45";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.535 -404.721 135.384";rotation = "-0.529562 0.599819 -0.599818 235.808";scale = "4.71812 0.166667 28.0624";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.673 -421.334 135.603";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.927 -421.94 140.848";rotation = "0 0 -1 82.8806";scale = "1.1738 0.166666 3.512";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.965 -423.676 131.096";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.771 -422.12 135.712";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.035 -424.233 131.733";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.859 -422.824 136.4";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.095 -417.679 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-131.763 -418.219 140.873";rotation = "0 0 1 187.119";scale = "2.05786 0.166666 3.35998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.144 -425.106 132.514";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-121.182 -406.574 140.092";rotation = "-0.529569 0.599816 0.599815 124.191";scale = "0.487053 0.166667 5.79466";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.853 -419.332 143.495";rotation = "0.0619687 0.996152 0.061969 90.2205";scale = "0.471253 0.166666 26.19";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.959 -423.622 137.023";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.23 -425.79 133.099";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "-126.914 -431.427 129.938";rotation = "0 0 1 8.60786";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-114.533 -415.854 132.786";rotation = "0.59982 0.529562 0.599817 124.192";scale = "1.424 0.166666 37.747";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.046 -424.317 137.637";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "-126.856 -431.57 131.974";rotation = "0 0 1 7.50373";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.322 -426.534 133.67";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.853 -419.332 144.688";rotation = "0.0619687 0.996152 0.061969 90.2205";scale = "0.125 0.166666 26.19";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-124.017 -430.669 136.726";rotation = "0 0 1 97.1192";scale = "2.06846 0.166666 3.428";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.411 -427.246 134.296";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.139 -425.067 138.281";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.098 -439.315 140.296";rotation = "0.996152 -0.061972 0.0619792 90.2208";scale = "0.125 0.368 39.7142";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.216 -400.347 140.092";rotation = "-0.996152 0.0619677 0.0619722 90.2208";scale = "0.93876 0.166667 13.0184";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-114.218 -413.338 149.836";rotation = "0.749645 0.66184 8.38941e-07 180";scale = "1.26829 0.166666 28.404";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.488 -427.863 134.893";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.213 -425.66 138.877";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration0";position = "-123.509 -430.629 137.386";rotation = "1.09692e-06 -3.35102e-06 -1 82.8806";scale = "1 1 1";team = "1";ownerGUID = "2205246";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-123.757 -430.598 140.186";rotation = "0.52956 -0.599818 0.59982 124.192";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.386 -427.04 139.495";rotation = "-0.625133 -0.551904 -0.551916 115.979";scale = "0.451977 0.166667 9.21104";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration11";position = "-121.228 -400.036 133.634";rotation = "0 0 -1 53.6017";scale = "1 1 1";team = "1";ownerGUID = "2205246";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-123.973 -430.316 140.848";rotation = "0 0 -1 82.8806";scale = "1.81599 0.166666 3.512";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.329 -439.286 143.521";rotation = "0.0439394 0.706424 0.706424 185.032";scale = "0.125 0.611333 39.7142";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.762 -423.397 144.938";rotation = "0 0 1 97.1192";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-128.01 -423.366 152.688";rotation = "0.0620661 0.997741 0.0257087 135.091";scale = "0.125 0.166666 24";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-128.369 -428.26 144.881";rotation = "-0.190498 0.215774 -0.957681 85.3455";scale = "3.05398 0.166667 10.365";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-114.564 -416.102 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.472 -458.34 133.329";rotation = "0.551908 -0.62513 -0.551915 115.979";scale = "1.69625 0.166667 78.0598";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-133.669 -437.9 135.471";rotation = "-0.625132 -0.551905 -0.551916 115.979";scale = "9.75743 0.166667 16.862";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.535 -404.722 150.086";rotation = "-0.529562 0.599819 -0.599818 235.808";scale = "4.71838 0.166667 28.0624";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.783 -404.69 129.938";rotation = "0 0 1 7.11938";scale = "0.125 6.62443 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "-131.341 -439.147 129.938";rotation = "0 0 1 10.9426";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SensorMediumPulse";position = "-133.453 -429.887 144.938";rotation = "0 0 1 44.1542";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "-131.239 -439.347 131.974";rotation = "0 0 1 9.09684";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-131.498 -418.504 135.414";rotation = "0.0439433 0.706425 -0.706422 174.967";scale = "0.125 0.166666 78.0598";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-124.884 -437.611 140.848";rotation = "0 0 -1 82.8806";scale = "0.858877 0.166666 3.512";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.055 -438.976 139.744";rotation = "0.749646 0.661839 1.30415e-07 180";scale = "9.7575 0.166667 2.616";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.793 -423.645 152.688";rotation = "-0.605295 0.685597 -0.404443 130.775";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-114.812 -416.072 154.89";rotation = "0.0619687 0.996152 0.061969 90.2206";scale = "7.524 0.166666 28.0644";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-112.371 -398.552 149.836";rotation = "0.749645 0.66184 8.38941e-07 180";scale = "0.718813 0.166666 28.404";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-135.614 -417.99 135.414";rotation = "0.0439433 0.706425 -0.706422 174.967";scale = "0.125 0.166666 78.0598";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.916 -437.307 129.938";rotation = "-3.47145e-06 -2.04164e-06 -1 82.8806";scale = "9.7575 0.166667 18.614";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.128 -439.563 139.745";rotation = "0 0 1 97.1192";scale = "0.125 0.166666 9.38602";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.248 -430.146 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.791 -435.173 148.298";rotation = "0.83036 -0.051656 0.554827 183.953";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.706 -458.311 144.688";rotation = "0.59982 0.529562 0.599817 124.192";scale = "0.125 0.166666 78.0598";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-129.584 -437.989 146.43";rotation = "-0.656181 0.743229 0.130522 196.82";scale = "0.125 0.166666 3.2297";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.063 -437.351 144.688";rotation = "-0.529562 0.599819 -0.599818 235.808";scale = "9.75743 0.166667 25.2488";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.561 -443.03 136.722";rotation = "0 0 1 97.1192";scale = "2.74843 0.166666 3.428";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.575 -436.557 145.687";rotation = "0.686697 -0.181557 0.703906 169.14";scale = "0.405353 0.166667 17.6965";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.51 -432.237 139.635";rotation = "0 0 -1 82.8806";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.597 -432.929 139.635";rotation = "0.362007 -0.336866 -0.869179 101.128";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.811 -437.321 139.745";rotation = "-1.20539e-06 -7.47274e-07 1 97.1186";scale = "9.7575 0.166667 9.386";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.393 -431.299 139.634";rotation = "-6.49343e-08 -5.20597e-07 -1 82.8801";scale = "0.456045 0.166666 9.60602";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-129.829 -437.932 146.711";rotation = "-0.601743 0.458562 0.653931 138.341";scale = "0.125 0.166666 17.6965";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-137.791 -435.173 152.688";rotation = "0.922358 -0.0573785 0.382052 182.723";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.506 -432.204 141.422";rotation = "-0.496335 0.491904 -0.715319 89.3625";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.506 -432.204 141.99";rotation = "-0.551909 0.625137 -0.551907 115.978";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.506 -432.204 142.453";rotation = "-0.60049 0.680162 -0.420465 129.068";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.73 -456.685 144.688";rotation = "0.59982 0.529562 0.599817 124.192";scale = "0.125 0.166666 78.0598";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-119.124 -396.009 129.938";rotation = "0 0 1 7.11938";scale = "3.63298 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.397 -442.295 135.414";rotation = "-0.529562 0.599824 -0.599813 235.808";scale = "7.28415 0.166666 7.2962";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.928 -443.957 139.495";rotation = "-0.529565 0.599815 0.599819 124.193";scale = "7.23147 0.166666 26.9316";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.562 -432.658 144.438";rotation = "-0.651672 0.738128 0.174616 202.376";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.039 -435.142 144.938";rotation = "0 0 -1 82.8806";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-103.01 -435.703 139.622";rotation = "0 0 -1 82.2813";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-99.795 -430.578 140.811";rotation = "0 0 1 187.119";scale = "1.61501 0.166666 3.85198";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration1";position = "-98.8939 -430.186 137.479";rotation = "-1.55523e-06 -1.19118e-06 1 187.12";scale = "1 1 1";team = "1";ownerGUID = "2205246";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-98.9249 -430.434 140.279";rotation = "0.996152 -0.0619747 0.0619755 90.2208";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.792 -444.877 139.745";rotation = "0 0 1 97.1192";scale = "0.125 0.166666 9.38602";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-105.619 -449.122 134.787";rotation = "0.59982 0.529562 0.599817 124.192";scale = "2.424 0.166666 37.747";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "-130.277 -386.268 129.438";rotation = "0 0 1 187.119";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.228 -442.254 139.41";rotation = "-0.625133 -0.551911 -0.551909 115.979";scale = "1.25 0.116667 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-104.311 -438.646 139.635";rotation = "-0.20419 0.208071 -0.956563 95.5722";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-104.374 -439.156 139.635";rotation = "0 0 -1 82.8806";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "-113.285 -388.393 139.561";rotation = "0.0609181 0.979264 0.193212 35.6945";scale = "8.75113 1.66666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "-137.273 -445.599 129.938";rotation = "0 0 1 99.5256";scale = "3 1.5 1.5";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-126.01 -446.624 140.752";rotation = "0 0 1 97.1192";scale = "0.755305 0.166666 3.15";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-104.285 -438.448 144.438";rotation = "-0.684875 0.707546 -0.174138 157.666";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-104.375 -439.17 144.438";rotation = "-0.661841 0.749645 9.50239e-07 180";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-114.533 -415.854 159.887";rotation = "0.59982 0.529562 0.599817 124.192";scale = "5.0255 0.166666 37.747";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-104.578 -440.787 139.634";rotation = "0 0 -1 82.8806";scale = "0.788553 0.166666 9.60602";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103.279 -430.394 144.688";rotation = "-0.551911 0.625133 -0.551909 115.979";scale = "0.125 0.166666 37.747";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.2712 -432.517 134.78";rotation = "0.0619687 0.996152 0.061969 90.2205";scale = "2.421 0.166666 37.7482";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedPulseSensor";position = "-104.646 -441.343 144.938";rotation = "0 0 1 11.9314";scale = "1 1 1";team = "1";ownerGUID = "2205246";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103 -430.177 140.029";rotation = "-0.0619768 -0.996152 0.0619705 90.2208";scale = "0.25 0.166667 37.7482";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.2714 -432.517 140.561";rotation = "0.0619687 0.996152 0.061969 90.2205";scale = "0.125 0.166666 37.7482";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.445 -431.371 140.811";rotation = "0 0 1 187.119";scale = "0.714778 0.166666 3.85198";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.2712 -432.517 143.587";rotation = "0.0619687 0.996152 0.061969 90.2205";scale = "0.42525 0.166666 37.7482";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.823 -445.125 140.248";rotation = "0.0439455 0.706425 -0.706422 174.967";scale = "0.125 0.335667 26.6354";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-103 -430.177 144.688";rotation = "0.706425 -0.0439469 0.706423 185.032";scale = "0.125 0.166666 37.7484";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-138.304 -448.956 129.938";rotation = "0 0 1 10.3821";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-126.723 -452.324 140.752";rotation = "0 0 1 97.1192";scale = "1.12419 0.166666 3.15";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.823 -445.125 143.383";rotation = "-0.551912 0.625131 -0.551909 115.979";scale = "0.528 0.166666 26.6352";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-105.65 -449.37 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-132.173 -454.244 129.938";rotation = "0 0 1 186.829";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-105.492 -448.103 139.634";rotation = "0 0 -1 82.8806";scale = "0.513472 0.166666 9.60602";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.012 -454.648 136.722";rotation = "0 0 1 97.1192";scale = "1.86033 0.166666 3.428";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-96.0065 -450.323 139.372";rotation = "0.996152 -0.0619774 0.0619601 90.2201";scale = "4.7189 0.166667 37.745";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration2";position = "-88.8537 -431.44 137.421";rotation = "-1.55523e-06 -1.19118e-06 1 187.12";scale = "1 1 1";team = "1";ownerGUID = "2205246";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-88.8847 -431.688 140.221";rotation = "0.996152 -0.0619747 0.0619755 90.2208";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-104.201 -439.789 144.688";rotation = "-0.625132 -0.551905 -0.551916 115.979";scale = "4.71838 0.166667 37.7486";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-102.748 -449.733 140.771";rotation = "0 0 1 187.119";scale = "1.33734 0.166666 4.11798";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-120.572 -405.59 169.938";rotation = "0.998071 -0.0620858 1.83936e-06 179.999";scale = "3.50805 6.29116 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-87.3745 -432.129 140.811";rotation = "0 0 1 187.119";scale = "1.56358 0.166666 3.85198";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.513 -456.964 132.738";rotation = "0.706425 -0.0439469 0.706423 185.032";scale = "1.3995 0.166666 25.2508";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.364 -457.465 140.752";rotation = "0 0 1 97.1192";scale = "0.440383 0.166666 3.15";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-128.729 -458.435 135.538";rotation = "0 0 1 7.11927";scale = "0.374867 0.166666 7.466";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "-96.8625 -390.444 149.507";rotation = "1.74668e-08 -6.60489e-07 1 187.12";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.737 -458.559 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.944 -457.41 135.538";rotation = "9.39797e-06 -1.96678e-05 1 7.11883";scale = "1.79887 0.166667 7.46598";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.985 -458.528 139.52";rotation = "0.0619687 0.996152 0.061969 90.2205";scale = "0.125 0.166666 25.2508";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.0233 -432.548 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.985 -458.528 142.096";rotation = "-0.706423 0.0439459 0.706424 185.033";scale = "1.16325 0.166667 25.2508";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.761 -456.933 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "-95.8474 -493.865 129.688";rotation = "0.551909 -0.625133 -0.55191 115.978";scale = "0.125 33.3333 200";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-105.402 -449.401 135.367";rotation = "0.706425 -0.0439469 0.706423 185.032";scale = "2.714 0.166666 37.7504";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.513 -456.964 144.673";rotation = "0.706425 -0.0439469 0.706423 185.032";scale = "0.125 0.166666 25.2508";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-80.3459 -426.672 129.938";rotation = "0 0 -1 82.8806";scale = "0.125 1.66666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.169 -433.715 140.726";rotation = "0 0 -1 82.8806";scale = "0.46307 0.166666 4.25198";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.6527 -437.585 140.183";rotation = "0.996152 -0.061972 0.0619792 90.2208";scale = "0.125 0.362 9.6524";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration6";position = "-107.21 -458.439 129.938";rotation = "0 0 1 97.6309";scale = "1 1 1";team = "1";ownerGUID = "2205246";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration7";position = "-107.21 -458.439 133.238";rotation = "0 0 1 97.6309";scale = "1 1 1";team = "1";ownerGUID = "2205246";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.0545 -432.796 143.645";rotation = "-0.996153 0.0619618 0.0619631 90.2208";scale = "0.125 0.528667 9.6524";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.7207 -438.13 139.64";rotation = "0 0 -1 82.8806";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.586 -437.055 140.729";rotation = "0 0 -1 82.8806";scale = "0.267315 0.166666 4.25198";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-95.3155 -450.661 140.795";rotation = "0 0 1 187.119";scale = "1.52918 0.166666 4.11798";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.8226 -438.946 139.64";rotation = "0.279005 -0.304205 -0.910832 93.4265";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-105.402 -449.4 143.896";rotation = "0.706425 -0.0439469 0.706423 185.032";scale = "0.521 0.166666 37.7504";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.6833 -437.833 139.64";rotation = "0 0 -1 82.8806";scale = "0.125 0.166666 9.596";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-86.3936 -451.524 134.789";rotation = "0.59982 0.529562 0.599817 124.192";scale = "2.4255 0.166666 37.747";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.7325 -394.853 129.938";rotation = "0 0 1 7.11938";scale = "24.875 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.7143 -438.081 143.55";rotation = "-0.259782 0.506948 -0.821898 110.089";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.7143 -438.081 144.188";rotation = "-0.551911 0.625133 -0.551909 115.979";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-130.094 -463.396 135.464";rotation = "0.0619687 0.996152 0.061969 90.2205";scale = "0.0875 3.33333 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-85.1733 -441.754 139.64";rotation = "-0.318925 0.361239 -0.876238 90.4316";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-85.2603 -442.45 139.64";rotation = "0 0 -1 82.8806";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-129.305 -465.369 144.688";rotation = "0.996153 -0.0619697 0.0619657 90.2203";scale = "0.625 0.166666 13.4032";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-85.305 -442.811 139.64";rotation = "0 0 -1 82.8806";scale = "0.125 0.166666 9.596";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-85.274 -442.563 143.86";rotation = "0.457418 0.403838 0.792265 110.057";scale = "0.125 0.133333 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-85.274 -442.563 144.188";rotation = "0.59982 0.529562 0.599817 124.192";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.0543 -432.796 144.688";rotation = "-0.551911 0.625133 -0.551909 115.979";scale = "0.125 0.166666 37.747";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-85.5205 -444.535 140.741";rotation = "0 0 -1 82.8806";scale = "0.743735 0.166666 4.16198";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-129.846 -465.553 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-86.3931 -451.523 140.19";rotation = "0.0439394 0.706424 0.706424 185.032";scale = "0.125 0.367 17.0615";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-85.6645 -440.697 139.361";rotation = "0.302892 0.612593 0.730059 219.696";scale = "0.75 0.166666 34";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-129.598 -465.584 137.438";rotation = "0.706425 -0.0439469 0.706423 185.032";scale = "3.75 0.166666 31.9382";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-85.3361 -443.059 143.63";rotation = "-0.996153 0.0619618 0.0619631 90.2208";scale = "0.125 0.538667 17.0614";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.3615 -451.53 140.771";rotation = "0 0 1 187.119";scale = "0.851162 0.166666 4.11798";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-86.1805 -449.821 140.741";rotation = "0 0 -1 82.8806";scale = "0.858113 0.166666 4.16198";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-86.4243 -451.772 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-113.504 -467.595 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.644 -468.64 135.218";rotation = "-0.0612014 -0.98386 0.16815 40.603";scale = "0.125 1.33333 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-114.018 -469.692 141.304";rotation = "-0.529563 0.599813 0.599822 124.192";scale = "1 0.166666 7.4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-129.877 -465.801 132.728";rotation = "-0.551911 0.625133 -0.551909 115.979";scale = "1.395 0.166666 21.4978";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.587 -472.962 144.688";rotation = "0.0439469 0.706425 0.706423 185.032";scale = "2.44661 0.166666 13.1454";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.372 -472.154 135.518";rotation = "0.998071 -0.0620858 1.83936e-06 179.999";scale = "3.99227 3.58263 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-131.209 -476.467 142.042";rotation = "0.59982 0.529562 0.599817 124.192";scale = "1.198 0.166666 21.4978";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.0621 -420.232 142.935";rotation = "-0.661838 0.749647 1.40162e-06 180";scale = "3.75 2.66667 26";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration10";position = "-101.289 -468.23 129.938";rotation = "0 0 1 191.867";scale = "1 1 1";team = "1";ownerGUID = "2205246";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-129.877 -465.801 144.688";rotation = "-0.551911 0.625133 -0.551909 115.979";scale = "0.125 0.166666 21.4978";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-130.766 -472.924 135.518";rotation = "0 0 1 97.1192";scale = "1.78502 0.166666 8.25598";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-113.535 -467.843 137.438";rotation = "-0.551911 0.625133 -0.551909 115.979";scale = "3.75 0.166666 21.4978";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-116.16 -471.44 141.304";rotation = "-0.0237937 -0.382582 0.923615 186.577";scale = "1 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-114.888 -476.654 144.688";rotation = "0.0619687 0.996152 0.061969 90.2207";scale = "0.125 1.55863 31.9382";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-131.24 -476.715 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-130.992 -476.746 137.188";rotation = "0.706425 -0.0439469 0.706423 185.032";scale = "3.625 0.166666 31.9382";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.0919 -444.124 137.012";rotation = "-0.551911 0.625133 -0.551909 115.979";scale = "3.53625 0.166666 7.74772";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.0607 -443.876 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.8127 -443.907 137.046";rotation = "0.706425 -0.0439469 0.706423 185.032";scale = "3.55325 0.166666 7.75048";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-114.898 -478.757 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.6029 -448.216 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.3547 -448.247 137.002";rotation = "0.706425 -0.0439469 0.706423 185.032";scale = "3.532 0.166666 7.75048";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.092 -444.124 150.549";rotation = "-0.551911 0.625133 -0.551909 115.979";scale = "2.1945 0.166666 7.74772";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.2384 -446.557 143.329";rotation = "-0.529569 0.599816 0.599815 124.191";scale = "0.968475 0.166667 7.7507";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.0837 -446.077 147.43";rotation = "-0.529562 0.599819 -0.599818 235.808";scale = "0.968475 0.166667 7.75068";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.75 -444.666 136.758";rotation = "-0.551911 0.625133 -0.551909 115.979";scale = "3.40975 0.166666 7.74778";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.7191 -444.418 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.2263 -431.288 129.938";rotation = "0 0 1 7.11938";scale = "6.25 1.66666 26";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.8127 -443.907 150.533";rotation = "0.706425 -0.0439469 0.706423 185.032";scale = "2.20225 0.166666 7.75048";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-188.632 -431.888 129.938";rotation = "0.99807 -0.0620914 -3.4e-06 180";scale = "24.875 33.0001 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.5109 -444.501 143.004";rotation = "0.996459 -0.0619886 0.0567984 95.202";scale = "1.125 0.116667 24";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.2613 -448.758 129.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.5093 -448.727 150.551";rotation = "0.0619687 0.996152 0.061969 90.2206";scale = "2.19325 0.166666 7.75048";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-133.099 -388.687 129.688";rotation = "0.625134 0.551911 -0.551907 115.978";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-114.442 -477.869 144.688";rotation = "0.555236 -0.0345446 0.830975 185.917";scale = "0.125 0.999999 41";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.2383 -446.557 154.688";rotation = "0.625128 0.551917 -0.551908 115.978";scale = "0.968475 0.166667 7.75048";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.2301 -448.51 151.059";rotation = "0.59982 0.529562 0.599817 124.192";scale = "1.9395 0.166666 7.74778";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.6799 -446.625 143.004";rotation = "0.706425 -0.0439469 0.706423 185.032";scale = "0.0875 1.66666 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.4161 -449.427 143.004";rotation = "-0.99535 0.0619149 0.0737925 80.2634";scale = "0.875 0.116667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-48.7122 -422.649 142.962";rotation = "-0.661838 0.749647 1.40162e-06 180";scale = "3.75 2.66667 26";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.3087 -468.716 146.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-82.6316 -482.055 129.938";rotation = "0 0 1 7.11938";scale = "2.25 0.333333 3.5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.4335 -486.693 129.938";rotation = "0 0 1 7.11938";scale = "2.75 4.99999 46";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.8935 -469.017 146.938";rotation = "0 0 1 7.11938";scale = "1.09201 0.166666 14.996";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.9795 -469.506 154.437";rotation = "0.749645 0.66184 -1.07785e-06 180";scale = "0.125 1.1735 5.16602";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.2579 -474.087 154.686";rotation = "0.0439482 0.706427 0.706421 185.032";scale = "1.73333 0.166667 9.15256";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.9848 -469.756 154.436";rotation = "0.998071 -0.062087 -7.8701e-08 180";scale = "0.125 0.166666 14.996";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.9995 -470.004 148.22";rotation = "0 0 1 7.11927";scale = "0.875425 0.166666 4.80398";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.8381 -486.95 146.588";rotation = "0.535082 0.472408 -0.70037 103.151";scale = "1.17178 0.166666 32.2874";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.3397 -468.964 154.688";rotation = "0.622483 -0.474373 0.622483 230.756";scale = "0.125 0.166666 44";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.0606 -468.747 154.686";rotation = "0.706425 -0.0439469 0.706423 185.032";scale = "0.125 0.166666 57.3988";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.173 -470.857 148.22";rotation = "0 0 1 7.11927";scale = "1.2916 0.166666 4.80398";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.3548 -479.588 154.663";rotation = "0.474369 0.622486 -0.622484 129.244";scale = "3.75 0.116667 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.7366 -469.787 147.477";rotation = "-0.0619687 -0.996153 0.0619661 90.2208";scale = "0.37175 0.166666 40.6216";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.9428 -480.715 129.938";rotation = "0 0 1 7.11938";scale = "7.5 6.99999 34";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.7366 -469.787 152.529";rotation = "-0.0619687 -0.996153 0.0619661 90.2208";scale = "0.953502 0.166666 40.6216";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-48.4169 -471.7 148.22";rotation = "0 0 1 7.11927";scale = "0.84134 0.166666 4.80398";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.4788 -490.103 154.438";rotation = "0.0620864 0.998071 1.26515e-06 180";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-145.431 -487.42 129.688";rotation = "0.625134 0.551911 -0.551907 115.978";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-64.9755 -490.291 147.95";rotation = "0 0 1 187.119";scale = "0.632365 0.166666 5.724";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-64.6527 -490.583 130.188";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.135 -490.523 130.188";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.1534 -491.141 154.688";rotation = "0.59982 0.529562 0.599817 124.192";scale = "0.125 7.10553 40.0004";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.7882 -490.691 131.011";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.1954 -490.765 131.688";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.6299 -490.836 132.3";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-44.3014 -472.215 148.22";rotation = "0 0 1 7.11927";scale = "0.36225 0.166666 4.80398";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.9956 -490.915 132.974";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.3697 -490.993 133.68";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.6115 -490.961 147.95";rotation = "-0.661839 0.749646 9.14692e-07 180";scale = "0.125 4.44717 2.02398";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.6379 -491.085 134.583";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.3344 -472.335 146.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.2225 -491.01 147.95";rotation = "0 0 1 187.119";scale = "0.87137 0.166666 5.724";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.1231 -491.149 135.48";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.6115 -490.961 154.438";rotation = "-0.661839 0.749646 9.14692e-07 180";scale = "0.125 4.44717 7.25202";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.4098 -491.238 136.381";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.6064 -491.339 137.324";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.849 -491.433 138.262";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.3477 -491.496 139.072";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.7229 -491.574 139.858";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.1044 -492.648 154.688";rotation = "0.0619687 0.996152 0.061969 90.2207";scale = "0.125 0.166666 42";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.2962 -491.627 140.759";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.8234 -491.686 141.328";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-54.0625 -491.655 147.95";rotation = "0 0 1 187.119";scale = "0.539222 0.166666 5.724";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.4795 -491.729 141.792";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.0351 -491.785 142.387";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-44.6048 -482.506 146.938";rotation = "-3.13686e-05 -6.0648e-05 1 7.11883";scale = "0.125 6.66673 15";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-54.5903 -491.84 143.035";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-52.7441 -491.819 146.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.9677 -491.918 143.718";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.3042 -492.001 144.575";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-52.7058 -492.076 145.282";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-52.1392 -492.146 146.068";rotation = "-0.996152 0.0619687 0.061969 90.2206";scale = "0.125 0.666666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.0044 -492.648 153.105";rotation = "0.0619687 0.996152 0.061969 90.2207";scale = "0.6665 0.166666 12.8824";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-49.2849 -495.829 147.068";rotation = "0.998071 -0.0620891 -5.57585e-06 180";scale = "1.51938 2.2003 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-45.8563 -492.679 146.938";rotation = "0 0 1 7.11938";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-232.111 -376.572 129.688";rotation = "0.0439476 0.706425 -0.706422 174.967";scale = "0.125 0.166666 198.001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-145.214 -487.699 129.688";rotation = "0.0439461 0.706425 -0.706422 174.967";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-102.014 -543.232 129.938";rotation = "0.998071 -0.0620903 -4.10037e-06 180";scale = "24.75 33.1667 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.3273 -456.639 129.938";rotation = "0.749647 0.661837 6.56452e-07 180";scale = "24.7375 33.1665 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.876 -401.131 129.688";rotation = "-0.625135 -0.551907 -0.551909 115.979";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.481 -500.031 129.688";rotation = "0.0439461 0.706425 -0.706422 174.967";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.202 -499.814 129.688";rotation = "-0.625135 -0.551907 -0.551909 115.979";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.0925 -598.981 129.688";rotation = "-0.529558 0.599818 0.599822 124.192";scale = "0.125 0.166666 198";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "65.0736 -413.742 129.688";rotation = "-0.996152 0.0619723 0.0619725 90.2208";scale = "0.125 0.166666 197.9";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2205246/Buildings/2.cs b/Univ/Data/2205246/Buildings/2.cs new file mode 100644 index 0000000..1d539c4 --- /dev/null +++ b/Univ/Data/2205246/Buildings/2.cs @@ -0,0 +1,228 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Castiger" +// Created in mission "Nuclearwasteland" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.0105 -690.13 129.438";rotation = "0 0 1 89.7091";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-70.3914 -686.019 124.438";rotation = "0 0 1 178.574";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-73.7717 -689.889 129.428";rotation = "-0.999994 -0.00253684 -0.00253181 89.9997";scale = "6.52008 4.52 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-76.0925 -686.764 124.438";rotation = "0 0 1 146.159";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-70.6871 -691.838 129.838";rotation = "0.631919 0.775035 9.82427e-07 180";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";nametoset = "2nd Floor";frequency = "7";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-70.6871 -691.838 129.838";rotation = "-2.66905e-06 -4.64256e-13 -1 101.616";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.628 -687.63 136.938";rotation = "-0.00253637 0.999997 1.26759e-06 180";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-70.2847 -690.106 134.338";rotation = "-0.682685 0.730712 9.2625e-07 180";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";nametoset = "1st Floor";frequency = "7";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-70.2847 -690.106 134.838";rotation = "5.5046e-07 -1.56681e-12 1 93.8923";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-66.3697 -687.351 136.949";rotation = "-0.00179381 0.707107 -0.707104 180.206";scale = "8.0196 2.52099 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.7609 -691.931 133.738";rotation = "0.705311 0.708898 8.98593e-07 180";scale = "0.125 0.166666 2.8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.7406 -691.813 133.738";rotation = "0.705311 0.708898 8.98593e-07 180";scale = "0.675 0 0";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-67.0105 -690.095 129.438";rotation = "1.00706e-06 2.30322e-06 1 89.712";scale = "0.125 0.166667 9";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.3924 -713.361 129.188";rotation = "-0.00179137 0.707105 0.707106 179.794";scale = "9.87502 0.166667 79.001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-74.2112 -697.891 129.428";rotation = "0.575396 0.578324 0.578325 239.833";scale = "7.5201 4.52 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7778 -686.509 137.189";rotation = "-0.579312 0.576361 0.576373 119.831";scale = "0.125 0.166666 79.0018";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.785 -685.267 137.188";rotation = "-0.579307 0.576368 0.576371 119.832";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-74.3968 -687.869 136.949";rotation = "-0.707104 -0.0018084 0.707107 179.793";scale = "2.52099 8.0201 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7698 -688.009 137.189";rotation = "-0.579313 0.576362 0.576371 119.831";scale = "0.125 0.166666 79.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7903 -684.009 137.188";rotation = "-0.579311 0.576365 0.57637 119.831";scale = "0.125 0.166666 79.0018";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7645 -689.291 137.188";rotation = "-0.579307 0.576368 0.576371 119.832";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.3925 -713.36 133.988";rotation = "0.999994 0.00254215 -0.00253336 89.9997";scale = "9.87502 0.166667 79.001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7979 -682.509 137.188";rotation = "-0.57931 0.576365 0.576372 119.832";scale = "0.125 0.166666 79.0016";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7573 -690.509 137.188";rotation = "-0.579313 0.576358 0.576376 119.83";scale = "0.125 0.166666 79.0018";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.1285 -687.59 136.938";rotation = "0.705311 0.708898 8.98593e-07 180";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.8053 -681.275 137.188";rotation = "-0.579307 0.576368 0.576371 119.832";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-70.531 -693.34 134.038";rotation = "0 0 1 181.909";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7498 -692.009 137.189";rotation = "-0.579314 0.576359 0.576373 119.83";scale = "0.125 0.166666 79.0022";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-66.7312 -697.854 133.948";rotation = "0.575414 0.578318 -0.578314 120.166";scale = "7.52009 4.52 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "StationInventory";position = "-70.3699 -696.16 129.438";rotation = "0 0 1 178.052";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.8109 -680.009 137.188";rotation = "-0.579309 0.576369 0.576367 119.831";scale = "0.125 0.166666 79.0016";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7444 -693.241 137.188";rotation = "-0.579307 0.576368 0.576371 119.832";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-64.5385 -688.021 124.438";rotation = "0 0 1 231.533";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-66.3673 -687.831 136.949";rotation = "0.579304 -0.576373 0.576369 119.832";scale = "8.01809 2.52099 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.8183 -678.51 137.188";rotation = "-0.579309 0.576368 0.576369 119.832";scale = "0.125 0.166666 79.0018";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.0927 -673.88 129.688";rotation = "-0.576373 -0.579304 0.57637 119.833";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.585 -696.13 136.938";rotation = "0.708896 -0.705313 -8.94049e-07 180";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7368 -694.509 137.188";rotation = "-0.579315 0.576354 0.576377 119.83";scale = "0.125 0.166666 79.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-70.4926 -693.613 120.937";rotation = "-0.00253803 0.999997 3.82304e-06 179.999";scale = "9.87502 13.1668 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-70.9415 -694.612 137.539";rotation = "0.998633 0.0522707 6.62578e-08 180";scale = "0.2 0.2 0.2";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "16";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-70.9415 -694.612 137.839";rotation = "-4.84679e-05 -1.22512e-12 -1 5.99235";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.0928 -673.88 130.188";rotation = "0.578326 -0.575397 0.578323 239.832";scale = "0.125 0.166666 3.00004";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-66.3239 -696.329 134.428";rotation = "-0.00179544 0.707104 0.707107 179.795";scale = "8.02001 2.52099 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.97 -698.13 129.438";rotation = "0 0 1 89.7091";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.0927 -673.88 130.707";rotation = "-0.576373 -0.579304 0.57637 119.833";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.8257 -677.269 137.188";rotation = "-0.579307 0.576368 0.576371 119.832";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-73.7312 -697.889 129.428";rotation = "-0.999994 -0.00253684 -0.00253181 89.9997";scale = "6.52008 4.52 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7293 -696.009 137.188";rotation = "-0.579318 0.576351 0.576377 119.83";scale = "0.125 0.166666 79.0022";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-71.2525 -698.06 134.338";rotation = "0.709107 0.705101 8.93779e-07 180";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";nametoset = "3rd Floor";frequency = "27";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-71.2525 -698.06 134.838";rotation = "-3.07254e-06 -7.95821e-13 -1 89.6753";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.094 -673.63 132.938";rotation = "0.999997 0.00253718 3.21611e-09 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-69.8458 -697.965 134.338";rotation = "0.00738622 0.999973 1.26756e-06 180";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";nametoset = "Top Floor";frequency = "16";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-69.8458 -697.965 134.838";rotation = "1.27699e-06 -3.46142e-12 1 180.847";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.344 -673.712 129.188";rotation = "0.707107 0.00179703 0.707104 179.794";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-67.0932 -673.845 129.688";rotation = "0.578326 -0.575395 0.578325 239.832";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.8313 -676.01 137.188";rotation = "-0.579308 0.576372 0.576366 119.832";scale = "0.125 0.166666 79.0018";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "-67.3333 -673.836 129.428";rotation = "-0.00179867 0.707104 0.707107 179.795";scale = "6.51959 3.52 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-67.0933 -673.845 130.188";rotation = "0.578328 -0.575393 0.578325 239.832";scale = "0.125 0.166666 3.00004";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.97 -698.095 133.938";rotation = "0.708882 -0.705328 -8.94063e-07 180";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.8445 -673.511 133.033";rotation = "0.707107 0.00179633 -0.707104 180.206";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.0851 -696.088 134.438";rotation = "0 0 -1 90.2907";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-67.0932 -673.845 130.673";rotation = "0.578326 -0.575395 0.578325 239.832";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7235 -697.345 137.188";rotation = "-0.579307 0.576368 0.576371 119.832";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-70.5942 -673.613 128.938";rotation = "0.999997 0.00253335 4.54173e-07 180";scale = "9.87502 0.166667 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.3338 -675.631 129.688";rotation = "-0.579304 0.576368 0.576374 119.833";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3463 -673.51 134.088";rotation = "0.575393 0.578323 0.578331 239.833";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-67.0945 -673.595 129.438";rotation = "0 0 1 179.709";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.8388 -674.51 137.188";rotation = "-0.579307 0.576371 0.576368 119.833";scale = "0.125 0.166666 79.0016";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.3364 -675.131 130.188";rotation = "-0.579301 0.576371 0.576373 119.832";scale = "0.125 0.166666 31.9998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7167 -698.509 137.188";rotation = "-0.579316 0.576351 0.576379 119.829";scale = "0.125 0.166666 79.0024";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.3389 -674.631 130.707";rotation = "-0.579304 0.576368 0.576374 119.833";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-75.7747 -698.978 124.438";rotation = "0 0 1 41.8761";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.344 -673.711 130.688";rotation = "0.707107 0.00179464 0.707104 179.795";scale = "0.625 0.166666 32.0004";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-70.301 -701.728 129.838";rotation = "-0.0107661 0.999942 1.26752e-06 180";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";nametoset = "Basement";frequency = "17";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-70.301 -701.728 129.838";rotation = "1.25402e-06 -2.64619e-12 1 178.766";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3523 -672.075 135.072";rotation = "0.677555 0.282666 0.678984 211.203";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.8444 -673.513 120.687";rotation = "-0.575393 -0.578322 0.578331 239.833";scale = "0.125 0.166666 79.0002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7088 -700.009 137.188";rotation = "-0.579319 0.576348 0.576379 119.829";scale = "0.125 0.166666 79.0022";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3532 -671.961 137.191";rotation = "0.57539 0.578331 0.578325 239.832";scale = "0.999022 0.166666 79.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.7036 -701.258 137.188";rotation = "-0.579307 0.576368 0.576371 119.832";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.8958 -675.955 129.688";rotation = "-0.00179033 0.70711 -0.707101 180.206";scale = "0.125 0.166666 74.997";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3602 -670.485 136.663";rotation = "0.67755 0.28267 0.678987 211.203";scale = "0.249962 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-89.349 -675.457 130.188";rotation = "0.00179949 -0.707103 0.707108 179.795";scale = "0.125 0.166666 75.997";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-89.7223 -674.959 130.707";rotation = "-0.00179033 0.70711 -0.707101 180.206";scale = "0.125 0.166666 76.997";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.8343 -675.594 129.688";rotation = "0.579305 -0.57637 0.576371 119.832";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6962 -702.508 137.188";rotation = "-0.579318 0.576347 0.576381 119.828";scale = "0.125 0.166666 79.0024";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.8369 -675.094 130.188";rotation = "0.579309 -0.57637 0.576367 119.832";scale = "0.125 0.166666 32.0002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3622 -670.215 137.941";rotation = "0.707107 0.00179464 0.707104 179.795";scale = "0.25 0.166666 79.0022";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.5927 -673.963 129.188";rotation = "0.578326 -0.575395 0.578325 239.832";scale = "0.125 0.166666 79.001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3915 -713.465 130.688";rotation = "0.57637 0.579309 0.576367 119.832";scale = "0.625 0.166666 79.001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.8394 -674.594 130.673";rotation = "0.579305 -0.57637 0.576371 119.832";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-70.0285 -702.789 124.438";rotation = "0 0 1 1.8583";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.5928 -674.011 133.692";rotation = "0.578328 -0.575393 0.578325 239.832";scale = "0.375023 0.166666 78.915";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-63.9566 -700.544 124.438";rotation = "0 0 -1 50.9476";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-90.5926 -673.965 124.938";rotation = "-0.576374 -0.5793 0.576372 119.832";scale = "1.99999 0.166667 79.001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.7925 -673.964 134.088";rotation = "0.00178761 -0.707103 0.707108 179.794";scale = "0.125 0.166666 79.013";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.8445 -673.596 130.688";rotation = "0.707107 0.00179703 0.707104 179.794";scale = "0.625 0.166666 32.0004";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6887 -704.008 137.188";rotation = "-0.579321 0.576344 0.576381 119.828";scale = "0.125 0.166666 79.0024";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.5928 -673.965 120.688";rotation = "-0.576368 -0.579309 0.57637 119.833";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6832 -705.284 137.188";rotation = "-0.579307 0.576368 0.576371 119.832";scale = "0.125 0.166666 78.9998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.2422 -693.712 148.688";rotation = "0.707107 0.00179703 0.707104 179.794";scale = "0.125 13.4998 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.0258 -713.478 135.072";rotation = "0.279492 0.679645 0.678209 148.404";scale = "0.125 0.166666 79.015";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.142 -713.477 137.192";rotation = "0.57637 0.579309 0.576367 119.832";scale = "0.125 1.33335 79.011";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6756 -706.508 137.188";rotation = "-0.579321 0.576346 0.576379 119.828";scale = "0.125 0.166666 79.0026";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.594 -673.715 128.938";rotation = "-0.00254138 0.999997 1.26759e-06 180";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3617 -670.216 144.191";rotation = "0.707107 0.00180114 0.707104 179.794";scale = "2.37525 0.166666 79.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3463 -673.21 134.188";rotation = "0.5754 0.578324 -0.578321 120.169";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.095 -673.464 134.188";rotation = "0.00178832 -0.707103 0.707108 179.794";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-52.361 -675.77 129.688";rotation = "-0.999994 -0.0025387 -0.00254267 90.0008";scale = "0.125 0.166666 74.997";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.8103 -673.977 136.656";rotation = "-0.862623 -0.35987 0.355494 98.3163";scale = "0.249805 0.166666 79.015";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-51.8893 -675.268 130.188";rotation = "-0.999994 -0.00254562 -0.00254265 90.0008";scale = "0.125 0.166666 75.995";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6682 -708.008 137.188";rotation = "-0.579322 0.576341 0.576383 119.828";scale = "0.125 0.166666 79.0024";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-51.485 -674.766 130.673";rotation = "-0.999994 -0.0025387 -0.00254267 90.0008";scale = "0.125 0.166666 76.995";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.594 -673.713 128.938";rotation = "0 0 1 179.709";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-94.0929 -673.981 137.942";rotation = "0.578327 -0.575394 0.578325 239.832";scale = "0.25 0.166666 79.019";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.5976 -672.961 134.188";rotation = "-0.000976808 0.382686 0.923878 179.732";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.5956 -673.465 137.192";rotation = "0.999994 0.00254388 -0.00254757 90.0008";scale = "0.125 0.166666 7.0001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.3437 -673.715 134.188";rotation = "-0.358993 0.357184 0.86229 98.1701";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.3925 -713.259 129.188";rotation = "-0.578324 0.575394 0.578329 239.832";scale = "0.125 0.166666 78.999";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.5934 -673.76 130.688";rotation = "0.578327 -0.575394 0.578325 239.832";scale = "0.625 0.166666 78.999";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.5954 -673.465 137.942";rotation = "0.576369 0.579311 0.576366 119.832";scale = "0.25 0.166666 6.00008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.6106 -670.361 148.691";rotation = "0.578329 -0.575391 0.578327 239.831";scale = "0.125 13.5004 5.99604";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.8445 -673.716 137.192";rotation = "-0.575391 -0.578324 0.57833 239.832";scale = "0.125 0.166666 7.00008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.8445 -673.717 137.942";rotation = "-0.00254638 0.999994 -0.00254636 90.0012";scale = "0.25 0.166666 6.00008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.5935 -673.76 133.688";rotation = "0.578328 -0.575393 0.578325 239.832";scale = "0.375 0.166666 78.999";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-50.5928 -673.761 124.938";rotation = "-0.576374 -0.5793 0.576373 119.833";scale = "2.00025 0.166667 79.001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6627 -709.307 137.188";rotation = "-0.579307 0.576368 0.576371 119.832";scale = "0.125 0.166666 78.9998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.3935 -673.758 134.088";rotation = "-0.999994 -0.00254562 -0.00254266 90.0008";scale = "0.125 0.166666 78.999";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-51.1327 -695.538 123.367";rotation = "0.575408 0.57832 0.578317 239.833";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "17";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-51.1327 -695.538 123.367";rotation = "-0.575406 -0.578318 0.578322 239.833";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.3926 -713.261 120.687";rotation = "0.999994 0.0025309 -0.00254485 90.0007";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-52.4285 -711.676 129.688";rotation = "-0.579308 0.576369 0.57637 119.833";scale = "0.125 0.166666 72.0716";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6551 -710.508 137.188";rotation = "-0.579323 0.576342 0.57638 119.827";scale = "0.125 0.166666 79.003";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-51.9514 -712.203 130.188";rotation = "-0.57931 0.576363 0.576373 119.832";scale = "0.125 0.166666 73.921";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-48.9461 -673.75 135.086";rotation = "-0.863086 0.354928 -0.359317 98.5258";scale = "0.125 0.166666 78.999";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-94.0932 -673.98 144.192";rotation = "0.578328 -0.575391 0.578327 239.831";scale = "2.375 0.166666 79.021";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-51.5424 -712.662 130.673";rotation = "-0.579308 0.576369 0.57637 119.833";scale = "0.125 0.166666 75.4766";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.5944 -673.511 120.937";rotation = "0 0 -1 90.2907";scale = "0.125 0.166666 16.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.5954 -673.465 143.942";rotation = "0.576369 0.579311 0.576366 119.832";scale = "2.25 0.166666 6.00008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-48.6427 -713.249 137.195";rotation = "0.999994 0.0025448 -0.00253003 90.0008";scale = "1.00011 0.166666 78.9972";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.5927 -673.963 148.688";rotation = "0.578326 -0.575395 0.578325 239.832";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.8468 -673.01 134.188";rotation = "0.575395 0.578324 0.578327 239.832";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6474 -712.008 137.188";rotation = "-0.579324 0.576338 0.576384 119.827";scale = "0.125 0.166666 79.0034";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.8447 -673.733 143.942";rotation = "0.707103 0.00180057 0.707108 179.794";scale = "2.25 0.166666 6.00108";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.0935 -673.758 134.188";rotation = "0.999994 0.00254267 -0.00254563 90.0007";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.612 -670.215 137.442";rotation = "0 0 -1 90.2918";scale = "0.125 0.166666 23";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.1407 -713.712 129.188";rotation = "0.00254196 -0.999994 -0.002545 90.0008";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6412 -713.51 130.688";rotation = "-0.00253718 0.999994 -0.00253717 90.0008";scale = "0.625 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6413 -713.51 133.693";rotation = "-0.579303 0.57637 0.576373 119.832";scale = "0.125 0.50333 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-90.1408 -713.712 124.938";rotation = "0.00253403 -0.999994 -0.00253946 90.0007";scale = "1.99999 0.166667 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.5945 -673.51 148.438";rotation = "0.999997 0.00254088 3.22079e-09 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-94.0945 -673.73 137.442";rotation = "0 0 1 179.708";scale = "0.125 0.166666 23";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.7427 -693.733 148.692";rotation = "0.707107 0.00180057 0.707104 179.794";scale = "0.125 13.5039 6.00068";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.5981 -672.759 134.188";rotation = "0.999978 0.00254526 -0.00612567 45.0011";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.1676 -713.245 136.663";rotation = "-0.282673 0.67755 0.678986 211.201";scale = "0.250158 0.166666 78.999";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.5951 -673.26 137.188";rotation = "0.999994 0.00254049 -0.00253494 90.0008";scale = "0.125 0.166666 7.0001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.5954 -673.26 137.938";rotation = "0.576373 0.579303 0.57637 119.832";scale = "0.25 0.166666 6.00008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.093 -673.742 137.945";rotation = "0.578325 -0.575398 0.578323 239.832";scale = "0.25 0.166666 78.995";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6365 -714.437 134.375";rotation = "-0.359873 0.862619 0.3555 98.3173";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-49.8448 -673.507 134.188";rotation = "-0.355827 -0.357637 -0.863414 98.6735";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.1408 -713.713 120.688";rotation = "0.579305 -0.576377 0.576364 119.832";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.3438 -673.508 137.938";rotation = "0.707107 0.00179464 0.707104 179.795";scale = "0.25 0.166666 6.00008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.3438 -673.509 137.188";rotation = "0.579304 -0.576367 0.576375 119.832";scale = "0.125 0.166666 7.00008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.1322 -715.345 135.082";rotation = "0.679641 -0.279496 0.678211 148.403";scale = "0.125 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.1317 -715.466 137.193";rotation = "0.579322 -0.576366 0.576358 119.832";scale = "1.00175 0.166666 78.9998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.5954 -673.26 143.938";rotation = "0.576373 0.579303 0.57637 119.832";scale = "2.25 0.166666 6.00008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.0927 -673.741 144.191";rotation = "0.578326 -0.575397 0.578323 239.832";scale = "2.373 0.166666 78.997";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6115 -670.01 137.438";rotation = "0 0 -1 90.2907";scale = "0.125 0.166666 23";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.3446 -673.508 143.938";rotation = "0.707107 0.00179464 0.707104 179.795";scale = "2.25 0.166666 6.00148";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6247 -716.735 136.673";rotation = "-0.359873 0.862619 0.3555 98.3173";scale = "0.249794 0.166666 79";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.1227 -717.216 137.943";rotation = "0.707107 0.00181009 0.707104 179.792";scale = "0.25 0.166666 78.9998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.2422 -693.492 148.691";rotation = "-0.00253718 0.999994 -0.00253717 90.0008";scale = "0.125 13.4982 6.00148";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.0938 -673.495 137.438";rotation = "0 0 -1 0.29074";scale = "0.125 0.166666 23";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3908 -713.715 120.938";rotation = "0 0 1 89.7091";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.8921 -713.47 134.181";rotation = "-0.00179851 0.707107 -0.707104 180.206";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.1382 -714.21 134.198";rotation = "-0.579304 0.57637 0.576371 119.832";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3907 -713.713 148.438";rotation = "0.708903 -0.705306 -8.9404e-07 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.1408 -713.721 134.181";rotation = "-0.358996 0.357175 0.862292 98.1694";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.6406 -713.721 137.192";rotation = "-0.579305 0.576371 0.576369 119.831";scale = "0.125 0.166666 6.99988";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6234 -716.985 144.195";rotation = "-0.00253816 0.999994 -0.00253815 90.0008";scale = "2.37626 0.166666 78.9994";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.6406 -713.722 137.942";rotation = "-0.00254638 0.999994 -0.00254636 90.0012";scale = "0.25 0.166666 5.99988";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3869 -714.461 134.198";rotation = "0.00097451 -0.382686 0.923878 179.731";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3892 -713.97 137.942";rotation = "0.578332 -0.575385 0.578329 239.831";scale = "0.25 0.166666 6.00008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3894 -713.97 137.192";rotation = "-0.999993 -0.00256557 -0.00254118 89.9997";scale = "0.125 0.166666 7.0001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.3743 -716.849 148.697";rotation = "0.576366 0.579316 0.576364 119.831";scale = "0.125 13.5 6.01606";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.3913 -713.511 120.937";rotation = "0 0 -1 0.29074";scale = "0.125 0.166666 16.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.6406 -713.722 143.942";rotation = "-0.00254746 0.999994 -0.00254638 90.0007";scale = "2.25 0.166666 5.99968";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-49.8926 -713.257 134.188";rotation = "-0.999994 -0.00254562 -0.00254265 90.0008";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.6387 -714.01 134.198";rotation = "0.579303 -0.576374 0.57637 119.833";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3738 -716.969 143.942";rotation = "0.576365 0.579314 0.576368 119.829";scale = "2.25 0.166666 6.014";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.3912 -713.509 148.438";rotation = "0.999997 0.00254076 3.22064e-09 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.8905 -713.74 137.442";rotation = "0 0 1 179.708";scale = "0.125 0.166666 23";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-49.6413 -713.506 134.188";rotation = "0.358995 -0.357178 0.862291 98.1692";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.1412 -713.508 137.948";rotation = "0.707107 0.00179464 0.707104 179.795";scale = "0.25 0.166666 6.00008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.1412 -713.509 137.198";rotation = "0.575393 0.578324 0.578329 239.833";scale = "0.125 0.166666 7.00008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.3874 -714.259 134.198";rotation = "-0.999978 -0.00254401 -0.00611186 45.0011";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3725 -717.22 137.442";rotation = "0 0 1 89.7074";scale = "0.125 0.166666 23";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.39 -713.76 137.948";rotation = "0.578326 -0.575397 0.578323 239.832";scale = "0.25 0.166666 5.92";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.3899 -713.76 137.198";rotation = "-0.999994 -0.0025292 -0.00254868 90.0008";scale = "0.125 0.166666 7.0001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.1412 -713.492 143.948";rotation = "-0.00253718 0.999994 -0.00253717 90.0008";scale = "2.25 0.166666 6.00008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.375 -716.721 143.948";rotation = "0.576371 0.579305 0.57637 119.832";scale = "2.25 0.166666 5.92208";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.8912 -713.49 137.448";rotation = "0 0 -1 0.29074";scale = "0.125 0.166666 23";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.3735 -716.97 137.448";rotation = "0 0 1 89.7091";scale = "0.125 0.166666 23";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.344 -673.61 148.938";rotation = "0 0 1 89.7086";scale = "0.125 13.3333 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.4935 -693.465 148.938";rotation = "0 0 1 179.709";scale = "0.125 13.3342 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.4915 -693.76 148.938";rotation = "0 0 1 89.7086";scale = "9.99963 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.641 -713.61 148.938";rotation = "0 0 1 89.7086";scale = "0.125 13.3334 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-64.1214 -693.821 243.938";rotation = "0 0 1 91.5879";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.4928 -693.612 248.338";rotation = "0.00168598 -1.84164e-05 -0.999999 0.256409";scale = "9.875 13.1667 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-70.0768 -694.683 248.938";rotation = "-0.0173004 0.99985 1.2674e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "27";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-70.0768 -694.683 249.238";rotation = "1.24585e-06 7.765e-13 1 178.017";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.8484 -672.866 248.688";rotation = "0.579307 -0.576365 0.576373 119.832";scale = "0.125 0.166666 81.0002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.354 -671.649 248.689";rotation = "-0.579307 0.576366 0.576373 119.826";scale = "0.125 0.166666 81";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-70.0919 -689.29 248.638";rotation = "0 0 1 2.01588";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.8335 -675.8 248.688";rotation = "-0.00254137 0.999994 -0.00254136 90.0008";scale = "0.125 1.49969 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.9063 -661.485 248.688";rotation = "0.579307 -0.576365 0.576373 119.832";scale = "0.125 0.166666 80.999";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.4928 -693.612 248.838";rotation = "0 0 -1 0.256409";scale = "25 33.3333 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.9134 -660.076 248.688";rotation = "0.579307 -0.576365 0.576373 119.832";scale = "0.125 0.166666 80.9988";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3437 -673.71 250.938";rotation = "0.707107 0.00179963 0.707104 179.794";scale = "0.5 0.166666 79.0002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.3341 -675.49 248.688";rotation = "-0.579306 0.576369 0.576371 119.826";scale = "1.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.9199 -658.801 248.688";rotation = "0.579307 -0.576365 0.576373 119.832";scale = "0.125 0.166666 80.9986";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-94.883 -666.071 248.688";rotation = "0.707103 0.0017986 0.707108 179.794";scale = "0.125 4.99999 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.5939 -673.714 248.938";rotation = "0 0 1 89.7086";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.3924 -713.359 252.688";rotation = "-0.00180747 0.707111 0.7071 179.796";scale = "9.87502 0.166667 78.993";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.3843 -665.739 248.688";rotation = "-0.707082 -0.00180014 0.707129 179.79";scale = "0.125 4.99999 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.5943 -673.51 248.938";rotation = "0 0 -1 0.29074";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.1409 -713.71 250.938";rotation = "0.707107 0.00179464 0.707104 179.795";scale = "0.5 0.166666 79.0006";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.3908 -713.71 248.938";rotation = "0 0 -1 0.29074";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-94.661 -660.568 248.938";rotation = "0 0 1 89.7086";scale = "1.25 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.391 -713.509 248.938";rotation = "0 0 1 89.7086";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.6646 -659.85 248.938";rotation = "0 0 1 89.7051";scale = "1.25 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2205246/Buildings/22.cs b/Univ/Data/2205246/Buildings/22.cs new file mode 100644 index 0000000..3047425 --- /dev/null +++ b/Univ/Data/2205246/Buildings/22.cs @@ -0,0 +1,244 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Castiger" +// Created in mission "FDPretty" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "19.3366 -211.101 129.319";rotation = "-0.00293192 -0.00830612 0.999961 218.883";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "24.0541 -187.242 129.676";rotation = "-0.00293192 -0.00830612 0.999961 218.883";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "15.3572 -234.837 129.097";rotation = "0.00519616 0.00519614 -0.999973 90.0019";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "22.4044 -191.114 227.75";rotation = "0.801909 -0.59734 0.0112979 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "35.6867 -169.119 129.997";rotation = "-0.00231913 -0.00681847 0.999974 217.568";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "23.3365 -194.233 227.75";rotation = "0.801909 -0.59734 0.0112979 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "24.7675 -199.021 227.75";rotation = "0.801909 -0.59734 0.0112979 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "27.0034 -189.739 227.931";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "25.9863 -203.099 227.75";rotation = "0.801909 -0.59734 0.0112979 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "37.5931 -208.231 129.546";rotation = "-0.00293192 -0.00830612 0.999961 218.883";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "4.31455 -283.551 132.982";rotation = "-1.64035e-06 1 2.70567e-07 90.5955";scale = "50 66.6666 1";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "30.439 -188.713 228.067";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "20.5924 -254.035 129.152";rotation = "0.00519616 0.00519614 -0.999973 90.0019";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "27.7447 -208.983 227.75";rotation = "0.801909 -0.59734 0.0112979 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.6924 -228.63 228.076";rotation = "-0.115985 0.700391 0.704273 169.78";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "29.2198 -213.919 227.75";rotation = "0.801909 -0.59734 0.0112979 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "34.401 -187.529 228.223";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "37.3496 -225.043 129.326";rotation = "-0.00293192 -0.00830612 0.999961 218.883";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "29.2378 -248.275 129.242";rotation = "0.00519616 0.00519614 -0.999973 90.0019";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "30.8154 -219.257 227.75";rotation = "0.801909 -0.59734 0.0112979 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "39.9588 -185.868 228.443";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "32.5665 -225.117 227.75";rotation = "0.801909 -0.59734 0.0112979 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.5496 -190.473 228.085";rotation = "0.458995 0.616232 0.639985 230.974";scale = "0.125 0.166666 79.0002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "34.1679 -229.346 227.763";rotation = "0.801923 -0.59732 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "45.2287 -184.293 228.651";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "35.3969 -234.587 227.75";rotation = "0.801954 -0.597279 0.0112967 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "57.1152 -184.794 130.006";rotation = "-0.00231913 -0.00681847 0.999974 217.568";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "48.4075 -183.343 228.777";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.8491 -145.699 134.554";rotation = "-0.932955 -0.246526 -0.262336 95.6708";scale = "50 66.6666 1";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "41.8086 -227.062 228.064";rotation = "0.801923 -0.59732 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "49.177 -203.987 229.083";rotation = "-0.144694 0.989473 0.00273796 182.144";scale = "9.875 13.1666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "58.0939 -210.597 129.728";rotation = "-0.00293192 -0.00830612 0.999961 218.883";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "37.912 -243.002 227.75";rotation = "0.801954 -0.597279 0.0112967 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "45.4029 -248.914 129.41";rotation = "0.00519616 0.00519614 -0.999973 90.0019";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "53.6369 -181.78 228.983";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "65.2471 -152.175 130.427";rotation = "-0.00231913 -0.00681847 0.999974 217.568";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.8355 -229.108 228.076";rotation = "-0.0896684 0.706204 -0.702307 193.268";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "40.1333 -250.435 227.75";rotation = "0.801954 -0.597279 0.0112967 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "49.2663 -224.833 228.359";rotation = "0.801923 -0.59732 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "58.1501 -180.431 229.161";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "51.097 -206.946 229.121";rotation = "-0.0253794 0.0189019 0.999499 73.3827";scale = "10 10 10";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "60.707 -179.684 229.263";rotation = "0.801926 -0.597316 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.8223 -217.495 229.579";rotation = "-0.14331 0.980011 -0.137991 93.3223";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "42.1738 -257.262 227.75";rotation = "0.801954 -0.597279 0.0112967 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "54.5167 -223.264 228.566";rotation = "0.801923 -0.59732 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "62.0672 -184.236 229.263";rotation = "0.801926 -0.597316 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "62.0991 -230.881 129.584";rotation = "0.00519616 0.00519614 -0.999973 90.0019";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "69.0859 -218.986 170.374";rotation = "0.529872 -0.219478 -0.819186 53.6455";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.9976 -218.638 130.107";rotation = "-0.0189079 -0.00276463 0.999817 163.363";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "68.9497 -218.951 165.626";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "68.8435 -218.983 168.554";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "69.0512 -218.921 162.824";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "69.1659 -218.887 159.662";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "63.9223 -178.705 229.39";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "69.2949 -218.848 156.103";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "69.4 -218.817 153.203";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "69.5308 -218.777 149.595";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "69.6311 -218.748 146.829";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "46.517 -278.738 129.159";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "69.7166 -218.722 144.471";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "69.7927 -218.699 142.37";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "64.0127 -190.745 229.263";rotation = "0.801926 -0.597316 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "69.8756 -218.674 140.083";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "69.9693 -218.646 137.501";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "73.9174 -209.117 170.381";rotation = "-0.0155413 -0.0140275 0.999781 230.852";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.346 -171.643 130.309";rotation = "0.0140822 0.018906 -0.999722 106.654";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "70.0831 -218.612 134.36";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "70.1879 -218.581 131.471";rotation = "0.458993 0.616232 0.639987 230.973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "74.1249 -209.316 166.633";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "74.0527 -209.338 168.623";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "74.2191 -209.288 164.034";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.3664 -208.684 130.41";rotation = "0.0140823 0.0189058 -0.999722 106.655";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "74.3238 -209.257 161.144";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "74.4197 -209.228 158.498";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "74.5307 -209.195 155.437";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "74.6528 -209.158 152.068";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "44.3898 -264.677 227.75";rotation = "0.801954 -0.597279 0.0112967 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "74.7376 -209.133 149.729";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "74.8416 -209.102 146.862";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "60.6183 -221.441 228.807";rotation = "0.801923 -0.59732 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "74.9251 -209.077 144.559";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "75.0024 -209.054 142.426";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "75.0746 -209.032 140.435";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "66.0669 -197.619 229.263";rotation = "0.801926 -0.597316 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "75.1566 -209.008 138.172";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "75.2469 -208.981 135.68";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "75.3223 -208.958 133.6";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.9901 -217.184 229.589";rotation = "0.496392 0.69343 0.522255 112.027";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "77.4268 -216.418 130.15";rotation = "-0.14331 0.980011 -0.137991 93.3223";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "45.2407 -267.524 227.75";rotation = "0.801954 -0.597279 0.0112967 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "75.41 -208.932 131.183";rotation = "-0.979277 -0.143208 -0.143207 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "76.2704 -216.503 164.686";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "76.5079 -216.432 158.136";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.9706 -216.592 172.957";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "69.5719 -177.017 229.613";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "76.7786 -216.351 150.668";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.6613 -216.685 181.488";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "77.6752 -216.344 129.91";rotation = "0.0140822 0.018906 -0.999722 106.654";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "77.0837 -216.26 142.253";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "76.4148 -216.982 164.654";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.3803 -216.769 189.24";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "76.6606 -216.908 157.872";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "67.7784 -203.345 229.263";rotation = "0.801926 -0.597316 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "76.117 -217.071 172.868";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "77.5946 -216.107 130.16";rotation = "0.496392 0.69343 0.522255 112.027";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "76.9305 -216.827 150.428";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "77.3073 -216.193 136.084";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.8163 -217.16 181.161";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.1327 -216.843 196.069";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "77.2298 -216.738 142.172";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.5274 -217.247 189.13";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "77.5193 -216.13 130.235";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.6489 -242.306 228.584";rotation = "-0.0189032 -0.00276621 0.999817 163.364";scale = "9.87492 13.1666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "77.4587 -216.67 135.858";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "74.8642 -216.923 203.477";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.2908 -217.317 195.656";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "77.6662 -216.608 130.132";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "55.8809 -242.767 228.907";rotation = "-0.0253794 0.0189019 0.999499 73.3827";scale = "10 10 10";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "59.178 -272.599 129.223";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "67.6694 -254.06 129.416";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "74.6502 -216.987 209.379";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "78.479 -224.192 168.951";rotation = "-0.102855 0.703357 0.703356 168.255";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "78.7016 -224.126 162.812";rotation = "-0.102855 0.703357 0.703356 168.255";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "48.061 -293.239 129.008";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "78.8447 -224.083 158.863";rotation = "-0.102855 0.703357 0.703356 168.255";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.0073 -217.402 203.478";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "67.6107 -219.351 229.083";rotation = "0.801923 -0.59732 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "78.9904 -224.039 154.846";rotation = "-0.102855 0.703357 0.703356 168.255";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "79.1174 -224.001 151.341";rotation = "-0.102855 0.703357 0.703356 168.255";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "51.5215 -265.907 227.997";rotation = "0.801922 -0.597322 0.0112975 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "79.2366 -223.966 148.053";rotation = "-0.102855 0.703357 0.703356 168.255";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "70.0119 -210.819 229.263";rotation = "0.801926 -0.597316 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "78.5746 -224.168 170.751";rotation = "0.707118 0.707095 -0.000713476 180.082";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "79.3503 -223.932 144.916";rotation = "-0.102855 0.703357 0.703356 168.255";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.9478 -224.014 130.41";rotation = "-0.0253772 0.0189013 0.999499 73.3884";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "74.7976 -217.465 209.264";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "79.475 -223.894 141.479";rotation = "-0.102855 0.703357 0.703356 168.255";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "77.7377 -216.586 130.16";rotation = "0.613362 -0.475152 0.630886 228.61";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "79.5835 -223.862 138.484";rotation = "-0.102855 0.703357 0.703356 168.255";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "74.3541 -217.076 217.548";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "70.6876 -213.08 229.263";rotation = "0.801926 -0.597316 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "79.6831 -223.832 135.736";rotation = "-0.102855 0.703357 0.703356 168.255";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "83.0694 -194.442 130.342";rotation = "0.0140822 0.018906 -0.999722 106.654";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "79.7747 -223.805 133.21";rotation = "-0.102855 0.703357 0.703356 168.255";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "83.8135 -214.509 165.563";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "83.678 -214.55 169.302";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "79.8539 -223.781 131.025";rotation = "-0.102855 0.703357 0.703356 168.255";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "83.9412 -214.471 162.041";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "84.034 -214.443 159.48";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "74.515 -217.549 217.058";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "84.1744 -214.401 155.608";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "83.5395 -214.628 171.117";rotation = "-0.45597 0.682407 0.571325 221.788";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "84.2759 -214.371 152.808";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "76.7469 -174.873 229.896";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "77.9055 -216.275 130.169";rotation = "0.690071 0.10091 0.716673 168.034";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "74.1138 -217.147 224.176";rotation = "0.979278 0.143202 -0.143202 91.2";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "84.3911 -214.337 149.63";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "84.5193 -214.298 146.094";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "84.6293 -214.265 143.059";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "84.7072 -214.242 140.91";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.3166 -214.06 130.712";rotation = "-0.0187622 0.128231 -0.991567 16.7787";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "84.7991 -214.215 138.375";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "74.2636 -217.624 223.992";rotation = "-0.102855 0.703357 -0.703356 191.745";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "84.8698 -214.194 136.426";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "56.8777 -264.307 228.208";rotation = "0.801922 -0.597322 0.0112975 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "84.9572 -214.167 134.013";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "85.0557 -214.138 131.296";rotation = "-0.695187 0.517807 0.498589 112.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "80.7535 -228.393 129.72";rotation = "-0.00414464 -0.0150329 0.999878 210.824";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "73.3175 -221.88 229.263";rotation = "0.801935 -0.597305 0.0112972 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.8473 -179.027 229.598";rotation = "0.458995 0.616232 0.639985 230.974";scale = "0.125 0.166666 78.9992";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.8499 -216.889 229.409";rotation = "0.801954 -0.597279 0.0112967 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "82.2828 -173.218 230.115";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "62.839 -262.525 228.444";rotation = "0.801922 -0.597322 0.0112975 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "68.7955 -274.57 129.202";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.1853 -228.13 229.263";rotation = "0.801935 -0.597305 0.0112972 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.2758 -255.82 229.58";rotation = "-0.695186 0.517809 0.498589 112.405";scale = "0.125 0.166666 78.9992";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "71.2752 -218.256 229.728";rotation = "0.0140823 0.018906 -0.999722 106.654";scale = "5 5 5";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "84.9176 -240.829 129.554";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "81.7665 -215.121 229.642";rotation = "0.801954 -0.597279 0.0112967 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "87.2105 -194.041 230.569";rotation = "0.0140785 0.018906 -0.999722 106.668";scale = "10 10 10";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "77.0418 -234.342 229.263";rotation = "0.801935 -0.597305 0.0112972 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.4746 -192.541 230.595";rotation = "-0.144696 0.989472 0.0027406 182.144";scale = "9.87498 13.1666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "88.1431 -171.467 230.346";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "69.8913 -260.417 228.722";rotation = "0.801922 -0.597322 0.0112975 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "74.1332 -217.663 229.589";rotation = "0.613362 -0.475152 0.630886 228.61";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "78.8436 -240.371 229.263";rotation = "0.801935 -0.597305 0.0112972 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "87.0439 -213.543 229.851";rotation = "0.801954 -0.597279 0.0112967 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "87.5819 -251.049 129.447";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "101.696 -167.647 131.307";rotation = "0.0140822 0.018906 -0.999722 106.654";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "80.1756 -244.828 229.263";rotation = "0.801935 -0.597305 0.0112972 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "93.2166 -169.951 230.547";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "77.903 -258.023 229.038";rotation = "0.801922 -0.597322 0.0112975 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "74.301 -217.352 229.598";rotation = "0.690071 0.10091 0.716673 168.034";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "103.127 -205.597 130.767";rotation = "-0.0040582 -0.0176068 0.999837 205.954";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "97.3632 -168.711 230.71";rotation = "0.801878 -0.597381 0.0112986 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "90.2466 -261.27 129.341";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "71.01 -301.396 128.923";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "82.7631 -253.486 229.263";rotation = "0.801935 -0.597305 0.0112972 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "94.6584 -211.268 230.151";rotation = "0.801954 -0.597279 0.0112967 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "83.4611 -255.822 229.263";rotation = "0.801935 -0.597305 0.0112972 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "100.382 -172.848 230.775";rotation = "0.801956 -0.597276 0.0112966 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "101.507 -176.612 230.775";rotation = "0.801956 -0.597276 0.0112966 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "98.5662 -210.1 230.306";rotation = "0.801954 -0.597279 0.0112967 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "87.6322 -255.115 229.422";rotation = "0.801924 -0.597319 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "103.347 -182.768 230.775";rotation = "0.801956 -0.597276 0.0112966 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "92.9108 -271.49 129.234";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "98.9464 -230.86 230.095";rotation = "-0.0189035 -0.00276646 0.999817 163.364";scale = "9.87515 13.1666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "104.9 -187.966 230.775";rotation = "0.801956 -0.597276 0.0112966 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.288 -205.739 231.101";rotation = "0.978829 0.162095 -0.124974 90.9089";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "101.186 -229.502 230.691";rotation = "0.0140804 0.018906 -0.999722 106.661";scale = "10 10 10";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "107.027 -195.082 230.775";rotation = "0.801956 -0.597276 0.0112966 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "106.218 -207.813 230.608";rotation = "0.801954 -0.597279 0.0112967 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "108.615 -200.395 230.775";rotation = "0.801956 -0.597276 0.0112966 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "96.5274 -252.457 229.773";rotation = "0.801924 -0.597319 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "95.6775 -282.103 129.124";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "110.285 -205.985 230.775";rotation = "0.801956 -0.597276 0.0112966 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "100.634 -251.229 229.936";rotation = "0.801924 -0.597319 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "112.196 -212.377 230.775";rotation = "0.801919 -0.597326 0.0112976 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.574 -244.374 231.092";rotation = "-0.695187 0.517808 0.498588 112.405";scale = "0.125 0.166666 79.0014";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "126.138 -189.236 131.64";rotation = "-0.0040582 -0.0176068 0.999837 205.954";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "98.3421 -292.324 129.017";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "105.831 -249.676 230.141";rotation = "0.801924 -0.597319 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "114.103 -218.758 230.775";rotation = "0.801919 -0.597326 0.0112976 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "127.645 -164.818 132.279";rotation = "0.0140822 0.018906 -0.999722 106.654";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "95.615 -303.893 128.938";rotation = "0 0 1 171.974";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.431 -206.217 231.101";rotation = "-0.979055 -0.124312 -0.161238 91.5294";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "116.716 -227.503 230.775";rotation = "0.801919 -0.597326 0.0112976 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "135.282 -157.574 136.637";rotation = "-0.934626 0.266401 0.235595 95.0508";scale = "50 66.6666 1";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "96.2525 -309.393 132.938";rotation = "0.548195 0.631638 0.548193 115.444";scale = "50 66.6666 1";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "113.339 -247.432 230.437";rotation = "0.801924 -0.597319 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "101.604 -302.833 128.938";rotation = "0 0 1 165.388";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "117.519 -246.183 230.602";rotation = "0.801924 -0.597319 0.0112974 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "119.912 -238.196 230.775";rotation = "0.801919 -0.597326 0.0112976 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "121.56 -243.709 230.775";rotation = "0.801919 -0.597326 0.0112976 178.262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "143.381 -179.045 132.229";rotation = "-0.0040582 -0.0176068 0.999837 205.954";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "155.896 -199.471 131.743";rotation = "-0.00255844 -0.016598 0.999859 197.523";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "146.94 -269.687 129.674";rotation = "-0.00414464 -0.0150329 0.999878 210.824";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "164.659 -218.781 131.219";rotation = "-0.00255844 -0.016598 0.999859 197.523";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.905 -248.517 134.856";rotation = "-0.721344 -0.479734 -0.499517 109.419";scale = "50 66.6666 1";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2205246/Buildings/3.cs b/Univ/Data/2205246/Buildings/3.cs new file mode 100644 index 0000000..de97f7d --- /dev/null +++ b/Univ/Data/2205246/Buildings/3.cs @@ -0,0 +1,165 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Castiger" +// Created in mission "FlatdashHell" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "StationInventory";position = "-72.6018 -511.616 128.938";rotation = "0 0 1 134.263";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-77.078 -507.875 123.938";rotation = "0 0 -1 74.3338";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-50.2531 -521.087 148.688";rotation = "0.92426 0.352705 -0.146094 138.102";scale = "2.5 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-55.0631 -515.214 141.457";rotation = "-0.144503 0.378668 0.914182 141.537";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "73.8";nametoset = "The Arena, ask Castiger for a key.";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-51.415 -522.46 148.438";rotation = "-0.35653 0.934284 1.18429e-06 180";scale = "19.8748 0.166666 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-81.0598 -548.942 148.688";rotation = "0.301743 0.674145 0.674151 213.581";scale = "0.125 0.166666 159.001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-36.3872 -517.936 128.938";rotation = "0 0 1 203.033";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-38.4446 -524.786 128.938";rotation = "0 0 1 89.9292";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-42.1372 -530.343 128.938";rotation = "0 0 1 227.171";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "-52.1508 -537.603 128.938";rotation = "0 0 1 121.629";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-31.132 -525.056 128.938";rotation = "0 0 -1 48.0264";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "-38.1042 -536.221 128.938";rotation = "0 0 1 235.915";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-41.7261 -541.194 128.938";rotation = "0 0 1 179.572";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "-26.3965 -520.328 128.938";rotation = "0 0 1 222.182";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "-58.9962 -548.363 128.938";rotation = "0 0 1 137.658";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-81.2457 -549.11 148.437";rotation = "0.408538 0.912741 1.15698e-06 180";scale = "0.125 0.166666 38.998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-22.0492 -501.094 128.938";rotation = "0 0 1 191.795";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.99";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-80.9081 -549.129 148.448";rotation = "-1.5759e-06 7.31835e-07 1 48.2257";scale = "119.52 79.5217 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-20.0191 -512.699 128.938";rotation = "0 0 1 186.549";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-21.5839 -495.813 128.938";rotation = "0 0 -1 41.7745";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "-18.8605 -506.555 128.938";rotation = "0 0 1 147.738";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "-27.4068 -534.333 128.938";rotation = "0 0 -1 114.692";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-20.2198 -523.603 128.938";rotation = "0 0 -1 99.7061";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-17.4192 -512.569 128.938";rotation = "0 0 1 225.896";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "-21.6034 -496.151 148.448";rotation = "1.0728e-06 -6.00694e-06 1 138.225";scale = "79.5215 119.521 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.9";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "-19.8188 -527.362 128.938";rotation = "0 0 -1 108.979";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "-45.1156 -552.053 128.938";rotation = "0 0 1 137.379";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-34.3042 -547.596 128.938";rotation = "0 0 1 217.476";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-49.9959 -557.238 128.938";rotation = "0 0 1 144.234";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-20.9558 -532.596 128.938";rotation = "0 0 1 43.8133";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "-56.2693 -558.204 128.938";rotation = "0 0 1 112.467";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-12.9863 -513.007 128.938";rotation = "0 0 -1 90.8837";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.99";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "-12.2932 -520.532 128.938";rotation = "0 0 1 202.912";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-46.2237 -559.34 128.938";rotation = "0 0 1 82.766";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "-35.6742 -553.406 128.938";rotation = "0 0 1 161.718";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "-12.7117 -532.288 128.938";rotation = "0 0 -1 83.7985";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "-24.7943 -548.139 128.938";rotation = "0 0 1 120.767";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-7.49458 -525.732 128.938";rotation = "0 0 1 135.439";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "-49.5937 -565.56 128.938";rotation = "0 0 1 46.0325";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-6.11289 -525.685 128.938";rotation = "0 0 1 211.175";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "-13.8172 -541.638 128.938";rotation = "0 0 -1 63.3743";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-4.27386 -523.859 128.938";rotation = "0 0 -1 29.8714";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-27.7729 -559.506 128.938";rotation = "0 0 1 66.737";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "-36.3002 -563.145 128.938";rotation = "0 0 1 56.0744";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-16.304 -549.039 128.938";rotation = "0 0 1 168.86";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-14.1198 -547.838 128.938";rotation = "0 0 1 134.319";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-3.48888 -531.591 128.938";rotation = "0 0 -1 18.1322";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.99";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-4.7321 -537.027 128.938";rotation = "0 0 1 101.91";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-29.573 -565.735 128.938";rotation = "0 0 1 49.131";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "-45.5493 -575.622 128.938";rotation = "0 0 1 56.8762";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-3.03332 -541.327 128.938";rotation = "0 0 1 164.641";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-17.579 -561.235 128.938";rotation = "0 0 1 229.5";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-32.2279 -573.054 123.938";rotation = "0 0 1 229.446";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "-6.55236 -547.676 128.938";rotation = "0 0 1 3.38909";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-15.1872 -562.396 123.938";rotation = "0 0 1 182.956";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.99";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "5.90905 -530.269 128.938";rotation = "0 0 -1 46.5981";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "-8.73105 -558.076 128.938";rotation = "0 0 1 202.665";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "-31.6811 -573.553 128.938";rotation = "0 0 1 76.3163";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "5.58777 -535.165 128.938";rotation = "0 0 1 164.893";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "-19.6371 -568.089 128.938";rotation = "0 0 1 134.275";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "-40.5372 -584.543 128.938";rotation = "0 0 -1 14.6505";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "1.95113 -546.888 128.938";rotation = "0 0 -1 37.2659";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-8.96672 -564.688 128.938";rotation = "0 0 1 56.6401";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "5.96493 -543.946 128.938";rotation = "0 0 -1 38.1603";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.99";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-0.498782 -555.439 128.938";rotation = "0 0 1 153.215";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "8.45501 -541.588 128.938";rotation = "0 0 -1 105.33";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "-29.312 -580.592 128.938";rotation = "0 0 1 122.514";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "0.574851 -559.595 128.938";rotation = "0 0 1 167.509";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "-1.88839 -565.811 128.938";rotation = "0 0 -1 40.7486";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "-19.405 -578.298 128.938";rotation = "0 0 1 67.4555";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-15.172 -579.708 123.938";rotation = "0 0 1 199.903";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.9";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-41.1464 -592.873 130.643";rotation = "0.301747 0.674147 0.674148 213.581";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "-9.30325 -572.248 128.938";rotation = "0 0 1 156.242";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "9.28993 -551.89 128.938";rotation = "0 0 1 116.197";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-40.0473 -592.227 130.643";rotation = "-0.880028 -0.335823 -0.335819 97.3026";scale = "0.875 0.499999 5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";cankill = "0";canmove = 1;closedscale = "0.874901 0.166666 2.17794";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";openedscale = "0.874901 0.166666 0.1";prevscale = "0.875 0.499999 5";state = "closed";timeout = "0";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-41.2744 -593.855 148.436";rotation = "0.408538 0.912741 1.15698e-06 180";scale = "29.8745 0.166666 38.996";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-40.6876 -594.62 130.865";rotation = "0.301746 0.674148 0.674146 213.581";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Wave 1";SwitchTimer = "60000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "13.998 -549.47 128.938";rotation = "0 0 -1 56.4862";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-39.5207 -595.443 130.643";rotation = "0.301746 0.674148 0.674146 213.581";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.99";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "16.3706 -544.667 128.938";rotation = "0 0 -1 36.1612";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-1.4686 -638.417 148.686";rotation = "-0.26052 0.682686 0.682692 150.796";scale = "0.125 0.166666 240";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-1.46975 -570.79 123.938";rotation = "0 0 -1 118.229";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-5.67497 -575.584 128.938";rotation = "0 0 1 232.928";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "-25.4621 -588.854 128.938";rotation = "0 0 1 227.95";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "18.3881 -540.56 148.438";rotation = "0.912743 -0.408534 -5.17854e-07 180";scale = "29.875 0.166666 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-38.0489 -594.464 130.643";rotation = "-0.880028 -0.335823 -0.335819 97.3026";scale = "0.875 0.499999 5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";cankill = "0";canmove = 1;closedscale = "0.874901 0.166666 1.83448";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";openedscale = "0.874901 0.166666 0.1";prevscale = "0.875 0.499999 5";state = "closed";timeout = "0";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-38.5595 -596.519 130.85";rotation = "0.301746 0.674148 0.674146 213.581";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.9";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Wave 2";SwitchTimer = "60000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "6.27066 -560.869 128.938";rotation = "0 0 -1 0.917698";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "5.25323 -566.292 128.938";rotation = "0 0 1 125.156";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-34.9119 -595.348 130.643";rotation = "-0.844948 0.378193 0.378196 99.6075";scale = "0.125 0.166666 7.0008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-21.4174 -495.999 148.688";rotation = "0.67415 -0.301742 0.674147 213.581";scale = "0.125 0.166666 240";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-36.2365 -596.867 130.643";rotation = "0.260521 -0.682689 0.68269 150.797";scale = "0.875 0.499999 5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";cankill = "0";canmove = 1;closedscale = "0.750123 0.166666 1.94433";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";openedscale = "0.750123 0.166666 0.1";prevscale = "0.875 0.499999 5";state = "closed";timeout = "0";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "19.3144 -547.839 128.938";rotation = "0 0 1 180.951";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "-11.3017 -582.631 128.938";rotation = "0 0 1 135.989";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-36.479 -598.848 130.685";rotation = "0.301746 0.674148 0.674146 213.581";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.99";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Wave 3";SwitchTimer = "60000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "14.0463 -557.405 128.938";rotation = "0 0 -1 52.3172";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "-1.49773 -574.681 128.938";rotation = "0 0 1 18.4457";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.2862 -597.918 130.643";rotation = "-0.844947 0.378192 0.378201 99.607";scale = "0.125 0.166666 6.0012";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "11.3195 -564.034 128.938";rotation = "0 0 -1 16.9896";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.99";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-34.2388 -599.104 130.643";rotation = "0.260524 -0.682688 0.68269 150.797";scale = "0.875 0.499999 5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";cankill = "0";canmove = 1;closedscale = "0.750161 0.166666 1.63625";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";openedscale = "0.750161 0.166666 0.1";prevscale = "0.875 0.499999 5";state = "closed";timeout = "0";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-34.5844 -600.969 130.689";rotation = "0.301746 0.674148 0.674146 213.581";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Wave 4";SwitchTimer = "60000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-1.68099 -580.985 128.938";rotation = "0 0 1 112.94";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "14.5944 -563.972 128.938";rotation = "0 0 -1 95.0417";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.2876 -600.155 130.643";rotation = "-0.844946 0.378193 0.378201 99.607";scale = "0.125 0.166666 6.0015";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "20.8522 -554.356 128.938";rotation = "0 0 -1 20.3024";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "4.57621 -577.739 128.938";rotation = "0 0 1 188.092";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "7.72165 -572.388 128.938";rotation = "0 0 1 142.723";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-9.56862 -590.427 128.938";rotation = "0 0 1 19.0229";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "-3.29682 -585.97 128.938";rotation = "0 0 -1 0.125115";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "-16.1596 -598.927 128.938";rotation = "0 0 -1 94.8509";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "17.076 -572.161 128.938";rotation = "0 0 1 158.961";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "26.1675 -558.188 128.938";rotation = "0 0 1 168.887";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "5.20714 -586.489 128.938";rotation = "0 0 1 238.07";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "26.1556 -561.181 128.938";rotation = "0 0 -1 29.8769";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "12.0414 -579.651 128.938";rotation = "0 0 1 9.38788";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "24.218 -567.007 128.938";rotation = "0 0 -1 64.5065";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "18.9304 -572.996 128.938";rotation = "0 0 -1 115.075";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-2.97395 -596.512 128.938";rotation = "0 0 1 143.41";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "24.1766 -572.445 128.938";rotation = "0 0 -1 42.7251";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.99";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "-7.84957 -606.352 128.938";rotation = "0 0 -1 92.5493";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "24.0309 -579.881 128.938";rotation = "0 0 1 230.383";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "8.49977 -593.855 128.938";rotation = "0 0 1 106.243";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "16.9086 -588.901 128.938";rotation = "0 0 -1 99.2781";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "29.621 -573.522 128.938";rotation = "0 0 1 199.193";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "21.6159 -585.195 128.938";rotation = "0 0 -1 115.075";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "0.736901 -604.717 128.938";rotation = "0 0 -1 34.7937";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "4.2681 -602.501 128.938";rotation = "0 0 -1 3.58179";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "19.7202 -588.616 128.938";rotation = "0 0 1 106.864";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "-12.9472 -615.529 128.938";rotation = "0 0 -1 50.1858";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "31.1472 -578.833 128.938";rotation = "0 0 -1 3.55921";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "37.1276 -574.096 128.938";rotation = "0 0 1 123.14";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "20.9022 -596.305 128.938";rotation = "0 0 1 151.743";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "30.5394 -587.302 128.938";rotation = "0 0 1 13.4473";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "-0.626787 -616.442 128.938";rotation = "0 0 -1 73.6692";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "35.2897 -582.265 128.938";rotation = "0 0 -1 26.5701";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "13.297 -603.528 128.938";rotation = "0 0 1 43.2532";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "42.6515 -578.747 128.938";rotation = "0 0 -1 89.0709";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.99";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-6.73582 -624.712 128.938";rotation = "0 0 1 12.1564";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "20.4655 -608.329 128.938";rotation = "0 0 1 195.194";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "12.7727 -616.618 128.938";rotation = "0 0 -1 118.938";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "28.1832 -603.233 128.938";rotation = "0 0 1 211.855";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "17.9085 -611.259 128.938";rotation = "0 0 1 9.64641";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "33.46 -596.168 128.938";rotation = "0 0 1 77.7727";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "43.1284 -586.37 128.938";rotation = "0 0 1 143.717";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "38.855 -592.454 128.938";rotation = "0 0 -1 19.5937";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.9";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "37.3965 -598.363 128.938";rotation = "0 0 1 39.8587";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "27.3497 -609.029 128.938";rotation = "0 0 1 46.6047";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.99";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "11.2902 -622.515 128.938";rotation = "0 0 -1 86.9125";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "0.793951 -629.368 128.938";rotation = "0 0 -1 90.8682";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "41.8084 -594.674 128.938";rotation = "0 0 1 60.3376";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.99";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "51.0119 -583.08 128.938";rotation = "0 0 -1 16.9403";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.99";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "50.642 -584.655 123.938";rotation = "0 0 1 108.375";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "73.8";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "28.5292 -611.955 148.438";rotation = "-0.35653 0.934284 1.18429e-06 180";scale = "19.875 0.166666 38.998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.1736 -585.472 148.687";rotation = "-0.844952 0.378189 0.378192 99.6081";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "55.1756 -584.862 128.938";rotation = "0 0 1 100.36";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "73.8";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-1.3019 -638.601 148.436";rotation = "-0.35653 0.934284 1.18429e-06 180";scale = "0.125 0.166666 38.996";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-1.284 -638.263 148.446";rotation = "-6.42618e-06 1.4418e-05 -1 41.7741";scale = "42.1256 119.52 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.99";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "-1.284 -638.263 148.446";rotation = "-6.42618e-06 1.4418e-05 -1 41.7741";scale = "79.5215 119.52 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.3601 -585.305 148.437";rotation = "0.912743 -0.408534 -5.17854e-07 180";scale = "0.125 0.166666 38.998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "58.021 -585.286 148.447";rotation = "2.00299e-06 -9.40209e-06 1 228.226";scale = "119.52 37.4053 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.99";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2205246/Buildings/4.cs b/Univ/Data/2205246/Buildings/4.cs new file mode 100644 index 0000000..8b66d27 --- /dev/null +++ b/Univ/Data/2205246/Buildings/4.cs @@ -0,0 +1,298 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Castiger" +// Created in mission "Flatdashsunny" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.2561 -864.155 211.78";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.1048 -867.205 211.783";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.4103 -861.045 211.776";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.9696 -869.929 211.813";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-66.1406 -866.48 211.738";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.6";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Stalkers";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-66.2901 -863.465 211.776";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.77";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Ultra Demons";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.0409 -861.076 209.237";rotation = "0 0 1 87.1601";scale = "10 13.3333 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-46.4893 -862.719 210.137";rotation = "0.998554 -0.0537666 -6.8154e-08 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "17";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-46.4893 -862.719 160.137";rotation = "-4.71175e-05 9.26559e-13 1 6.16319";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-66.0058 -869.197 211.791";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.75";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Air Rapiers";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-66.4515 -860.212 211.7";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Demon Lord";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.8382 -872.579 211.878";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-65.903 -871.273 211.741";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.74";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Demons";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.6449 -881.521 213.737";rotation = "0.567573 0.596426 0.567571 118.374";scale = "2 0.166666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-27.5647 -860.111 217.487";rotation = "-0.596408 0.567583 0.567579 118.377";scale = "9.75 0.166667 77.688";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.7136 -875.09 211.876";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-65.7591 -874.171 211.795";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.73";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Ravengers";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-65.6339 -876.695 211.831";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.72";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Zombie Lords";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.5753 -877.879 211.814";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-65.5187 -879.018 211.831";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.71";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Zombies";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.5863 -879.835 213.737";rotation = "-0.024773 0.999386 -0.024773 90.0351";scale = "2 0.166666 78.688";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-28.0441 -840.362 213.737";rotation = "-0.024773 0.999386 -0.024773 90.0351";scale = "2 0.166666 79.0002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-28.2812 -840.625 213.737";rotation = "0.586657 -0.558275 0.586654 238.347";scale = "2 0.166666 78.995";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-67.7452 -842.329 159.737";rotation = "0 0 1 87.1601";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-46.7167 -861.302 152.237";rotation = "0.999693 0.0247801 3.1411e-08 180";scale = "1.75 2.33333 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "3";moving = "open";prevscale = "1.75 2.33333 6";state = "closed";timeout = "2";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-54.0183 -862.391 149.137";rotation = "0 0 -1 103.744";scale = "0.05 0.05 0.05";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-47.0599 -861.365 149.637";rotation = "-0.47329 0.880907 1.11663e-06 180";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "17";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-47.0599 -861.365 149.637";rotation = "7.57915e-07 -4.39512e-13 1 123.504";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-48.2645 -859.652 149.237";rotation = "0 0 1 149.547";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "46.9126 -856.847 149.187";rotation = "-0.596425 0.567573 0.567572 118.374";scale = "46.5 0.0333333 372";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-47.4379 -861.109 148.737";rotation = "0 0 -1 28.3715";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-47.4379 -861.109 148.737";rotation = "0.969506 0.245066 -3.10644e-07 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.125 -858.107 129.45";rotation = "0 0 1 132.16";scale = "0.125 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-47.598 -858.5 129.45";rotation = "0 0 1 51.2128";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-48.367 -889.256 129.45";rotation = "0 0 1 177.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.013 -885.876 129.45";rotation = "0 0 1 132.16";scale = "5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.74";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.5635 -671.019 129.189";rotation = "-0.0175266 0.706999 -0.706997 182.007";scale = "40 0.16 771.6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "146.916 -854.435 129.186";rotation = "-0.596422 0.567568 0.567581 118.374";scale = "40 0.173333 771.6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-175.191 -1006.66 129.188";rotation = "0.262974 0.682216 0.682221 209.468";scale = "40 0.166666 771.6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-27.391 -874.328 129.449";rotation = "0 0 1 222.16";scale = "5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.74";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-188.512 -733.95 129.189";rotation = "-0.847131 -0.375747 -0.375743 99.4626";scale = "40 0.166666 771.6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-79.644 -842.341 129.45";rotation = "0 0 -1 115.34";scale = "0.125 6.66666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.74";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-36.046 -837.03 129.449";rotation = "0 0 1 222.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-52.3419 -862.192 124.45";rotation = "0 0 1 233.318";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.72";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.55 -827.147 129.45";rotation = "0 0 1 154.66";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-50.4244 -859.69 124.45";rotation = "0 0 -1 22.3463";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-47.5703 -860.465 124.45";rotation = "0 0 1 48.3183";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.77";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-46.583 -860.221 124.45";rotation = "0 0 1 73.6428";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.74";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-47.7199 -858.235 124.45";rotation = "0 0 -1 7.06328";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.76";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-47.8526 -856.02 124.45";rotation = "0 0 1 2.76394";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.75";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-61.5998 -878.791 124.45";rotation = "0 0 1 60.5851";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.71";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-41.6136 -861.396 124.449";rotation = "0 0 -1 92.135";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.73";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-15.822 -850.863 129.449";rotation = "0 0 1 222.16";scale = "0.125 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-100.435 -864.53 129.451";rotation = "0 0 1 222.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.74";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-94.754 -869.884 129.45";rotation = "0 0 1 81.7342";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.419 -914.187 129.45";rotation = "0 0 1 222.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.43 -820.106 129.449";rotation = "0 0 1 177.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-89.594 -891.618 129.45";rotation = "0 0 1 71.4289";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-97.763 -852.529 129.451";rotation = "0 0 1 87.4637";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.482 -816.291 129.45";rotation = "0 0 1 87.1601";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-99.765 -878.452 129.451";rotation = "0 0 1 71.9068";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.47 -913.414 129.449";rotation = "0 0 1 132.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-15.464 -903.241 129.449";rotation = "0 0 1 199.66";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-91.036 -829.434 129.451";rotation = "0 0 1 113.765";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-107.411 -835.006 129.451";rotation = "0 0 -1 92.8398";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.561 -806.422 129.45";rotation = "0 0 1 199.66";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-105.344 -845.401 129.451";rotation = "0 0 1 105.118";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-82.513 -911.461 129.45";rotation = "0 0 1 215.163";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-108.938 -880.209 129.451";rotation = "0 0 1 159.94";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-111.191 -872.194 129.451";rotation = "0 0 1 93.2036";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-16.961 -823.911 129.449";rotation = "0 0 1 219.558";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-67.35 -920.761 129.45";rotation = "0 0 1 17.5795";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-94.21 -821.57 129.451";rotation = "0 0 1 122.839";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-64.746 -801.093 129.45";rotation = "0 0 1 222.16";scale = "0.125 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-82.645 -811.799 129.45";rotation = "0 0 1 129.783";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-100.582 -824.437 129.451";rotation = "0 0 1 160.248";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-116.089 -865.413 129.451";rotation = "0 0 1 91.408";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-34.921 -808.721 129.45";rotation = "0 0 1 197.299";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-104.251 -827.558 129.451";rotation = "0 0 1 160.22";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "4.26801 -870.097 129.449";rotation = "0 0 -1 72.8653";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-93.645 -816.291 129.451";rotation = "0 0 1 140.116";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-52.957 -803.564 129.45";rotation = "0 0 1 184.72";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-116.769 -874.397 129.451";rotation = "0 0 1 86.382";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.178 -814.591 129.449";rotation = "0 0 -1 115.34";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-88.853 -918.104 129.45";rotation = "0 0 1 107.876";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-118.086 -875.38 129.451";rotation = "0 0 1 180.562";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-124.277 -854.156 129.451";rotation = "0 0 -1 92.8398";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-119.975 -865.424 129.451";rotation = "0 0 1 83.162";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-72.487 -802.682 129.45";rotation = "0 0 1 145.751";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-2.20399 -898.574 129.449";rotation = "0 0 -1 0.745457";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-49.946 -800.906 129.45";rotation = "0 0 1 178.023";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-113.778 -904.519 129.451";rotation = "0 0 -1 115.34";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-57.305 -800.029 129.45";rotation = "0 0 1 214.592";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "4.242 -842.299 129.449";rotation = "0 0 -1 118.13";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "0.778 -894.773 129.449";rotation = "0 0 -1 4.12388";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-15.538 -914.756 129.449";rotation = "0 0 1 64.5076";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "6.78999 -849.613 129.449";rotation = "0 0 -1 57.3748";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-110.411 -828.021 129.451";rotation = "0 0 1 174.821";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-121.465 -871.047 129.451";rotation = "0 0 1 166.108";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-101.987 -817.4 129.451";rotation = "0 0 1 166.752";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-113.598 -832.205 129.451";rotation = "0 0 1 191.284";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-107.797 -822.472 129.451";rotation = "0 0 1 194.85";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-23.687 -923.167 129.449";rotation = "0 0 1 39.9697";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-58.982 -797.479 129.45";rotation = "0 0 1 230.044";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-92.574 -921.167 129.45";rotation = "0 0 1 96.0495";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.967 -876.403 129.451";rotation = "0 0 1 222.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-32.468 -927.614 129.449";rotation = "0 0 1 42.2053";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-60.693 -797.106 129.45";rotation = "0 0 1 223.425";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-51.806 -797.003 129.45";rotation = "0 0 1 189.362";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-95.469 -802.814 129.451";rotation = "0 0 1 154.66";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-112.042 -816.937 129.451";rotation = "0 0 1 109.66";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "16.738 -869.798 129.448";rotation = "0 0 1 177.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "11.801 -891.611 129.448";rotation = "0 0 1 132.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-101.446 -916.163 129.45";rotation = "0 0 1 147.091";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-40.52 -931.225 129.449";rotation = "0 0 1 45.4682";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "2.76401 -820.083 129.449";rotation = "0 0 -1 115.34";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-51.642 -933.434 129.449";rotation = "0 0 1 61.0905";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-15.679 -808.011 129.449";rotation = "0 0 -1 97.3702";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-46.846 -795.382 129.45";rotation = "0 0 1 170.926";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-60.602 -794.779 129.45";rotation = "0 0 -1 112.615";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-91.425 -925.516 129.45";rotation = "0 0 1 106.487";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-82.014 -793.605 129.45";rotation = "0 0 1 199.66";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "16.819 -844.557 129.448";rotation = "0 0 -1 115.34";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.89 -906.192 140.95";rotation = "0.567578 0.596417 0.567575 118.375";scale = "3.9995 0.166666 152.595";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-33.981 -932.96 129.449";rotation = "0 0 1 72.219";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-128.252 -869.142 129.451";rotation = "0 0 1 87.682";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-101.818 -920.768 129.45";rotation = "0 0 1 111.143";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-14.156 -923.447 129.449";rotation = "0 0 -1 37.4679";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-39.206 -935.892 129.449";rotation = "0 0 1 57.8281";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-28.732 -796.326 129.449";rotation = "0 0 1 184.61";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.409 -786.549 129.45";rotation = "0 0 1 177.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-79.933 -958.348 140.949";rotation = "0.338448 0.878013 0.338447 97.4332";scale = "3.995 0.166666 152.965";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-7.44901 -807.414 129.449";rotation = "0 0 -1 81.3256";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-35.057 -937.304 129.449";rotation = "0 0 -1 24.8721";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.462 -829.503 140.945";rotation = "0.674702 0.299264 0.674699 146.679";scale = "3.99675 0.166666 153.104";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-8.80499 -805.379 129.449";rotation = "0 0 -1 74.7882";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "6.41499 -907.967 129.448";rotation = "0 0 1 0.197823";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "8.786 -904.945 129.448";rotation = "0 0 -1 37.4459";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-60.749 -941.392 129.45";rotation = "0 0 -1 7.7333";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.921 -789.879 129.449";rotation = "0 0 1 132.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.317 -782.854 129.44";rotation = "0 0 -1 25.3397";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "9.73399 -906.895 129.448";rotation = "0 0 1 18.4083";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-86.051 -937.651 129.45";rotation = "0 0 1 16.8431";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-107.937 -924.718 129.451";rotation = "0 0 1 36.8493";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-38.272 -942.416 129.449";rotation = "0 0 1 56.6464";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-1.70399 -805.941 129.449";rotation = "0 0 -1 98.4634";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "10.88 -908.613 129.448";rotation = "0 0 1 12.6086";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "22.033 -845.546 129.448";rotation = "0 0 -1 110.098";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.89 -906.193 131.201";rotation = "0.567578 0.596417 0.567575 118.375";scale = "0.125 0.166666 152.597";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "5.737 -811.474 129.449";rotation = "0 0 -1 116.141";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.878 -906.444 148.947";rotation = "0.724405 -0.689374 -8.73845e-07 180";scale = "0.125 0.166666 38.992";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.812 -906.845 148.939";rotation = "0.933078 -0.359674 -4.55919e-07 180";scale = "0.125 0.166666 38.958";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "5.683 -919.066 129.448";rotation = "0 0 1 18.3207";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-1.108 -797.265 129.449";rotation = "2.77288e-07 5.99785e-08 1 222.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.631 -829.685 148.939";rotation = "0.914114 0.405456 5.13953e-07 180";scale = "0.125 0.166666 38.974";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "24.923 -845.64 129.448";rotation = "0 0 -1 45.0207";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "26.306 -852.92 129.448";rotation = "0 0 -1 44.6193";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.1471 -954.787 140.941";rotation = "-0.0247712 0.999386 -0.0247711 90.0351";scale = "4.0025 0.166666 152.814";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "27.48 -859.055 129.448";rotation = "0 0 -1 34.93";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-79.932 -958.348 131.209";rotation = "0.338448 0.878013 0.338447 97.4332";scale = "0.125 0.166666 152.965";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.3341 -772.516 140.939";rotation = "0.706999 0.017523 0.706997 177.992";scale = "4.0005 0.166666 152.698";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.463 -829.502 131.202";rotation = "0.674701 0.299266 0.674699 146.679";scale = "0.125 0.166666 153.101";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "28.045 -855.167 129.448";rotation = "0 0 -1 56.0406";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "3.782 -802.202 129.449";rotation = "0 0 -1 74.8438";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.384 -821.9 129.448";rotation = "0 0 1 177.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-79.7469 -958.516 148.939";rotation = "0.933078 -0.359674 -4.55919e-07 180";scale = "0.125 0.166666 38.96";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "32.946 -870.606 129.448";rotation = "0 0 -1 99.2386";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.5838 -772.529 148.94";rotation = "0.999693 0.0247782 3.14086e-08 180";scale = "0.125 0.166666 39.004";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.9137 -772.57 148.939";rotation = "0.914114 0.405456 5.13953e-07 180";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "16.013 -809.036 129.449";rotation = "0 0 1 229.297";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-138.748 -907.658 129.351";rotation = "0 0 1 61.6669";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.9405 -897.84 140.941";rotation = "-0.375748 0.847129 -0.375748 99.4626";scale = "3.9965 0.166666 152.898";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.147 -954.79 131.186";rotation = "-0.0247712 0.999386 -0.0247708 90.0351";scale = "0.125 0.166666 153.416";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-142.817 -829.144 129.351";rotation = "0 0 1 104.261";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.1116 -820.281 140.947";rotation = "0.338452 0.87801 0.338451 97.4332";scale = "3.995 0.166666 152.985";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.3341 -772.516 131.188";rotation = "0.706999 0.017523 0.706997 177.992";scale = "0.125 0.166666 152.696";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.3924 -821.154 140.954";rotation = "0.586657 -0.558275 0.586654 238.347";scale = "3.99625 0.166666 152.631";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.9231 -897.372 149.187";rotation = "-0.596425 0.567573 0.567572 118.374";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-2.8972 -954.776 148.946";rotation = "-0.0247788 0.999693 1.2672e-06 180";scale = "0.125 0.166666 39.02";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-80.3347 -960.472 129.339";rotation = "0 0 1 17.2544";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-2.53979 -954.696 148.933";rotation = "-0.405459 0.914113 1.15872e-06 180";scale = "0.125 0.166666 38.994";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.7775 -768.774 148.938";rotation = "0.933078 -0.359674 -4.55919e-07 180";scale = "0.125 0.166666 38.96";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-89.1986 -769.797 129.338";rotation = "0 0 1 169.722";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.9411 -897.84 131.198";rotation = "-0.375748 0.847129 -0.375748 99.4626";scale = "0.125 0.166666 152.9";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-117.014 -945.373 129.451";rotation = "0 0 1 225.786";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.11 -820.281 131.207";rotation = "0.338448 0.878013 0.338447 97.4332";scale = "0.125 0.166666 152.986";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-122.643 -787.402 129.338";rotation = "0 0 -1 49.405";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-159.645 -859.776 129.352";rotation = "0 0 -1 89.8948";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.3924 -821.155 131.212";rotation = "-0.567573 -0.596426 0.567571 118.374";scale = "0.125 0.166666 153.23";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "49.1092 -897.655 148.934";rotation = "-0.405459 0.914113 1.15872e-06 180";scale = "0.125 0.166666 38.972";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.38 -820.904 148.947";rotation = "0.724412 -0.689367 -8.73835e-07 180";scale = "0.125 0.166666 38.98";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.2953 -820.452 148.937";rotation = "0.933078 -0.359674 -4.55919e-07 180";scale = "0.125 0.166666 38.96";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-128.769 -789.364 124.451";rotation = "0 0 -1 45.9282";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-1.80699 -956.435 129.336";rotation = "0 0 -1 27.8225";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-11.754 -766.556 129.34";rotation = "0 0 1 178.121";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-70.4547 -760.202 124.438";rotation = "0 0 -1 91.0436";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-40.122 -973.328 129.339";rotation = "0 0 1 182.434";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-164.272 -877 124.452";rotation = "0 0 -1 92.2244";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-51.052 -753.727 129.34";rotation = "0 0 1 1.71915";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-125.73 -950.539 124.439";rotation = "0 0 -1 115.675";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "51.5275 -897.887 129.348";rotation = "0 0 -1 87.5938";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "48.0189 -819.543 129.348";rotation = "0 0 -1 112.901";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-19.3351 -758.408 124.44";rotation = "0 0 1 41.7537";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-38.2716 -978.758 124.436";rotation = "0 0 1 175.056";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "28.708 -780.078 129.34";rotation = "0 0 1 43.1047";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "31.5462 -940.602 124.436";rotation = "0 0 1 10.2891";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "41.8434 -934.779 124.448";rotation = "0 0 1 129.315";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-238.414 -872.914 149.189";rotation = "0.596425 -0.567574 0.567571 118.375";scale = "37.5 0.16 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "42.902 -939.766 129.336";rotation = "0 0 1 119.416";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-175.942 -1005.98 149.189";rotation = "0.878013 -0.338449 0.338447 97.4329";scale = "37.5 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "59.4144 -818.381 124.448";rotation = "0 0 1 64.6159";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-188.49 -733.927 149.189";rotation = "-0.84713 -0.375749 -0.375743 99.462";scale = "37.5 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "62.9997 -831.619 124.448";rotation = "0 0 1 10.9317";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "70.6595 -852.844 129.347";rotation = "0 0 1 87.7588";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "70.8533 -848.613 124.447";rotation = "0 0 1 113.89";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "10.8762 -753.986 124.44";rotation = "0 0 -1 46.8344";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";switchRadius = "1000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-36.6027 -1056.32 149.186";rotation = "-0.0175239 0.706999 0.706997 177.992";scale = "37.5 0.16 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.0279 -670.992 149.19";rotation = "-0.999386 -0.0247717 -0.0247694 90.0351";scale = "37.5 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.0446 -993.329 149.184";rotation = "-0.299268 0.6747 0.674698 146.679";scale = "37.5 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.6985 -720.659 149.188";rotation = "-0.878014 0.338445 0.338448 97.4331";scale = "37.5 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "146.905 -854.215 149.186";rotation = "-0.596425 0.567571 0.567574 118.374";scale = "37.5 0.16 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-242.588 -793.823 149.189";rotation = "0.586656 -0.558276 0.586654 238.347";scale = "0.125 0.166666 317.998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-234.316 -953.463 149.189";rotation = "0.682219 -0.262977 0.682217 209.467";scale = "0.125 0.166666 318.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-238.649 -873.225 129.439";rotation = "-7.38341e-06 -7.98205e-07 -1 92.8398";scale = "39.75 0.166667 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-242.276 -792.954 149.189";rotation = "0.674702 0.299265 0.674698 146.679";scale = "0.125 0.166666 318";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-175.386 -1006.83 129.439";rotation = "7.74706e-07 1.71634e-06 1 222.16";scale = "39.7492 0.166667 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-188.915 -734.023 129.439";rotation = "-1.85289e-06 1.78671e-06 1 132.16";scale = "39.75 0.166667 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-234.686 -953.127 129.189";rotation = "0.567573 0.596423 0.567574 118.374";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-116.083 -1060.52 129.188";rotation = "0.338446 0.878013 0.338449 97.4326";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.2206 -1052.61 149.186";rotation = "-0.0247712 0.999386 -0.0247711 90.0351";scale = "0.125 0.166666 318";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-242.612 -793.324 129.189";rotation = "0.674702 0.299262 0.674699 146.678";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-134.721 -674.695 149.19";rotation = "0.706999 0.0175239 0.706997 177.992";scale = "0.125 0.166666 317.998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-36.1814 -1056.55 129.437";rotation = "-0.000108798 -6.65658e-05 -1 2.84048";scale = "39.75 0.166667 38.998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.3188 -670.756 129.438";rotation = "-1.66757e-06 -1.51741e-06 1 87.1601";scale = "0.125 52.9999 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "77.0243 -721.359 139.187";rotation = "-0.299265 0.674705 -0.674695 213.321";scale = "2.49989 0.166666 18.0025";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-225.575 -952.166 124.453";rotation = "0 0 -1 99.2059";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.72 -1052.59 129.186";rotation = "-0.0247766 0.999386 -0.0247691 90.0346";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.777 -934.36 149.185";rotation = "-0.375748 0.847129 -0.375748 99.4626";scale = "0.125 0.166666 318";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.5825 -666.793 129.188";rotation = "-0.0247701 0.999386 -0.0247713 90.0346";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.9531 -667.129 149.188";rotation = "0.682219 -0.262976 0.682217 209.467";scale = "0.125 0.166666 318";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-235.563 -795.035 124.453";rotation = "0 0 -1 75.3927";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-234.698 -952.877 129.439";rotation = "0 0 -1 92.8398";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-234.501 -953.295 129.439";rotation = "0 0 1 222.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.2198 -723.51 145.316";rotation = "0.338445 0.878014 0.338448 97.4333";scale = "1.81075 0.166666 18.0006";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-242.6 -793.573 129.439";rotation = "0 0 -1 92.8398";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-242.444 -793.139 129.439";rotation = "0 0 -1 47.8397";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-231.197 -952.288 129.853";rotation = "0.92552 -0.3787 -4.80036e-07 180";scale = "2 2 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-231.197 -952.288 129.853";rotation = "-6.44514e-06 1.62181e-12 1 44.5062";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-240.003 -794.531 129.853";rotation = "0.708762 -0.705448 -8.94219e-07 180";scale = "2 2 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-240.003 -794.531 129.853";rotation = "-3.07041e-06 5.6844e-13 1 89.7315";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.4143 -993.29 129.436";rotation = "-4.53245e-06 -8.77047e-06 -1 47.8402";scale = "39.75 0.166667 38.996";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.21 -774.686 149.186";rotation = "0.586657 -0.558275 0.586654 238.347";scale = "0.125 0.166666 317.998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "17.9206 -682.343 145.188";rotation = "-0.379189 0.854884 -0.354104 197.852";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.2198 -723.51 139.187";rotation = "0.338444 0.878013 0.338451 97.4326";scale = "0.125 0.166666 18.0005";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "83.8839 -720.49 138.937";rotation = "0.359672 0.933079 1.18276e-06 180";scale = "2.25006 0.166666 19";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";prevscale = "2.25006 0.166666 19";state = "closed";timeout = "0";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "23.1226 -676.598 145.188";rotation = "-0.299265 0.674698 0.674702 146.678";scale = "4.00012 0.166666 9.9988";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "128.37 -782.351 145.172";rotation = "-0.379189 0.854882 0.354108 162.148";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.604 -693.977 129.438";rotation = "-2.75899e-06 1.38568e-06 -1 47.8399";scale = "0.125 23.3333 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "147.149 -854.088 129.436";rotation = "-7.38341e-06 -7.98205e-07 -1 92.8398";scale = "39.7497 0.166667 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-131.329 -680.897 124.439";rotation = "0 0 -1 36.9735";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-112.524 -1055.15 124.438";rotation = "0 0 1 237.905";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.113 -933.99 129.185";rotation = "-0.375756 0.847126 -0.375745 99.4614";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-116.268 -1060.35 129.438";rotation = "0 0 1 222.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-115.834 -1060.5 129.438";rotation = "0 0 1 177.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.5825 -666.793 129.188";rotation = "0.682223 -0.262974 0.682214 209.468";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-114.819 -1057.68 129.838";rotation = "0.99314 0.116931 1.48221e-07 180";scale = "2 2 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-114.819 -1057.68 129.838";rotation = "-2.16066e-05 3.05927e-12 -1 13.4301";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-135.387 -674.906 129.439";rotation = "0 0 -1 47.8397";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-134.971 -674.707 129.44";rotation = "0 0 1 177.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-134.258 -677.517 129.839";rotation = "-0.221436 0.975175 1.23612e-06 180";scale = "2 2 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-134.258 -677.517 129.839";rotation = "1.01202e-06 2.95883e-12 1 154.413";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.165 -747.002 129.436";rotation = "-3.88784e-06 3.16866e-06 1 132.16";scale = "0.125 23.3333 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "27.9498 -670.182 149.188";rotation = "0.922893 -0.355746 -0.147357 221.841";scale = "0.125 0.166666 12.9997";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.186 -774.186 129.186";rotation = "0.586661 -0.558274 0.586651 238.348";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "137.279 -779.963 145.172";rotation = "-0.299265 0.674698 0.674702 146.678";scale = "3.9999 0.166666 10.0023";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "40.158 -1046.68 124.435";rotation = "0 0 1 117.577";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.4703 -1052.6 129.436";rotation = "0 0 1 177.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.796 -770.991 149.287";rotation = "0.922893 -0.355746 -0.147357 221.841";scale = "0.125 0.166666 12.9997";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.888 -1052.41 129.436";rotation = "0 0 1 132.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "42.218 -1049.45 129.835";rotation = "0.95182 0.306657 3.88716e-07 180";scale = "2 2 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "42.218 -1049.45 129.835";rotation = "-8.068e-06 1.36323e-12 -1 35.7158";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "23.871 -670.831 129.841";rotation = "-0.433219 0.901289 1.14247e-06 180";scale = "2 2 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "23.871 -670.831 129.841";rotation = "7.97132e-07 -4.7584e-12 1 128.656";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.9539 -667.127 137.438";rotation = "0.682219 -0.262976 0.682217 209.467";scale = "4 0.166666 10.0001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.3328 -666.805 129.438";rotation = "0 0 1 177.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.7678 -666.961 129.438";rotation = "0 0 1 42.1603";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "144.012 -932.251 124.446";rotation = "0 0 1 94.0493";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "138.319 -774.621 129.841";rotation = "0.372481 0.92804 1.17637e-06 180";scale = "2 2 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "138.319 -774.621 129.841";rotation = "1.87464e-06 5.41202e-12 1 223.737";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.109 -770.492 137.436";rotation = "0.682219 -0.262976 0.682217 209.467";scale = "4 0.166666 9.99938";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.945 -934.175 129.435";rotation = "0 0 1 132.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.1 -933.74 129.435";rotation = "0 0 1 87.1601";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.001 -774.018 129.436";rotation = "0 0 1 42.1603";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.198 -774.436 129.436";rotation = "0 0 1 87.1601";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "148.005 -933.189 129.846";rotation = "0.849265 0.527967 6.69246e-07 180";scale = "2 2 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "148.005 -933.189 129.846";rotation = "-4.43988e-06 -1.26774e-13 -1 63.7364";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "104.762 -698.571 129.338";rotation = "0.933802 -0.35779 -4.53532e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "27";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "104.762 -698.571 129.338";rotation = "-6.85114e-06 -1.8715e-12 1 41.9291";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "103.979 -695.92 123.938";rotation = "0 0 1 227.071";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-48.8324 -218.811 132.768";rotation = "0.707101 -0.00455984 0.707098 179.478";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-49.0824 -218.763 129.018";rotation = "8.16735e-09 -0.00644321 0.999979 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-47.1489 -219.036 130.851";rotation = "-1.0602e-06 0.70254 0.711645 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";frequency = "27";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-47.1489 -219.036 130.851";rotation = "-1.26759e-06 0.711644 -0.702541 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-45.0824 -218.808 132.518";rotation = "1 -2.43096e-06 -1.9987e-06 179.262";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.0824 -218.535 130.771";rotation = "0.579811 0.579814 -0.572394 239.573";scale = "0.875 1.16667 0.2";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-48.4547 -215.645 124.058";rotation = "8.16735e-09 -0.00644321 0.999979 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); \ No newline at end of file diff --git a/Univ/Data/2205246/Buildings/5.cs b/Univ/Data/2205246/Buildings/5.cs new file mode 100644 index 0000000..e36319c --- /dev/null +++ b/Univ/Data/2205246/Buildings/5.cs @@ -0,0 +1,194 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Castiger" +// Created in mission "Nuclearwasteland" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-244.789 4282.25 212.366";rotation = "0.156871 0.077665 -0.984561 53.3912";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-232.345 4272.17 216.649";rotation = "-0.0599671 0.0692563 0.995795 86.5539";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-231.054 4267.7 216.789";rotation = "-0.0697113 0.0555437 0.99602 64.1765";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-230.495 4272.23 216.883";rotation = "-0.059916 0.0704205 0.995716 85.5655";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-230.979 4276.48 216.665";rotation = "-0.0331139 0.0861195 0.995734 116.926";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-264.996 4282.96 220.391";rotation = "-0.642967 0.751178 -0.149416 194.576";scale = "10 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-268.086 4261.02 220.64";rotation = "0.921515 -0.0715302 0.381699 183.394";scale = "0.125 1.66666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-228.358 4277.41 216.907";rotation = "-0.041368 0.0753661 0.996297 132.324";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-227.759 4264.14 216.971";rotation = "-0.114183 0.184166 0.97624 25.2434";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-228.081 4279.94 216.716";rotation = "-0.0525513 0.0607584 0.996768 156.431";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-226.909 4265.31 217.085";rotation = "-0.107154 0.163647 0.980682 28.0169";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-224.876 4270.47 214.42";rotation = "-0.000104155 -0.0158268 0.999875 180.753";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.78";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-263.993 4302.81 220.64";rotation = "0.604937 0.517789 -0.604935 234.749";scale = "0.125 1.60969 78.7836";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-223.089 4270.14 214.41";rotation = "-0.000104155 -0.0158268 0.999875 180.753";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.77";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-222.51 4267.41 214.323";rotation = "-0.000104155 -0.0158268 0.999875 180.753";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-223.972 4262.81 217.177";rotation = "-0.136954 -0.0138775 0.99048 13.2043";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField17";position = "-265.52 4303.05 222.688";rotation = "0.604938 0.517788 -0.604935 234.749";scale = "0.52 0.519998 39.402";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-268.535 4259.77 224.381";rotation = "0.0773889 0.997001 1.26379e-06 180";scale = "0.125 0.166666 6.982";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-223.742 4280.56 217.061";rotation = "0.00782035 0.0432184 0.999035 180.193";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-272.704 4264.3 220.569";rotation = "0.0548044 0.706042 0.706046 186.274";scale = "0.125 0.166666 78.7846";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-271.382 4263.84 224.389";rotation = "-0.650264 0.759709 9.63e-07 180";scale = "0.125 0.166666 6.99802";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-268.829 4257.88 224.39";rotation = "0.75971 0.650263 8.24264e-07 180";scale = "0.125 0.166666 6.582";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-268.869 4257.63 222.353";rotation = "-0.545145 0.636894 -0.545146 115.014";scale = "0.125 0.166666 7.0037";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "-220.45 4276.02 220.38";rotation = "0 0 1 188.877";scale = "0 0 0";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-273.415 4264.16 224.39";rotation = "0.997001 -0.0773905 -9.80995e-08 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-269.408 4254.17 224.64";rotation = "0.604939 0.517786 0.604935 125.251";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-273.407 4259.35 220.89";rotation = "0.0773889 0.997001 1.26379e-06 180";scale = "2.5 3.33333 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-269.447 4253.92 220.89";rotation = "0 0 1 188.877";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-273.661 4264.2 222.34";rotation = "0.706045 -0.0548034 -0.706043 173.726";scale = "0.125 0.166666 7.00178";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-277.12 4264.74 224.64";rotation = "0.706045 -0.0548076 0.706043 186.274";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-273.407 4259.35 224.89";rotation = "0.759709 0.650263 1.1784e-06 180";scale = "2.2495 3.0003 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-180.066 4245.59 220.63";rotation = "-0.706042 0.0548044 0.706046 186.274";scale = "0.125 0.666666 179";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField17";position = "-268.338 4259.47 222.629";rotation = "-0.0771594 -0.994029 0.077157 90.3434";scale = "0.52 0.519998 89.522";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-277.367 4264.78 220.89";rotation = "0 0 1 188.877";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-269.694 4253.96 222.361";rotation = "0.0771605 0.994028 0.0771601 90.3432";scale = "0.125 0.166666 18";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-278.586 4255.35 224.64";rotation = "0.706045 -0.0548076 0.706043 186.274";scale = "0.125 0.166666 18";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-261.262 4304.65 220.64";rotation = "0.0773498 0.996489 -0.032038 224.857";scale = "0.125 1.66666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-278.794 4255.64 222.355";rotation = "0.604939 0.517786 0.604935 125.251";scale = "0.125 0.166666 17.995";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-278.794 4255.64 224.64";rotation = "0.604939 0.517786 0.604935 125.251";scale = "0.125 0.166666 17.995";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-216.238 4265.6 219.738";rotation = "-0.199724 -0.19116 -0.961025 89.7666";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-256.854 4237.56 213.523";rotation = "-0.0668089 0.0472437 0.996647 70.7139";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-278.833 4255.39 220.89";rotation = "0 0 1 188.877";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-214.591 4269.7 229.738";rotation = "0 0 1 93.3176";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "-211.21 4271 216.738";rotation = "0 0 -1 87.4895";scale = "5 6.66666 6";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-214.494 4272.7 229.738";rotation = "0 0 1 93.3176";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-265.226 4303.25 224.39";rotation = "-0.650264 0.759709 9.63e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-211.207 4271.08 219.738";rotation = "0 0 -1 87.4895";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-214.332 4265.52 223.69";rotation = "0.83133 -0.0182138 0.55548 181.395";scale = "2.5 0.166666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-216.161 4266.54 229.738";rotation = "0 0 -1 87.4895";scale = "0.125 0.166666 24";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-212.819 4274.9 229.738";rotation = "0 0 1 182.731";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-215.744 4276.03 229.738";rotation = "0 0 -1 87.4895";scale = "0.125 0.166666 24";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-267.25 4303.57 224.39";rotation = "0.997001 -0.0773905 -9.80995e-08 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-216.149 4266.79 237.738";rotation = "0.585601 0.560487 0.585598 121.46";scale = "2 0.166666 17.9968";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-260.935 4307.39 224.39";rotation = "0.997001 -0.0773915 -9.81008e-08 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-270.955 4304.15 222.34";rotation = "-0.077161 -0.994029 0.0771586 90.3435";scale = "0.125 0.166666 6.99978";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-260.968 4308.15 224.39";rotation = "-0.650264 0.759709 9.63e-07 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-287.682 4261.21 206.498";rotation = "0.851509 -0.432714 -0.296126 95.5161";scale = "0.125 13.3333 100";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-270.955 4304.15 224.64";rotation = "0.706045 -0.0548076 0.706043 186.274";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-211.011 4275.56 233.488";rotation = "-0.568732 0.594214 -0.56873 118.562";scale = "0.125 3.3336 17.9772";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-177.089 4229.63 206.488";rotation = "-0.282403 0.866001 0.412663 101.844";scale = "0.125 13.3333 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-265.776 4308.15 220.89";rotation = "0.0773889 0.997001 1.26379e-06 180";scale = "2.5 3.33333 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-288.017 4267.25 209.645";rotation = "-0.0602535 0.062687 0.996213 92.4852";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-271.202 4304.19 220.89";rotation = "0 0 1 188.877";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-209.311 4267.61 229.738";rotation = "0 0 1 1.38985";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-260.389 4311.86 222.342";rotation = "-0.545143 0.636898 -0.545142 115.014";scale = "0.125 0.166666 7.004";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-288.399 4267.7 209.595";rotation = "-0.0602535 0.062687 0.996213 92.4852";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-260.389 4311.86 224.64";rotation = "-0.545143 0.636898 -0.545142 115.014";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-208.585 4274.73 229.738";rotation = "0 0 1 184.444";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-243.32 4229.65 214.485";rotation = "-0.0668089 0.0472437 0.996647 70.7139";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-265.777 4308.15 224.89";rotation = "-0.650262 0.75971 3.93304e-06 180";scale = "2.25195 3 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-207.811 4269.47 229.738";rotation = "0 0 -1 85.0779";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-207.633 4272.79 229.738";rotation = "0 0 -1 85.6715";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-215.91 4266.53 237.738";rotation = "0.707023 -0.0154933 0.707021 181.775";scale = "2 0.166666 17.9989";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField17";position = "-172.368 4293.82 222.73";rotation = "0.706046 -0.0548048 -0.706043 173.726";scale = "0.52 0.519998 89.3615";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-260.837 4307.87 220.64";rotation = "-0.0771594 -0.994029 0.077157 90.3434";scale = "0.125 0.666666 179";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-255.605 4229.24 213.372";rotation = "-0.0668089 0.0472437 0.996647 70.7139";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-215.494 4276.02 237.738";rotation = "0.707023 -0.0154933 0.707021 181.775";scale = "2 0.166666 17.9969";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-260.35 4312.11 220.89";rotation = "0 0 1 188.877";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-271.163 4304.44 222.348";rotation = "0.604939 0.517786 0.604935 125.251";scale = "0.125 0.166666 17.996";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-286.122 4292.58 208.154";rotation = "-0.0436988 0.0797176 0.995859 122.739";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-211.404 4266.58 240.905";rotation = "0.0154944 0.707023 0.707021 181.775";scale = "2.24961 0.166667 17.9978";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-206.817 4268.47 235.667";rotation = "-0.560488 0.5856 0.585598 121.46";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.78";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Ravengers";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-206.715 4270.8 235.747";rotation = "-0.560488 0.5856 0.585598 121.46";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.77";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Zombies";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-231.412 4229.72 215.554";rotation = "-0.0668089 0.0472437 0.996647 70.7139";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-206.588 4273.7 235.726";rotation = "-0.560492 0.585598 0.585597 121.46";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";switchRadius = "200";timed = "2";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-269.775 4313.33 224.64";rotation = "-0.545143 0.636898 -0.545142 115.014";scale = "0.125 0.166666 17.996";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-269.489 4313.54 222.328";rotation = "0.706045 -0.0548076 0.706043 186.274";scale = "0.125 0.166666 18.0001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-260.597 4312.15 224.64";rotation = "0.0771605 0.994028 0.0771601 90.3432";scale = "0.125 0.166666 18.0001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-206.67 4266.13 229.738";rotation = "0 0 -1 87.4895";scale = "0.125 0.166666 24";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-206.254 4275.61 229.738";rotation = "0 0 -1 87.4895";scale = "0.125 0.166666 24";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-263.77 4227.99 212.601";rotation = "-0.0668089 0.0472437 0.996647 70.7139";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-206.265 4275.36 237.738";rotation = "-0.568732 0.594214 -0.56873 118.562";scale = "2 0.166666 17.9772";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-269.736 4313.58 220.89";rotation = "0 0 1 188.877";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-285.506 4301.1 207.412";rotation = "-0.0389035 0.0785793 0.996148 127.497";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-198.971 4261.96 216.89";rotation = "-0.052298 -0.0740095 -0.995885 14.6509";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-198.297 4278.87 216.7";rotation = "0.008218 0.0414191 0.999108 185.486";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-197.759 4276.36 216.894";rotation = "0.00407259 0.0424494 0.99909 196.96";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-230.429 4318.59 213.047";rotation = "-0.0436988 0.0797176 0.995859 122.739";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-244.317 4221.46 214.137";rotation = "-0.0668089 0.0472437 0.996647 70.7139";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-197.633 4264.79 216.893";rotation = "-0.0311308 -0.0340421 -0.998935 29.0122";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-224.664 4224.88 215.976";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-298.908 4278.04 207.939";rotation = "-0.0389035 0.0785793 0.996148 127.497";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-195.018 4273.04 216.929";rotation = "-0.0156003 -0.00475004 -0.999867 90.2363";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-194.94 4268.76 216.881";rotation = "-0.0165372 -0.00651649 -0.999842 81.0936";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-195.203 4264.04 216.835";rotation = "-0.021487 -0.0158498 -0.999644 51.2857";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-194.531 4277.13 216.765";rotation = "-0.0119764 0.0464308 0.99885 236.807";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-298.727 4285.98 207.198";rotation = "-0.0389035 0.0785793 0.996148 127.497";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-193.495 4268.02 216.844";rotation = "-0.0162958 -0.00606126 -0.999849 83.3012";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-192.865 4272.75 216.882";rotation = "-0.015803 -0.0051322 -0.999862 88.1226";scale = "1 1 1";team = "1";ownerGUID = "2205246";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-289.491 4305.8 206.456";rotation = "-0.0436988 0.0797176 0.995859 122.739";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-297.756 4293.72 206.575";rotation = "-0.0389035 0.0785793 0.996148 127.497";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-263.811 4323.41 206.499";rotation = "0.282408 -0.866 0.412662 101.844";scale = "0.125 13.3333 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-257.995 4326.42 208.625";rotation = "-0.0436988 0.0797176 0.995859 122.739";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-189.279 4269.83 214.777";rotation = "0.00694942 -0.0115546 0.999909 117.955";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-212.412 4227.31 216.058";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-294.016 4306.71 205.797";rotation = "-0.0389035 0.0785793 0.996148 127.497";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-217.102 4220.09 215.827";rotation = "-0.923404 0.00607477 0.38378 1.96396";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-224.901 4326.94 213.059";rotation = "0.00397888 0.0439199 0.999027 190.343";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-301.666 4299.04 205.541";rotation = "-0.0456246 0.0854564 0.995297 124.029";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-241.774 4334.71 210.109";rotation = "-0.0436988 0.0797176 0.995859 122.739";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-198.366 4313.83 213.775";rotation = "0.00516672 0.0421775 0.999097 193.955";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-235.05 4335.15 210.985";rotation = "-0.0436988 0.0797176 0.995859 122.739";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-216.514 4328.75 212.77";rotation = "0.00397888 0.0439199 0.999027 190.343";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-204.843 4321.75 213.192";rotation = "0.00397888 0.0439199 0.999027 190.343";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-209.006 4325.99 212.89";rotation = "0.00397888 0.0439199 0.999027 190.343";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-179.652 4247.24 220.63";rotation = "0.921512 -0.0715288 -0.381705 176.606";scale = "0.125 1.66666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-198.869 4221.44 215.877";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "-172.53 4288.79 220.4";rotation = "-0.706042 0.0548024 0.706046 186.274";scale = "5.00599 39.6079 0.48";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-172.805 4291.09 220.64";rotation = "0.921512 -0.0715288 -0.381705 176.606";scale = "0.125 1.66666 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-179.611 4245.88 224.38";rotation = "0.0773889 0.997001 1.26379e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-179.923 4243.89 224.38";rotation = "0.75971 0.650263 8.24264e-07 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-177.061 4249.25 218.415";rotation = "0.0548052 0.70604 0.706048 186.273";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-180.502 4240.18 222.326";rotation = "0.604939 0.517786 0.604935 125.251";scale = "0.125 0.166666 7.004";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-170.839 4288.26 220.64";rotation = "0.604937 0.517789 -0.604935 234.749";scale = "0.125 1.5846 79.0056";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-180.502 4240.18 224.63";rotation = "0.604939 0.517786 0.604935 125.251";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-180.541 4239.93 220.88";rotation = "0 0 1 188.877";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "-174.314 4255.69 216.719";rotation = "-0.515379 0.856905 0.00990311 179.317";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "-172.499 4271.57 216.854";rotation = "-0.515379 0.856905 0.00990311 179.317";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField17";position = "-175.188 4248.96 222.634";rotation = "0.545143 -0.636896 -0.545145 115.014";scale = "0.52 0.519998 39.5034";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-175.482 4248.76 224.38";rotation = "0.75971 0.650263 8.24264e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-168.244 4287.86 220.64";rotation = "0.0548047 0.706045 -0.706043 173.726";scale = "0.125 0.166666 79.006";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "-171.234 4280.3 216.431";rotation = "0.992567 -0.121589 -0.00513302 184.799";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-175.115 4243.89 220.88";rotation = "0.0773889 0.997001 1.26379e-06 180";scale = "2.5 3.33333 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-173.641 4248.47 224.38";rotation = "0.0773889 0.997001 1.26379e-06 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-175.114 4243.89 224.88";rotation = "0.0773907 0.997001 2.13597e-06 180";scale = "2.25 3.0026 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-170.518 4288.21 217.378";rotation = "-0.994029 0.0771591 0.0771578 90.3434";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-189.246 4218.85 215.799";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-187.146 4321.96 212.893";rotation = "0.00516672 0.0421775 0.999097 193.955";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-172.171 4293.52 224.39";rotation = "0.997001 -0.0773915 -9.81008e-08 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-171.402 4238.5 222.326";rotation = "0.0771605 0.994028 0.0771601 90.3432";scale = "0.125 0.166666 18";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-172.055 4294.27 224.39";rotation = "-0.650264 0.759709 9.63e-07 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-180.294 4239.89 224.63";rotation = "0.706045 -0.0548076 0.706043 186.274";scale = "0.125 0.166666 18";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-185.466 4221.84 215.896";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-173.394 4248.43 222.33";rotation = "-0.0771594 -0.994029 0.077157 90.3434";scale = "0.125 0.166666 6.99982";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-169.936 4247.89 224.63";rotation = "0.0771605 0.994028 0.0771601 90.3432";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-174.934 4243.43 217.453";rotation = "0.709661 0.231423 0.665451 217.368";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-171.347 4266.47 220.596";rotation = "-0.620279 0.724676 -0.300166 208.817";scale = "12.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-171.476 4297.98 222.339";rotation = "-0.545143 0.636898 -0.545142 115.014";scale = "0.125 0.166666 7.004";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-171.476 4297.98 224.64";rotation = "-0.545143 0.636898 -0.545142 115.014";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-179.433 4314.13 213.42";rotation = "0.00516672 0.0421775 0.999097 193.955";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-169.311 4288.27 224.38";rotation = "0.75971 0.650263 8.24264e-07 180";scale = "0.125 0.166666 6.98002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-171.437 4298.23 220.89";rotation = "0 0 1 188.877";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-175.085 4308.37 213.804";rotation = "0.00397888 0.0439199 0.999027 190.343";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-184.154 4220.44 215.852";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-169.689 4247.85 220.88";rotation = "0 0 1 188.877";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-181.939 4320.26 212.958";rotation = "0.00516672 0.0421775 0.999097 193.955";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-167.469 4287.99 224.39";rotation = "0.0773889 0.997001 1.26379e-06 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-171.116 4238.71 222.33";rotation = "0.545141 -0.636896 -0.545146 115.014";scale = "0.125 0.166666 17.9957";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-171.116 4238.71 224.63";rotation = "0.604939 0.517786 0.604935 125.251";scale = "0.125 0.166666 17.996";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-167.477 4292.8 220.89";rotation = "0.0773889 0.997001 1.26379e-06 180";scale = "2.5 3.33333 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-167.477 4292.8 224.39";rotation = "-1.21568e-06 -6.98108e-06 1 188.877";scale = "2.25001 3.00254 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-171.155 4238.46 220.88";rotation = "0 0 1 188.877";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-167.221 4287.95 222.34";rotation = "-0.0771594 -0.994029 0.077157 90.3434";scale = "0.125 0.166666 7.0018";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-163.764 4287.41 224.64";rotation = "0.0771605 0.994028 0.0771601 90.3432";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-162.298 4296.8 222.355";rotation = "0.0771605 0.994028 0.0771601 90.3432";scale = "0.125 0.166666 18";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-162.298 4296.8 224.64";rotation = "0.0771605 0.994028 0.0771601 90.3432";scale = "0.125 0.166666 18";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-164.419 4251.16 216.067";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-163.517 4287.37 220.89";rotation = "0 0 1 188.877";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-162.206 4261.7 216.136";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-163.478 4287.62 222.343";rotation = "0.604939 0.517786 0.604935 125.251";scale = "0.125 0.166666 17.995";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-162.09 4296.51 224.64";rotation = "-0.545143 0.636898 -0.545142 115.014";scale = "0.125 0.166666 17.995";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-159.563 4283.8 215.504";rotation = "0.00516672 0.0421775 0.999097 193.955";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-162.051 4296.76 220.89";rotation = "0 0 1 188.877";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-158.819 4254.7 215.991";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-155.297 4254.3 215.915";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-156.998 4245.85 215.858";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-153.29 4270.58 216.05";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-152.686 4274.85 216.085";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.77";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-151.432 4269.49 216.001";rotation = "-0.0192083 -0.0115527 -0.999749 62.0617";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "3";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2205246/Buildings/6.cs b/Univ/Data/2205246/Buildings/6.cs new file mode 100644 index 0000000..2e1c97b --- /dev/null +++ b/Univ/Data/2205246/Buildings/6.cs @@ -0,0 +1,94 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Castiger" +// Created in mission "LandofHell" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "80.6575 -941.874 275.556";rotation = "0 0 -1 102.167";scale = "0.05 0.05 0.05";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.3601 -928.203 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78.0002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.8976 -927.699 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "91.0605 -928.788 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "80.8906 -945.194 275.756";rotation = "0.251622 0.967826 1.22681e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77";frequency = "37";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "80.8906 -945.194 276.056";rotation = "1.63929e-06 -2.70051e-12 1 209.147";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "86.1786 -927.107 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78.0018";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.159 -946.534 275.556";rotation = "0 0 -1 70.9992";scale = "25 33.3333 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.78 -945.872 275.156";rotation = "0 0 -1 70.9992";scale = "10 13.3333 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.1038 -946.529 275.656";rotation = "0 0 -1 70.9992";scale = "0 0 0";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.8316 -929.398 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.5155 -926.535 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 77.9998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "94.464 -929.96 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.0775 -926.039 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "96.3425 -930.607 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.5052 -925.498 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.8923 -931.141 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.7006 -924.877 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 77.9998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "99.3891 -931.656 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78.0018";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "78.1338 -924.337 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "101.031 -932.222 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78.0002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "76.7231 -923.851 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "102.468 -932.716 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78.0018";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "105.648 -933.547 278.406";rotation = "0.162851 0.973118 0.16285 91.5615";scale = "0.125 0.166666 78.0008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.064 -923.28 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.962 -933.231 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78.0002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.5396 -922.755 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 77.9998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "105.33 -933.702 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78.0002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "72.1135 -922.264 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 77.9998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "70.7137 -921.782 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78.0002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "68.9276 -921.167 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "105.884 -933.628 275.656";rotation = "0 0 -1 70.9992";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.7873 -970.895 278.406";rotation = "0.162851 0.973118 0.16285 91.5615";scale = "0.125 0.166666 78.0002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.1293 -926.906 278.406";rotation = "0.117512 0.702209 0.702206 193.405";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.1088 -926.899 275.406";rotation = "0.117516 0.702208 0.702206 193.405";scale = "0.5 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "68.5363 -920.768 275.656";rotation = "0 0 -1 70.9992";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "99.323 -951.915 278.406";rotation = "0.45033 -0.631348 0.63135 131.512";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "99.7831 -952.114 275.406";rotation = "-0.704026 -0.50217 -0.502168 109.707";scale = "0.5 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "93.0237 -970.976 275.656";rotation = "0 0 -1 70.9992";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.44 -939.24 278.406";rotation = "-0.450336 0.63135 0.631343 131.513";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "61.9773 -939.048 275.406";rotation = "0.704026 0.50217 -0.502168 109.707";scale = "0.5 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.6759 -958.116 275.656";rotation = "0 0 -1 70.9992";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "74.5923 -964.894 278.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "74.543 -964.877 275.406";rotation = "0.117516 0.702208 -0.702206 166.596";scale = "0.5 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.494 -948.514 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.967 -947.139 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.081 -949.714 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "101.418 -945.83 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "99.6145 -951.068 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "101.898 -944.436 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "99.1277 -952.482 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "102.385 -943.023 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "98.6762 -953.793 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "102.843 -941.693 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "98.1821 -955.228 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.36 -940.191 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.6866 -956.667 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.871 -938.706 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.2475 -957.942 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "104.341 -937.342 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "96.8371 -959.134 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "104.798 -936.015 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "96.3447 -960.564 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "105.206 -934.83 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "95.8223 -962.081 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "95.3192 -963.542 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "94.9201 -964.701 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.78 -945.872 174.956";rotation = "0 0 -1 70.9992";scale = "10 13.3333 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.78 -945.872 174.956";rotation = "0 0 -1 70.9992";scale = "10.5 14 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "94.4546 -966.053 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "93.9938 -967.391 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "93.6264 -968.458 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "85.7944 -930.92 174.956";rotation = "0 0 1 17.7764";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "93.8482 -949.958 174.956";rotation = "0 0 1 108.304";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "93.1984 -969.701 178.406";rotation = "-0.450333 0.631347 0.631349 131.513";scale = "0.05 0.0666666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "67.6855 -941.547 174.956";rotation = "0 0 -1 70.2022";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "86.5347 -925.221 176.436";rotation = "-0.973118 0.162851 0.16285 91.5615";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77";frequency = "37";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "86.5347 -925.221 176.436";rotation = "0.973118 -0.162851 0.162853 91.5604";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "StationInventory";position = "76.4907 -958.59 174.956";rotation = "0 0 1 198.749";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "80.3368 -946.016 175.256";rotation = "0.188178 0.982135 1.24495e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77";frequency = "37";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "80.3368 -946.016 175.556";rotation = "1.53352e-06 -4.77335e-12 1 201.693";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.78 -945.872 175.156";rotation = "0.81412 0.580697 7.36087e-07 180";scale = "10 13.3333 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "68.7722 -920.851 175.906";rotation = "0.702205 -0.117515 0.70221 193.405";scale = "0.125 0.166666 77.9994";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "80.78 -945.872 174.656";rotation = "0 0 -1 70.9992";scale = "0 0 0";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "105.803 -933.862 175.906";rotation = "-0.50217 0.704026 -0.502168 109.707";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "105.884 -933.628 175.156";rotation = "0 0 -1 70.9992";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "68.4551 -921.002 175.906";rotation = "-0.502166 0.704026 -0.502172 109.707";scale = "0.125 0.166666 78.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "68.5363 -920.768 175.156";rotation = "0 0 -1 70.9992";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.9122 -958.196 175.906";rotation = "0.702205 -0.117515 0.70221 193.405";scale = "0.125 0.166666 77.9992";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "93.0237 -970.976 175.156";rotation = "0 0 -1 70.9992";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.6759 -958.116 175.156";rotation = "0 0 -1 70.9992";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "80.0449 -949.948 165.156";rotation = "0 0 1 197.085";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); \ No newline at end of file diff --git a/Univ/Data/2205246/Buildings/7.cs b/Univ/Data/2205246/Buildings/7.cs new file mode 100644 index 0000000..a9a3046 --- /dev/null +++ b/Univ/Data/2205246/Buildings/7.cs @@ -0,0 +1,92 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Castiger" +// Created in mission "OceanExplorationH" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "StationInventory";position = "564.467 1959.27 374.253";rotation = "0.555027 0.588191 0.588197 238.063";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "563.908 1964.59 374.253";rotation = "0.588194 -0.55503 0.588192 238.063";scale = "0.875 0.166666 20.815";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "588.676 1955.36 372.753";rotation = "-0.706955 -0.0205084 0.706961 177.65";scale = "0.125 0.166666 47.8788";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "588.676 1955.36 375.253";rotation = "-0.706955 -0.0205084 0.706961 177.65";scale = "0.125 0.166666 47.8788";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "563.896 1964.84 372.503";rotation = "0 0 1 176.677";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "565.075 1955.69 374.066";rotation = "-0.599672 0.565861 0.565858 118.1";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";nametoset = "Ocean Sniping Tower";frequency = "35";teleMode = "1";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "565.075 1955.69 374.066";rotation = "0.59967 -0.565858 0.565863 118.1";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "564.527 1953.96 375.503";rotation = "-0.0289972 0.999579 1.26706e-06 180";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "588.938 1960.53 375.588";rotation = "0.99958 0.0289919 3.64595e-06 180";scale = "15 5.33333 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.272 1964.11 375.753";rotation = "-0.555029 -0.58819 0.588196 238.063";scale = "0.125 0.166666 98.0026";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.346 1962.83 375.753";rotation = "-0.555029 -0.58819 0.588196 238.063";scale = "0.125 0.166666 98.0028";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.21 1965.18 375.753";rotation = "-0.555029 -0.58819 0.588196 238.063";scale = "0.125 0.166666 98.0028";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "588.93 1960.65 376.503";rotation = "0.99958 0.0289958 -4.13724e-06 180";scale = "15 8.33332 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.063 1967.7 372.753";rotation = "-0.0289851 0.99916 -0.028985 90.0483";scale = "0.125 0.166666 97.9988";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.426 1961.46 375.753";rotation = "-0.555029 -0.58819 0.588196 238.063";scale = "0.125 0.166666 98.0028";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.135 1966.46 375.753";rotation = "-0.555029 -0.58819 0.588196 238.063";scale = "0.125 0.166666 98.0008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "588.93 1960.65 357.003";rotation = "-1.67432e-06 6.67415e-06 1 86.6765";scale = "5 20 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.506 1960.08 375.753";rotation = "-0.555029 -0.58819 0.588196 238.063";scale = "0.125 0.166666 98.0028";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "564.146 1964.86 375.492";rotation = "0.706959 0.0205085 0.706957 177.65";scale = "0.255513 0.166666 98.0008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.581 1958.78 375.753";rotation = "-0.555029 -0.58819 0.588196 238.063";scale = "0.125 0.166666 98.0006";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "588.926 1955.37 375.503";rotation = "-0.0289972 0.999579 1.26706e-06 180";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.642 1957.74 375.753";rotation = "-0.555029 -0.58819 0.588196 238.063";scale = "0.125 0.166666 98.0028";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";nametoset = "Exit";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.694 1956.81 375.753";rotation = "-0.0289859 0.99916 -0.0289846 90.0483";scale = "0.125 0.166666 99.0006";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "589.17 1956.54 372.503";rotation = "-0.0289973 0.999579 1.62852e-07 180";scale = "12.5 6.66667 20";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "590.437 1957.44 375.403";rotation = "0 0 -1 17.5937";scale = "0.6 0.6 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";nametoset = "Exit";frequency = "37";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "590.437 1957.44 375.103";rotation = "0.988237 0.152931 -1.93854e-07 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "589.176 1955.38 374.281";rotation = "0.0289838 -0.999159 -0.0289863 90.0484";scale = "0.125 0.166666 7.24216";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "593.04 1955.61 375.503";rotation = "-0.0289972 0.999579 1.26706e-06 180";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.69 1946.69 376.753";rotation = "0.70696 0.0205057 0.706957 177.65";scale = "0.125 0.166666 120.001";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "593.6 1946.32 371.104";rotation = "0.963511 -0.0533638 0.262295 23.8464";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "559.486 1958.85 398.753";rotation = "0.555028 0.588196 0.588192 238.063";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "558.68 1968.42 398.753";rotation = "0.588196 -0.555027 0.588192 238.063";scale = "0.875 0.166666 39.0058";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "558.664 1968.66 397.003";rotation = "0 0 -1 3.32355";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "586.011 1951.37 398.904";rotation = "-0.999159 -0.0289872 -0.0289871 90.0482";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "36";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "586.011 1951.37 398.904";rotation = "0.999159 0.0289872 -0.0289874 90.0477";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "588.93 1960.65 397.003";rotation = "1.5508e-06 -9.1272e-06 -1 93.3239";scale = "6.25 21.6666 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "593.29 1955.62 372.771";rotation = "0.0289838 -0.99916 -0.0289863 90.0483";scale = "0.125 0.166666 40.8794";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "593.29 1955.62 375.253";rotation = "0.0289838 -0.99916 -0.0289863 90.0483";scale = "0.125 0.166666 40.8794";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.389 1960.48 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.32 1961.66 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.453 1959.38 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.244 1962.98 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.528 1958.08 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.171 1964.23 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.601 1956.83 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.104 1965.39 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.68 1955.47 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.039 1966.51 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "617.815 1972.11 399.753";rotation = "-0.0289872 0.999159 -0.0289871 90.0482";scale = "0.375008 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.753 1954.21 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "558.968 1967.72 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "618.945 1952.63 398.753";rotation = "-0.0289872 0.999159 -0.0289871 90.0482";scale = "0.875003 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.84 1952.71 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.923 1951.29 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 117.998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "559.992 1950.1 400.253";rotation = "0.599672 -0.565863 0.565856 118.1";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "604.447 1951.13 379.503";rotation = "-0.0205063 0.706955 0.706961 177.65";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";nametoset = "Entry";frequency = "37";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "604.447 1951.13 375.503";rotation = "-0.0205092 0.70696 -0.706956 182.35";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "StationInventory";position = "613.383 1962.21 374.253";rotation = "-0.599668 0.565861 0.565862 118.1";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "613.208 1958.33 374.341";rotation = "0.555031 0.588192 0.588193 238.063";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";nametoset = "Sniping Tower";frequency = "36";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "613.208 1958.33 374.341";rotation = "-0.555027 -0.588194 0.588195 238.063";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.932 1957.07 374.253";rotation = "0.565862 0.599671 0.565858 118.1";scale = "0.875 0.166666 20.815";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.313 1967.71 372.503";rotation = "0 0 1 176.677";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "613.945 1956.82 372.503";rotation = "0 0 1 176.677";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "618.381 1962.34 398.753";rotation = "-0.599672 0.565856 0.565863 118.1";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "618.079 1971.86 398.753";rotation = "0.588196 -0.555027 0.588192 238.063";scale = "0.875 0.166666 38.004";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "618.064 1972.11 397.003";rotation = "0 0 -1 3.32355";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "619.195 1952.64 397.003";rotation = "0 0 -1 3.32355";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "360.357 1886.94 261.286";rotation = "0 0 1 203.813";scale = "2 2.66666 400";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "369.917 1890.65 461.786";rotation = "0 0 1 203.813";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "369.817 1890.42 464.536";rotation = "0.642196 0.418534 -0.642194 225.422";scale = "0.375008 0.166666 28.0038";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "369.687 1890.74 464.536";rotation = "0.699378 -0.147465 -0.699375 163.222";scale = "0.375 0.166666 27.9958";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "368.68 1890.92 465.036";rotation = "-0.958302 0.202059 0.202062 92.4398";scale = "0.125 0.166666 28.0046";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "367.406 1891.48 465.036";rotation = "-0.958302 0.202059 0.202062 92.4398";scale = "0.125 0.166666 28.0036";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "366.261 1891.99 465.036";rotation = "-0.958302 0.202059 0.202062 92.4398";scale = "0.125 0.166666 28.0044";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "365.038 1892.53 465.036";rotation = "-0.958302 0.202059 0.202062 92.4398";scale = "0.125 0.166666 28.0054";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "360.357 1886.94 461.286";rotation = "0 0 1 203.813";scale = "3.75 4.99999 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "364.063 1877.38 461.786";rotation = "0 0 1 203.813";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "360.387 1886.9 461.686";rotation = "0 0 1 203.813";scale = "4.25 5.66666 6.8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "363.809 1893.07 465.036";rotation = "-0.958302 0.202059 0.202062 92.4398";scale = "0.125 0.166666 28.0044";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "356.651 1896.5 461.786";rotation = "0 0 1 203.813";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "362.495 1893.65 465.036";rotation = "-0.958302 0.202059 0.202062 92.4398";scale = "0.125 0.166666 28.0046";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "361.339 1894.16 465.036";rotation = "-0.958302 0.202059 0.202062 92.4398";scale = "0.125 0.166666 28.0046";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "360.142 1894.69 465.036";rotation = "-0.958302 0.202059 0.202062 92.4398";scale = "0.125 0.166666 28.0044";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "358.977 1895.2 465.036";rotation = "-0.958302 0.202059 0.202062 92.4398";scale = "0.125 0.166666 28.0036";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "357.77 1895.73 465.036";rotation = "-0.958302 0.202059 0.202062 92.4398";scale = "0.125 0.166666 28.0028";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "354.143 1889.21 463.486";rotation = "-0.418532 0.642194 0.642198 134.578";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";frequency = "35";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "354.143 1889.21 464.286";rotation = "-0.418533 0.642197 -0.642194 225.422";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "363.835 1877.48 464.536";rotation = "-0.699374 0.147464 0.699378 196.777";scale = "0.375 0.166666 27.9978";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "350.896 1883.46 464.286";rotation = "0.47922 -0.735318 -0.479225 107.345";scale = "0.25 0.166666 28.0038";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "356.55 1896.27 465.036";rotation = "-0.479225 0.735315 -0.479224 107.345";scale = "0.125 0.166666 28.0046";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "360.37 1886.98 260.786";rotation = "0 0 1 203.813";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2205246";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "350.797 1883.23 461.786";rotation = "0 0 1 203.813";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "350.568 1883.33 464.076";rotation = "-0.418536 0.642197 0.642193 134.578";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); \ No newline at end of file diff --git a/Univ/Data/2205246/Buildings/8.cs b/Univ/Data/2205246/Buildings/8.cs new file mode 100644 index 0000000..720068a --- /dev/null +++ b/Univ/Data/2205246/Buildings/8.cs @@ -0,0 +1,476 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Castiger" +// Created in mission "OceanExploration" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1059.66 1895.96 5375.62";rotation = "0 0 -1 58.5666";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1057.12 1898.71 5355.62";rotation = "0 0 -1 62.4031";scale = "5 6.66667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1064.13 1906.33 5375.37";rotation = "0.218921 0.891386 0.396868 191.134";scale = "0.5 0.166666 34";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1051.39 1878.48 5385.62";rotation = "0 0 -1 76.8577";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1076.97 1891.84 5355.62";rotation = "0 0 -1 62.4031";scale = "3.75 5 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1051.7 1875.83 5355.62";rotation = "0 0 -1 62.4031";scale = "3.75 10 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1085.16 1914.86 5380.37";rotation = "0.208038 0.847078 -0.489059 166.302";scale = "0.5 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1057.11 1873.23 5385.62";rotation = "0 0 1 29.7146";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1039.23 1897.4 5355.62";rotation = "0 0 -1 62.4031";scale = "1 1.66666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1072.97 1911.95 5355.62";rotation = "0 0 -1 62.4031";scale = "2.25 3 18";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1076.5 1909 5364.37";rotation = "-0.775168 -0.469487 -0.422726 110.173";scale = "0.5 0.166666 38";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1028.13 1907.11 5380.62";rotation = "0 0 -1 58.6869";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1053.65 1928.01 5385.62";rotation = "0 0 1 26.764";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1072.81 1927.69 5380.62";rotation = "0 0 -1 49.4208";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1058.98 1932.71 5385.21";rotation = "0.81948 0.496326 0.286552 230.64";scale = "0.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1025.61 1904.04 5355.62";rotation = "0 0 -1 62.4031";scale = "2.5 6.66667 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1092.76 1880.37 5371.62";rotation = "0 0 -1 108.95";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1039.67 1928.14 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 10 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1094.11 1879.48 5355.62";rotation = "0 0 -1 62.4031";scale = "4 5.33333 32";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1096.51 1898.91 5355.62";rotation = "0 0 -1 62.4031";scale = "1.75 2.33333 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1084.89 1927.65 5380.62";rotation = "0 0 -1 10.8467";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1082.05 1930.59 5355.62";rotation = "0 0 -1 62.4031";scale = "6.25 8.33333 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1088.76 1867.51 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 1.66666 12";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1045.01 1936.45 5385.62";rotation = "0 0 -1 25.3553";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1097.94 1913.22 5355.62";rotation = "0 0 -1 62.4031";scale = "2.25 3 18";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1016.4 1884.18 5355.62";rotation = "0 0 -1 62.4031";scale = "6.25 8.33333 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1098.89 1901.62 5362.37";rotation = "0.78412 0.474906 0.399525 152.794";scale = "0.125 0.666666 24";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1014.36 1879.81 5380.62";rotation = "0 0 1 232.232";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1088.01 1854.27 5380.62";rotation = "0 0 -1 51.5326";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "1064.04 1849.18 5345.62";rotation = "0 0 -1 62.4031";scale = "100 133.333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1014.39 1917.67 5355.62";rotation = "0 0 -1 62.4031";scale = "1.25 0.666667 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1038.24 1845.03 5355.62";rotation = "0 0 -1 62.4031";scale = "10 13.3333 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1114.09 1888.95 5370.62";rotation = "0 0 -1 33.1709";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1043 1846.37 5395.62";rotation = "0 0 1 44.8969";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1100.22 1861.28 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.666667 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1112.99 1903.8 5355.62";rotation = "0 0 -1 62.4031";scale = "2 2.66666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1000.68 1890.52 5385.37";rotation = "0.830376 0.502924 0.239881 223.213";scale = "0.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1107.67 1870.11 5355.62";rotation = "0 0 -1 62.4031";scale = "1.75 2.33333 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1114.43 1887.3 5355.62";rotation = "0 0 -1 62.4031";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1047.12 1956.52 5390.37";rotation = "0.194882 0.793506 -0.576514 163.883";scale = "0.5 0.166666 34";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1090.17 1846.97 5385.62";rotation = "0 0 1 197.805";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1116.89 1911.73 5368.37";rotation = "0.216416 0.881195 -0.420309 168.214";scale = "0.5 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "1038.31 1845.24 5395.62";rotation = "0 0 1 20.4706";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1087.84 1843.63 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 10 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1074.28 1838.69 5385.62";rotation = "0 0 -1 26.4418";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "1117.42 1894.65 5357.94";rotation = "-0.944644 0.231999 0.231999 93.2614";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";frequency = "35";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "1117.42 1894.65 357.936";rotation = "0.944643 -0.232001 0.232001 93.2603";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1106.11 1851 5385.37";rotation = "0.191248 0.778711 0.597523 196.697";scale = "0.5 0.166666 100";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1105.98 1933.61 5355.62";rotation = "0 0 -1 62.4031";scale = "1.75 2.33333 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "883.094 1943.87 5420.84";rotation = "0.696679 -0.171104 0.696679 199.418";scale = "0.125 133.333 800";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1123.99 1892.75 5373.37";rotation = "0.226195 0.921014 -0.317127 171.093";scale = "0.5 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1079.31 1955.14 5385.62";rotation = "0 0 1 100.081";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1119.11 1917.91 5355.62";rotation = "0 0 -1 62.4031";scale = "3.25 4.33333 26";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "883.006 1943.7 5424.03";rotation = "0.696679 -0.171104 0.696679 199.418";scale = "0.125 133.333 800";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1128.7 1905.85 5373.37";rotation = "0.815255 0.493766 -0.302579 126.908";scale = "0.5 0.166666 22";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1001.4 1877.92 5380.37";rotation = "0.201739 0.821428 -0.533439 165.073";scale = "0.5 0.166666 32";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "993.998 1906.7 5385.62";rotation = "0 0 1 105.339";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "990.859 1904.1 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 10 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "990.646 1903.08 5385.62";rotation = "0 0 -1 54.3033";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1081.29 1962.49 5355.62";rotation = "0 0 -1 62.4031";scale = "5 10 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1083.54 1964.35 5380.62";rotation = "0 0 1 15.361";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1004.43 1850.54 5375.62";rotation = "0 0 1 36.3885";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "990.438 1909.19 5380.62";rotation = "0 0 1 29.6818";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1003.5 1939.04 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 10 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1111.42 1944.37 5385.62";rotation = "0 0 -1 103.842";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1109.61 1947.98 5385.62";rotation = "0 0 1 68.0341";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1118.1 1853.32 5355.62";rotation = "0 0 -1 62.4031";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1042.84 1967.7 5385.62";rotation = "0 0 -1 46.0262";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1035.05 1963.79 5390.62";rotation = "0 0 -1 82.0504";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "989.193 1878.74 5355.62";rotation = "0 0 -1 62.4031";scale = "1.25 1.66666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1045.41 1967.24 5390.62";rotation = "0 0 -1 40.9608";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1002.87 1847.79 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 3.33333 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "1049.74 1822.99 5357.81";rotation = "-0.393681 0.650008 0.650004 137.023";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";frequency = "36";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "1049.74 1822.99 357.81";rotation = "0.39368 -0.650003 0.650009 137.023";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1108.2 1954.17 5380.62";rotation = "0 0 -1 17.286";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1134.46 1897.43 5355.62";rotation = "0 0 -1 62.4031";scale = "4.5 6 36";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1104.31 1956.4 5385.37";rotation = "0.759487 0.45999 -0.459988 105.568";scale = "0.5 0.166666 16.4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "997.148 1939.12 5380.62";rotation = "0 0 -1 113.109";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "984.187 1898.74 5385.62";rotation = "0 0 1 199.425";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "992.465 1859.45 5375.62";rotation = "0 0 1 214.488";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1049.24 1970.27 5390.62";rotation = "0 0 -1 97.8858";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "980.694 1900.83 5380.62";rotation = "0 0 -1 105.231";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.78";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1113.1 1950.41 5380.62";rotation = "0 0 -1 69.8504";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1039.7 1968.73 5385.62";rotation = "0 0 1 119.387";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "983.788 1863.99 5370.62";rotation = "0 0 -1 58.5781";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "985.402 1863.25 5355.62";rotation = "0 0 -1 62.4031";scale = "5 6.66667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1137.21 1871.83 5355.62";rotation = "0 0 -1 62.4031";scale = "3.25 6 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1134.61 1930.09 5376.62";rotation = "0 0 1 47.3908";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "997.644 1949.28 5385.62";rotation = "0 0 -1 50.5799";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1046.77 1976.29 5390.62";rotation = "0 0 1 119.79";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1045.06 1977.34 5355.62";rotation = "0 0 -1 62.4031";scale = "8.75 11.6667 70";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1073.34 1811.12 5385.62";rotation = "0 0 -1 24.7235";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1036.56 1823.34 5395.37";rotation = "-0.45999 0.759487 -0.459988 105.568";scale = "0.125 0.666666 39";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1091.9 1968.23 5385.37";rotation = "0.213769 0.870411 0.443494 192.432";scale = "0.5 0.166666 41";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "973.057 1890.38 5355.62";rotation = "0 0 -1 62.4031";scale = "1.5 2.33333 19.6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1108.86 1821.67 5355.62";rotation = "0 0 -1 62.4031";scale = "8.75 2.66666 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1138.31 1936.3 5355.62";rotation = "0 0 -1 62.4031";scale = "5.25 7 42";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1044.45 1982.18 5390.62";rotation = "0 0 -1 89.1517";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1109.06 1822.13 5355.62";rotation = "0 0 -1 62.4031";scale = "0 0 0";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1163.91 1920.77 5390.37";rotation = "0.775167 0.469487 -0.422726 110.173";scale = "0.5 0.166666 100";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1119.56 1963.99 5355.62";rotation = "0 0 -1 62.4031";scale = "12.5 6.66667 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1072.73 1805.25 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 10 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1068.13 1805.01 5385.62";rotation = "0 0 1 20.5194";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1040 1807.54 5355.62";rotation = "0 0 -1 62.4031";scale = "0.75 1.33333 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1121.25 1963.3 5385.62";rotation = "0 0 -1 43.3279";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "980.834 1940.05 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.333333 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "971.346 1919.34 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.666667 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1122.33 1828.24 5355.62";rotation = "0 0 -1 62.4031";scale = "0.75 0.666667 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1131.78 1837.45 5355.62";rotation = "0 0 -1 62.4031";scale = "1.25 1.66666 22";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1115.63 1820.86 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.633333 17.8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "978.654 1846.7 5380.62";rotation = "0 0 1 141.193";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1153.49 1888.69 5355.62";rotation = "0 0 -1 62.4031";scale = "3.75 5 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1105.88 1812.34 5380.62";rotation = "0 0 1 42.3875";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "967.581 1876.44 5355.62";rotation = "0 0 -1 62.4031";scale = "2.5 6 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1004.24 1972.87 5390.62";rotation = "0 0 -1 113.57";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1037.39 1986.76 5385.62";rotation = "0 0 1 192.525";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1112.07 1819.18 5380.37";rotation = "-0.759487 -0.45999 -0.459988 105.568";scale = "0.5 0.166666 22.8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "968.855 1928.12 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 1.66666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1029.23 1984.83 5390.37";rotation = "0.759487 0.45999 -0.459988 105.568";scale = "0.5 0.166666 19.64";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "987.03 1962.14 5355.62";rotation = "0 0 -1 62.4031";scale = "0.75 2.66666 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1054.38 1997.87 5395.37";rotation = "-0.500896 0.827023 -0.255218 134.301";scale = "0.125 0.666666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "971.072 1848.8 5355.62";rotation = "0 0 -1 62.4031";scale = "2.5 8 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1001.44 1978.76 5385.62";rotation = "0 0 -1 54.8692";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.78";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "972.023 1859.24 5375.37";rotation = "0.759487 0.45999 -0.459988 105.568";scale = "0.5 0.166666 35.4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1115.17 1812.48 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.666667 18";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "945.457 1931.12 5385.37";rotation = "-0.759487 -0.45999 -0.459988 105.568";scale = "0.5 0.166666 75.4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "964.386 1864.74 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 1.66666 12";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "978.217 1954.2 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 1.66666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1108.63 1806.89 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.666667 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "997.394 1975.61 5390.62";rotation = "0 0 1 189.528";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1130.27 1821.48 5355.62";rotation = "0 0 -1 62.4031";scale = "2.25 4 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "968.093 1848.85 5380.62";rotation = "0 0 -1 117.591";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "961.908 1922.34 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.666667 7.8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1161.65 1904.03 5390.62";rotation = "0 0 1 72.5496";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1102.47 1989.02 5355.62";rotation = "0 0 -1 62.4031";scale = "4.5 6 36";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "968.402 1940.65 5355.62";rotation = "0 0 -1 62.4031";scale = "3.75 4 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1114.49 1806.92 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.666667 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "954.284 1901.8 5375.62";rotation = "0 0 1 105.514";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "954.443 1902.43 5355.62";rotation = "0 0 -1 62.4031";scale = "5 6.66667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1145.22 1832.15 5374.62";rotation = "0 0 -1 116.623";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1123.98 1980.71 5385.62";rotation = "0 0 1 136.869";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "987.6 1816.27 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 10 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "998.577 1985.17 5355.62";rotation = "0 0 -1 62.4031";scale = "8.75 11.6667 70";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1008.58 1799.33 5355.62";rotation = "0 0 -1 62.4031";scale = "10 3.33333 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1085.35 1999.84 5395.62";rotation = "0 0 -1 119.474";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1160.69 1852.61 5373.37";rotation = "0.171102 0.69668 -0.696678 160.582";scale = "0.5 0.166666 33";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1072.77 2004.05 5355.62";rotation = "0 0 -1 62.4031";scale = "7 13.3333 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "987.822 1815.38 5355.62";rotation = "0 0 -1 62.4031";scale = "0 0 0";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1078.23 2001.72 5395.62";rotation = "0 0 1 95.0663";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1147.7 1830.51 5355.62";rotation = "0 0 -1 62.4031";scale = "4.5 5 38";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "964.798 1844.13 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.666667 1.1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1111.09 1799.75 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.666667 12";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1100.19 1794.1 5355.62";rotation = "0 0 -1 62.4031";scale = "1.5 2 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "976.142 1964.89 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 1.66666 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "957.102 1931.96 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 1.33333 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1164.65 1858.98 5373.62";rotation = "0 0 1 7.66524";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "956.173 1856.71 5355.62";rotation = "0 0 -1 62.4031";scale = "1 0.666667 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "949.672 1884.52 5355.62";rotation = "0 0 -1 62.4031";scale = "1.25 3 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1033.66 1788.17 5395.62";rotation = "0 0 -1 100.545";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "988.154 1809.03 5380.62";rotation = "0 0 -1 33.8083";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "974.699 1823.97 5385.37";rotation = "0.819481 0.496325 -0.286553 129.361";scale = "0.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "951.476 1925.87 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 2 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "996.47 1989.66 5385.62";rotation = "0 0 1 65.7446";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1174.98 1907 5385.62";rotation = "0 0 1 69.1869";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1169.2 1862.27 5355.62";rotation = "0 0 -1 62.4031";scale = "6.25 8.66667 36";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "959.09 1948.67 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.666667 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1036.47 1784.11 5395.62";rotation = "0 0 1 11.6743";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1082.59 1783.35 5355.62";rotation = "0 0 -1 62.4031";scale = "0 0.666667 18";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1071.92 1781.52 5355.62";rotation = "0 0 -1 62.4031";scale = "1.5 2.66666 14";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "948.92 1866.41 5370.62";rotation = "0 0 1 75.9307";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1174.82 1908.52 5385.62";rotation = "0 0 1 225.96";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1163.47 1951.52 5390.62";rotation = "0 0 1 131.041";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.78";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1128.76 1799.55 5355.62";rotation = "0 0 -1 62.4031";scale = "6.25 8.33333 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1034.66 1779.72 5355.62";rotation = "0 0 -1 62.4031";scale = "10 13.3333 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1177.46 1908.91 5355.62";rotation = "0 0 -1 62.4031";scale = "8.75 11.6667 70";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1029.15 1780.72 5390.62";rotation = "0 0 1 151.277";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "944.777 1867.01 5355.62";rotation = "0 0 -1 62.4031";scale = "5 6.66667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1029.01 2014.59 5370.37";rotation = "0.815255 0.493766 0.302579 233.092";scale = "0.5 0.166666 22";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1032.31 1777.66 5390.62";rotation = "0 0 1 208.121";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "996.958 1998.01 5390.62";rotation = "0 0 1 124.009";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "956.576 1832.4 5355.62";rotation = "0 0 -1 62.4031";scale = "6.25 8.33333 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1069.47 1775.81 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.333333 12";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1176.53 1935.41 5395.37";rotation = "-0.496326 0.81948 -0.286552 129.36";scale = "0.125 0.666666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1116.38 1791.92 5380.37";rotation = "0.171102 0.69668 -0.696678 160.582";scale = "0.5 0.166666 25.4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1042.47 2015.58 5355.62";rotation = "0 0 -1 62.4031";scale = "3 4.33333 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "946.251 1850.95 5355.62";rotation = "0 0 -1 62.4031";scale = "0.25 0.333333 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "975.871 1979.51 5390.37";rotation = "0.823398 0.498698 -0.27077 131.825";scale = "0.5 0.166666 20";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "962.615 1971.91 5385.62";rotation = "0 0 1 50.9731";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1133 1795.38 5380.62";rotation = "0 0 1 43.7552";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "941.618 1932.1 5385.62";rotation = "0 0 1 13.7624";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1018.56 2011.87 5355.62";rotation = "0 0 -1 62.4031";scale = "3.75 5.33333 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1064.15 1772.19 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.666667 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1167.54 1956.66 5395.62";rotation = "0 0 -1 96.4425";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1102.18 1999.33 5373.37";rotation = "-0.132552 0.736586 0.663227 166.387";scale = "0.5 0.166666 70";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1071 1771.32 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.333333 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "945.392 1846.03 5355.62";rotation = "0 0 -1 62.4031";scale = "0.25 0.333333 13";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1169.17 1955.16 5395.62";rotation = "0 0 -1 85.1198";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "942.049 1939.73 5385.62";rotation = "0 0 1 182.276";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1096.67 1773.88 5355.62";rotation = "0 0 -1 62.4031";scale = "6.25 8.33333 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1096.39 1771.93 5380.62";rotation = "0 0 -1 42.1472";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1074.51 1768.59 5355.62";rotation = "0 0 -1 62.4031";scale = "0.5 0.666667 10";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1171.99 1960.35 5355.62";rotation = "0 0 -1 62.4031";scale = "10 13.3333 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "942.266 1842.75 5355.62";rotation = "0 0 -1 62.4031";scale = "0.25 0.333333 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "949.019 1826.64 5380.62";rotation = "0 0 1 198.337";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "945.184 1958.66 5355.62";rotation = "0 0 -1 62.4031";scale = "17.5 8.66667 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "929.451 1913.33 5355.62";rotation = "0 0 -1 62.4031";scale = "3.75 8.33333 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1045.39 2020.82 5365.37";rotation = "0.218921 0.891386 0.396868 191.134";scale = "0.5 0.166666 32";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "927.625 1884.59 5375.62";rotation = "0 0 1 3.35729";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "931.627 1936.66 5380.62";rotation = "0 0 -1 62.1155";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1019.64 2019.77 5370.37";rotation = "0.137781 0.561005 0.816266 202.671";scale = "0.5 0.166666 25";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "932.934 1852.03 5355.62";rotation = "0 0 -1 62.4031";scale = "2.5 3.66667 18";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "995.967 2017.2 5385.37";rotation = "-0.127281 -0.518251 0.845704 203.466";scale = "0.5 0.166666 22";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "927.41 1914.55 5355.62";rotation = "0 0 -1 62.4031";scale = "0 0 0";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1168.09 1814.48 5355.62";rotation = "0 0 -1 62.4031";scale = "5 6.66667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1193.44 1866.53 5395.62";rotation = "0 0 -1 7.66218";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1085.6 1760.93 5355.62";rotation = "0 0 -1 62.4031";scale = "0.875 1.16667 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1088.31 1764.15 5380.37";rotation = "0.214041 0.82618 -0.521166 167.022";scale = "0.5 0.166666 24";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1138.28 2009.98 5355.62";rotation = "0 0 -1 62.4031";scale = "3 4.99999 27";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1119.25 1763.96 5380.37";rotation = "0.759487 0.45999 -0.459988 105.568";scale = "0.5 0.166666 24.2";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "996.788 2019.81 5385.62";rotation = "0 0 1 85.3438";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "920.783 1889.51 5355.62";rotation = "0 0 -1 62.4031";scale = "0 0 0";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1085.84 2034.92 5355.62";rotation = "0 0 -1 62.4031";scale = "3 5.99999 30";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "917.348 1884.28 5355.62";rotation = "0 0 -1 62.4031";scale = "8.75 11.6667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1192.42 1832.73 5355.62";rotation = "0 0 -1 62.4031";scale = "5 6.66667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "921.638 1841.83 5390.62";rotation = "0 0 -1 67.2463";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1027.58 2039.69 5355.62";rotation = "0 0 -1 62.4031";scale = "5 8.33332 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "988.889 1773.31 5395.37";rotation = "0.231999 0.944644 0.231999 93.2614";scale = "0.125 0.666666 147";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1003.07 1759.54 5390.62";rotation = "0 0 -1 38.5909";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1064.85 1746.9 5355.62";rotation = "0 0 -1 62.4031";scale = "8.75 11.6667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "945.547 1799.81 5375.62";rotation = "0 0 1 200.612";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1162.75 1788.06 5385.62";rotation = "0 0 1 43.8746";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.8";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1000.12 1761.35 5390.62";rotation = "0 0 -1 7.96315";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.78";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1203.67 1849.23 5395.37";rotation = "-0.473751 0.782205 -0.404618 112.509";scale = "0.125 0.666666 140";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1100.35 1752.15 5355.62";rotation = "0 0 -1 62.4031";scale = "1.5 0.666667 8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "975.634 1769.03 5355.62";rotation = "0 0 -1 62.4031";scale = "10 3.33333 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1208.05 1867.91 5395.62";rotation = "0 0 -1 89.1413";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "951.088 1789.1 5355.62";rotation = "0 0 -1 62.4031";scale = "8.75 11.6667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1059.14 2049.15 5355.62";rotation = "0 0 -1 62.4031";scale = "4.75 5.99999 38";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1131.92 1759.01 5380.62";rotation = "0 0 1 23.1559";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1130.23 1757.98 5355.62";rotation = "0 0 -1 62.4031";scale = "6.25 8.33333 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1129.43 1755.58 5375.62";rotation = "0 0 1 89.0795";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1209.02 1850.13 5390.62";rotation = "0 0 1 175.293";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1163.78 1780.25 5380.62";rotation = "0 0 -1 107.176";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "986.945 2033.2 5355.62";rotation = "0 0 -1 62.4031";scale = "5 11.6667 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "947.985 1786.78 5375.62";rotation = "0 0 1 163.956";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1212.9 1866.28 5395.62";rotation = "0 0 1 16.4313";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1214.41 1866.18 5355.62";rotation = "0 0 -1 62.4031";scale = "10 13.3333 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1038.54 1755.12 5395.37";rotation = "-0.497926 0.822126 -0.276003 131.001";scale = "0.125 0.666666 76";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "926.932 1812.3 5357.83";rotation = "-0.393681 0.650008 0.650004 137.023";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";frequency = "34";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "926.932 1812.3 357.834";rotation = "0.39368 -0.650003 0.650009 137.023";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "998.996 1749.47 5355.62";rotation = "0 0 -1 62.4031";scale = "9.25 13.3333 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1216.11 1861.19 5390.62";rotation = "0 0 1 172.267";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.78";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "913.497 1830.64 5355.62";rotation = "0 0 -1 62.4031";scale = "10 13.3333 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1167.08 1776.52 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 10 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1005.73 2047.09 5385.62";rotation = "0 0 1 113.408";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.78";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1219.53 1925.69 5380.62";rotation = "0 0 1 132.151";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "915.539 1829.2 5390.62";rotation = "0 0 1 74.5882";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.78";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "999.961 1746.52 5395.62";rotation = "0 0 1 34.0094";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "993.441 2111.5 5371.87";rotation = "0.696677 -0.171102 0.696682 199.419";scale = "2.5 3.33333 738";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "993.441 2111.49 5387.87";rotation = "0.696677 -0.171102 0.696682 199.419";scale = "2.5 3.33333 738";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "993.442 2111.47 5355.87";rotation = "0.69668 -0.171102 0.696678 199.419";scale = "2.5 3.33333 738";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1116.86 1734.6 5385.37";rotation = "0.192474 0.783704 0.590561 196.505";scale = "0.5 0.166666 38";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1172.16 1772.16 5380.62";rotation = "0 0 1 132.217";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.78";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "993.451 2111.51 5403.87";rotation = "0.696677 -0.171102 0.696682 199.419";scale = "2.5 3.33333 738";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1223.67 1923.55 5355.62";rotation = "0 0 -1 62.4031";scale = "5 16.6666 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1219.29 1855.55 5390.62";rotation = "0 0 -1 42.692";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "995.049 2116.02 5378.62";rotation = "0.69668 -0.171102 0.696678 199.419";scale = "0.125 0.166666 739.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1322.51 1944.84 5381.12";rotation = "-0.696678 0.171098 0.696681 199.419";scale = "0.125 0.166666 739.002";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "995.06 2116.02 5365.12";rotation = "-0.232002 -0.944644 0.231997 93.2609";scale = "0.125 0.166666 738.998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "995.037 2116 5362.62";rotation = "0.696677 -0.171102 0.696682 199.419";scale = "0.125 0.166666 739.01";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "995.056 2116.03 5394.62";rotation = "0.696677 -0.171102 0.696682 199.419";scale = "0.125 0.166666 739.016";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "993.442 2111.51 5419.87";rotation = "0.69668 -0.171102 0.696678 199.419";scale = "2.5 3.33333 738";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1322.52 1944.86 5397.12";rotation = "0.696682 -0.171099 -0.696678 160.581";scale = "0.125 0.166666 738.982";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1141.27 1752.11 5380.37";rotation = "-0.733061 -0.443984 -0.515267 99.2214";scale = "0.5 0.166666 26";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "899.817 1828.06 5390.62";rotation = "0 0 -1 107.724";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1000.49 2058.02 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 9.99999 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1042.65 1926.75 5545.62";rotation = "0 0 -1 62.4031";scale = "0 -23.3333 0";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1066.81 1726.13 5375.37";rotation = "0.171102 0.69668 -0.696678 160.582";scale = "0.5 0.166666 19.2";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "1183.38 1774.46 5358.45";rotation = "-0.393681 0.650008 0.650004 137.023";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";frequency = "32";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "1183.38 1774.46 358.448";rotation = "0.39368 -0.650003 0.650009 137.023";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "888.788 1934.85 5379.73";rotation = "0.650008 0.393681 0.650004 137.023";scale = "9.963 0.166666 20.873";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.777";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "936.621 1764.69 5375.37";rotation = "0.171102 0.69668 0.696678 199.419";scale = "0.5 0.166666 21.6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "897.8 1958.83 5360.87";rotation = "0 0 1 206.321";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "890.986 1939.59 5357.71";rotation = "-0.231998 -0.944645 0.231998 93.2609";scale = "1.046 3.479 1";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.777";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1154.54 1748.01 5382.62";rotation = "0 0 -1 32.2822";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1033.76 2095.8 5410.62";rotation = "0.69668 -0.171102 0.696678 199.419";scale = "0.125 0.166666 651.66";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "890.533 1939.59 5357.39";rotation = "-0.759483 -0.459992 -0.459992 105.567";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";nametoset = "Observers";frequency = "39";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "890.533 1939.59 357.389";rotation = "0.759485 0.45999 -0.459991 105.568";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1322.52 1944.85 5413.12";rotation = "-0.696678 0.171098 0.696681 199.419";scale = "0.125 0.166666 652.43";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "892.312 1944.79 5399.9";rotation = "-0.45999 0.759487 -0.459988 105.568";scale = "0.125 5.49827 20.873";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1170.37 1757.87 5385.37";rotation = "0.200076 0.814658 -0.544336 164.771";scale = "0.5 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "894.173 1958.18 5356.9";rotation = "-0.117788 0.769643 -0.627516 130.508";scale = "2.625 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "889.419 1945.85 5357.87";rotation = "0.171102 0.69668 0.696678 199.419";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";nametoset = " Fighters/Control Room";frequency = "37";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "889.419 1945.85 357.865";rotation = "-0.1711 -0.696678 0.696682 199.419";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1026.17 1721.87 5370.62";rotation = "0 0 1 6.2973";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "891.727 1950.73 5355.62";rotation = "0 0 -1 62.4031";scale = "2.5 3.33333 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "891.438 1955.24 5359.49";rotation = "-0.944644 0.231999 0.231999 93.2614";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "885.479 1936.58 5357.76";rotation = "0.171101 0.696681 0.696678 199.419";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1108.52 1724.54 5380.62";rotation = "0 0 -1 11.0919";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1236.31 1877.3 5395.37";rotation = "0.78412 0.474907 0.399525 152.795";scale = "0.125 0.666666 36";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1107.4 1721.26 5380.62";rotation = "0 0 -1 93.3887";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "881.12 1866.97 5355.62";rotation = "0 0 -1 62.4031";scale = "5 13.3333 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1110.8 1720.84 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 10 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1096.84 1716.82 5385.62";rotation = "0 0 1 73.8961";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "885.202 1948.5 5379.87";rotation = "-0.45999 0.759487 -0.459988 105.568";scale = "9.892 0.166666 20.873";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "882.264 1932.62 5355.62";rotation = "0 0 -1 62.4031";scale = "2.5 3.33333 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "882.783 1943.88 5360.08";rotation = "-0.518052 0.855349 1.08423e-06 180";scale = "2.60913 0.166666 8.93402";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";prevscale = "2.60913 0.166666 8.93402";state = "closed";timeout = "0";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "877.711 1923.31 5360.87";rotation = "0 0 1 27.3094";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "972.675 2105.59 5371.87";rotation = "-0.459991 0.759484 -0.459991 105.569";scale = "2.5 3.33333 339.8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "972.685 2105.58 5387.87";rotation = "-0.459989 0.759487 -0.459988 105.567";scale = "2.5 3.33333 339.8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "885.223 1948.48 5401.9";rotation = "0.650008 0.393681 -0.650004 222.977";scale = "0.125 0.166666 20.8748";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "877.141 1927.13 5357.61";rotation = "0.421009 0.57318 0.703005 167.717";scale = "2.125 0.166666 5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1158.7 1735.43 5377.62";rotation = "0 0 1 144.35";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "972.677 2105.59 5355.87";rotation = "-0.459988 0.759488 -0.459989 105.568";scale = "2.5 3.33333 334";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1025.43 1711.8 5375.62";rotation = "0 0 1 69.3313";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "972.68 2105.59 5403.87";rotation = "-0.459991 0.759484 -0.459992 105.569";scale = "2.5 3.33333 339.8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1162.68 1739.36 5355.62";rotation = "0 0 -1 62.4031";scale = "6.75 9 54";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "939.392 1751.96 5355.62";rotation = "0 0 -1 62.4031";scale = "5 6.66667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "880.387 1939.23 5415.9";rotation = "0.650004 0.39368 0.650008 137.022";scale = "6.125 0.166666 20.8748";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1034.87 1710.47 5375.37";rotation = "-0.759487 -0.45999 -0.459988 105.568";scale = "0.5 0.166666 22.4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "883.428 1943.64 5422.54";rotation = "-0.393682 0.650003 0.650008 137.022";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";frequency = "39";teleMode = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "883.428 1943.64 422.536";rotation = "-0.393685 0.650006 -0.650003 222.977";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "988.223 1720.5 5355.62";rotation = "0 0 -1 62.4031";scale = "3.75 10 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "889.836 1957.36 5378.62";rotation = "0.650005 0.393687 0.650003 137.022";scale = "0.125 0.166666 339.166";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "968.4 2107.62 5381.12";rotation = "-0.650001 -0.393683 0.65001 137.023";scale = "0.125 0.166666 339.168";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "968.393 2107.65 5365.12";rotation = "-0.649999 -0.393689 0.650008 137.022";scale = "0.125 0.166666 339.164";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "889.835 1957.37 5362.62";rotation = "0.650007 0.393679 0.650005 137.023";scale = "0.125 0.166666 339.168";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "987.928 1719.71 5380.62";rotation = "0 0 1 100.823";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "972.677 2105.59 5419.87";rotation = "-0.459992 0.759485 -0.45999 105.568";scale = "2.5 3.33333 339.8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "908.106 1781.13 5355.62";rotation = "0 0 -1 62.4031";scale = "6.25 8.33333 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "889.842 1957.36 5394.62";rotation = "0.650005 0.393678 0.650009 137.023";scale = "0.125 0.166666 339.146";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "880.599 1939.86 5423.28";rotation = "-0.759485 -0.459992 -0.459988 105.568";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "968.393 2107.65 5397.12";rotation = "0.650005 0.393687 -0.650003 222.978";scale = "0.125 0.166666 339.164";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "949.209 1740.63 5380.37";rotation = "0.833468 0.504797 -0.224749 139.283";scale = "0.5 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1031.02 1693.32 5385.37";rotation = "0.395611 0.772681 0.496443 90.3577";scale = "0.125 0.666666 82";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1113.84 1711.87 5385.62";rotation = "0 0 1 88.5237";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1222.84 1794.89 5355.62";rotation = "0 0 -1 62.4031";scale = "12.5 6.66666 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "935.561 1748.68 5375.62";rotation = "0 0 1 128.301";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "889.836 1957.37 5410.62";rotation = "0.650003 0.393685 0.650006 137.022";scale = "0.125 0.166666 339.164";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1218.83 1786 5380.62";rotation = "0 0 1 204.843";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "968.394 2107.66 5413.11";rotation = "-0.650003 -0.393683 0.650008 137.022";scale = "0.125 0.166666 339.166";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "960.798 1729.71 5380.62";rotation = "0 0 1 108.838";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.79";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1021.27 1706.04 5355.62";rotation = "0 0 -1 62.4031";scale = "12.5 6.66667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "972.437 1722.68 5380.37";rotation = "0.231999 0.944644 0.231999 93.2614";scale = "0.125 0.666666 17.8";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1249.19 1848.39 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 8.33332 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1138.06 1716.59 5382.62";rotation = "0 0 1 12.943";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1255.98 1890.21 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 8.33332 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1075.66 1700.4 5370.62";rotation = "0 0 -1 57.1765";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.78";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "954.163 1728.52 5355.62";rotation = "0 0 -1 62.4031";scale = "6.25 6.66667 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1068.82 1697.3 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 16.6666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1144.47 1709.48 5355.62";rotation = "0 0 -1 62.4031";scale = "6.75 8.99999 54";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "977.738 1705.75 5380.62";rotation = "0 0 1 90.1658";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1200.01 1742.67 5355.62";rotation = "0 0 -1 62.4031";scale = "4.5 6.33333 37";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "876.727 1795.85 5385.62";rotation = "0 0 1 26.738";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1035.92 1687.78 5385.62";rotation = "0 0 1 126.794";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1086.78 1685.09 5375.62";rotation = "0 0 1 93.0443";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "873.495 1793.89 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 10 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "975.712 1701.3 5355.62";rotation = "0 0 -1 62.4031";scale = "0 0 0";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "973.801 1698.47 5355.62";rotation = "0 0 -1 62.4031";scale = "6.25 8.33333 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1136.78 1698.27 5382.37";rotation = "0.171102 0.69668 -0.696678 160.582";scale = "0.5 0.166666 20.4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "876.119 1781.63 5385.62";rotation = "0 0 1 113.627";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "994.244 2105.41 5360.62";rotation = "0.96571 -0.237177 -0.105598 226.533";scale = "0.5 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.777";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1039.83 1677.8 5355.62";rotation = "0 0 -1 62.4031";scale = "5 9.99999 60";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "851.335 1960.34 5354.12";rotation = "0 0 -1 62.4031";scale = "5 26.6636 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1173.27 1730.47 5382.37";rotation = "0.814519 0.493321 0.305275 233.499";scale = "1 0.166666 100";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "879.952 1928.2 5371.87";rotation = "-0.459993 0.759485 -0.459988 105.568";scale = "2.5 3.33333 335";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.477 1779.97 5387.87";rotation = "0.650007 0.393683 0.650004 137.023";scale = "2.5 3.33333 334.5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "947.654 1717.82 5380.37";rotation = "-0.502924 0.830376 -0.239881 136.787";scale = "0.125 0.666666 70";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.474 1779.97 5355.86";rotation = "0.650003 0.393682 0.650008 137.022";scale = "2.5 3.33333 330";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.293 1779.63 5403.87";rotation = "0.65 0.393682 0.650011 137.022";scale = "2.5 3.33333 334.5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "917.627 1721.09 5355.62";rotation = "0 0 -1 62.4031";scale = "3.75 5.33333 28";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "892.41 1744.15 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 6.66667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "797.217 1780.19 5378.62";rotation = "0.650003 0.393683 0.650008 137.022";scale = "0.125 0.166666 338.986";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "875.745 1930.4 5381.12";rotation = "0.650007 0.393682 -0.650004 222.977";scale = "0.125 0.166666 339.008";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.288 1779.63 5419.87";rotation = "0.650004 0.39368 0.650008 137.022";scale = "2.5 3.33333 334.5";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "875.738 1930.4 5365.12";rotation = "-0.650003 -0.393683 0.650008 137.022";scale = "0.125 0.166666 338.986";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "797.222 1780.19 5362.62";rotation = "0.650006 0.393685 0.650003 137.022";scale = "0.125 0.166666 338.984";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "797.226 1780.19 5394.62";rotation = "0.650008 0.393681 0.650004 137.023";scale = "0.125 0.166666 338.986";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "875.738 1930.4 5397.12";rotation = "0.650006 0.393685 -0.650003 222.977";scale = "0.125 0.166666 338.986";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "1122.98 1676.59 5377.62";rotation = "0 0 -1 91.679";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "993.213 2111.6 5355.62";rotation = "0 0 -1 62.4031";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1326.47 1920.02 5371.87";rotation = "-0.459989 0.759485 -0.459992 105.567";scale = "2.5 3.33333 738";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1326.47 1920.02 5387.87";rotation = "-0.459989 0.759485 -0.459992 105.567";scale = "2.5 3.33333 738";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1127.13 1676.57 5355.62";rotation = "0 0 -1 62.4031";scale = "6.75 8.99999 54";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1326.45 1920.02 5355.87";rotation = "-0.45999 0.759487 -0.459988 105.568";scale = "2.5 3.33333 738";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "875.743 1930.39 5410.62";rotation = "-0.459991 0.759482 -0.459995 105.567";scale = "0.125 0.166666 338.982";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "875.733 1930.39 5413.12";rotation = "0.650007 0.393683 -0.650004 222.977";scale = "0.125 0.166666 338.984";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1326.47 1920.02 5403.87";rotation = "-0.459989 0.759485 -0.459992 105.567";scale = "2.5 3.33333 738";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1326.48 1920.03 5419.87";rotation = "-0.459989 0.759485 -0.459992 105.567";scale = "2.5 3.33333 738";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1330.87 1918.17 5378.62";rotation = "-0.459989 0.759485 -0.459992 105.567";scale = "0.125 0.166666 738.998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "843.573 1809.2 5355.62";rotation = "0 0 -1 62.4031";scale = "7.5 6.66666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1159.72 1590.7 5381.12";rotation = "0.459989 -0.759486 -0.459991 105.568";scale = "0.125 0.166666 739.016";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1159.7 1590.7 5365.12";rotation = "0.459988 -0.759484 -0.459995 105.567";scale = "0.125 0.166666 739.016";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1330.85 1918.17 5362.62";rotation = "-0.459992 0.759485 -0.459988 105.568";scale = "0.125 0.166666 739.016";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1330.87 1918.17 5394.62";rotation = "-0.459992 0.759485 -0.459988 105.568";scale = "0.125 0.166666 739.016";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1159.69 1590.71 5397.12";rotation = "0.459986 -0.759485 -0.459995 105.567";scale = "0.125 0.166666 739.016";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1062.07 1657.81 5382.37";rotation = "0.720524 0.436391 -0.538895 96.6769";scale = "0.5 0.166666 28";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "1114.85 1667.31 5358.35";rotation = "0.171102 0.69668 0.696678 199.419";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";frequency = "33";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "1114.85 1667.31 358.345";rotation = "-0.1711 -0.696678 0.696682 199.419";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1330.88 1918.16 5410.62";rotation = "-0.459989 0.759485 -0.459992 105.567";scale = "0.125 0.166666 738.988";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1159.71 1590.7 5413.12";rotation = "0.459989 -0.759486 -0.459991 105.568";scale = "0.125 0.166666 739.016";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "979.547 2118.73 5355.62";rotation = "0 0 -1 62.4031";scale = "0 0 0";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "979.55 2118.74 5355.62";rotation = "0 0 -1 62.4031";scale = "49.1805 49.1803 66.445";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "854.614 1786.83 5385.37";rotation = "0.210975 0.859038 -0.466416 166.931";scale = "0.5 0.166666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1104.74 1652.78 5382.37";rotation = "0.171102 0.69668 0.696678 199.419";scale = "0.5 0.166666 36";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "807.78 1757.74 5371.88";rotation = "0.696677 -0.171103 0.696682 199.419";scale = "2.5 3.33333 738.4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1134.98 1586.7 5387.88";rotation = "0.232006 0.944643 0.231999 93.261";scale = "2.5 3.33333 738.4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1134.98 1586.71 5355.88";rotation = "0.231999 0.944644 0.231999 93.2614";scale = "2.5 3.33333 738.4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "807.78 1757.73 5403.88";rotation = "0.696681 -0.171104 0.696677 199.419";scale = "2.5 3.33333 738.4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "1082 1653.73 5382.62";rotation = "0 0 1 48.9506";scale = "1 1 1";team = "1";ownerGUID = "2205246";powerFreq = "77.7";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "807.77 1757.73 5419.88";rotation = "0.696681 -0.171103 0.696677 199.419";scale = "2.5 3.33333 738.4";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "805.581 1753.51 5378.63";rotation = "0.696677 -0.171103 0.696682 199.419";scale = "0.125 0.166666 738.968";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "805.58 1753.53 5381.13";rotation = "-0.232004 -0.944642 0.232003 93.2615";scale = "0.125 0.166666 739";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "805.58 1753.53 5365.13";rotation = "-0.232001 -0.944643 0.232001 93.2609";scale = "0.125 0.166666 738.998";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1136.8 1665.92 5382.37";rotation = "0.831436 0.503564 0.234814 222.383";scale = "0.5 0.166666 24";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1133.03 1582.34 5394.63";rotation = "0.232005 0.944641 0.232007 93.2609";scale = "0.125 0.166666 739";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1133.03 1582.35 5397.13";rotation = "-0.696678 0.171103 0.69668 199.419";scale = "0.125 0.166666 739";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "850.807 1766.07 5355.62";rotation = "-8.44413e-08 -1.8694e-08 -1 62.4031";scale = "7.5 9.99999 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1133.03 1582.35 5410.63";rotation = "0.232005 0.944641 0.232007 93.2609";scale = "0.125 0.166666 738.994";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1133.03 1582.34 5413.13";rotation = "-0.696677 0.171102 0.696681 199.419";scale = "0.125 0.166666 739";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1085.06 1647.83 5355.62";rotation = "0 0 -1 62.4031";scale = "6.75 16.6666 54";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "951.21 1677.42 5362.63";rotation = "0.232 0.944644 0.232001 93.2617";scale = "0.125 0.166666 328.65";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "839.84 1777.47 5375.37";rotation = "0.815255 0.493767 -0.302579 126.908";scale = "0.5 0.166666 66";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1316.36 1937.03 5360.62";rotation = "0.96571 -0.237177 -0.105598 226.533";scale = "0.5 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.777";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1321.3 1920.96 5360.62";rotation = "-0.484134 0.799346 0.355893 155.672";scale = "0.5 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.777";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1111.52 1644.49 5382.37";rotation = "0.804084 0.487 0.340998 238.761";scale = "0.5 0.166666 50";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1142.32 1642.81 5355.62";rotation = "0 0 -1 62.4031";scale = "12.5 6.66666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "951.225 1677.42 5362.63";rotation = "0.696677 -0.171103 0.696682 199.419";scale = "0.125 0.166666 410.344";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1326.58 1920.25 5355.62";rotation = "0 0 -1 62.4031";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "807.027 1983.5 5315.62";rotation = "0 0 -1 62.4031";scale = "5 6.66666 80";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1221.88 1719.92 5371.87";rotation = "-0.459989 0.759485 -0.459992 105.567";scale = "0.125 0.166666 286.63";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "1333.6 1933.67 5355.62";rotation = "0 0 1 27.5969";scale = "49.1805 49.1803 66.4452";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "811.765 1761.3 5360.63";rotation = "0.221275 0.900977 0.373199 190.474";scale = "1 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.175 1779.4 5355.62";rotation = "0 0 -1 62.4031";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "794.483 1764.69 5355.62";rotation = "0 0 -1 62.4031";scale = "49.1803 49.1803 66.4452";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1049.74 1872.5 5675.87";rotation = "-0.944643 0.232001 0.232001 93.2609";scale = "5 0.166667 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "1047.37 1865.74 5676.52";rotation = "0.1875 0.982265 1.24511e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "1045.16 1866.72 5676.52";rotation = "0.1875 0.982265 1.24511e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "1042.43 1867.95 5676.52";rotation = "0.00401134 0.999992 1.26758e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "1049.86 1864.08 5676.52";rotation = "0.313305 0.949653 1.20377e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "1043.19 1874.91 5677.98";rotation = "0.171105 0.69668 0.696678 199.419";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";nametoset = "Fight";frequency = "33";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "1043.19 1874.91 677.977";rotation = "-0.171105 -0.696677 0.696681 199.419";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "1049.9 1871.41 5678.1";rotation = "0.171105 0.69668 0.696678 199.419";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";nametoset = "Fight";frequency = "36";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "1049.9 1871.41 678.096";rotation = "-0.171105 -0.696677 0.696681 199.419";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "1046.72 1873.07 5678.16";rotation = "0.171105 0.69668 0.696678 199.419";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";nametoset = "Fight";frequency = "34";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "1046.72 1873.07 678.16";rotation = "-0.171105 -0.696677 0.696681 199.419";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "1052.85 1869.86 5678.19";rotation = "0.171105 0.69668 0.696678 199.419";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";nametoset = "Fight";frequency = "35";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "1052.85 1869.86 678.19";rotation = "-0.171105 -0.696677 0.696681 199.419";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "1056.09 1868.17 5678.22";rotation = "0.171105 0.69668 0.696678 199.419";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";nametoset = "Fight";frequency = "32";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "1056.09 1868.17 678.217";rotation = "-0.171105 -0.696677 0.696681 199.419";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "1044.21 1861.91 5678.81";rotation = "0.23851 0.97114 1.23101e-06 180";scale = "4.75017 0.166666 5.39794";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.79";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "2";moving = "open";prevscale = "4.75017 0.166666 5.39794";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "1037.84 1870.25 5678.07";rotation = "-0.759491 -0.459987 -0.459984 105.567";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "1054.79 1861.65 5678.07";rotation = "-0.393682 0.650009 0.650002 137.023";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "1038.07 1856.59 5677.8";rotation = "0.171102 0.696677 0.696682 199.419";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.79";isSwitchedOff = "1";switchRadius = "1000";timed = "2";nametoset = "Shifters";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "1041.52 1854.79 5677.8";rotation = "0.171102 0.696677 0.696682 199.419";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.78";isSwitchedOff = "1";switchRadius = "1000";timed = "2";nametoset = "Zombie Lords";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "1045.1 1852.92 5677.8";rotation = "0.171102 0.696677 0.696682 199.419";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";switchRadius = "1000";timed = "2";nametoset = "Ravangers";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "1048 1851.41 5677.76";rotation = "0.171101 0.696678 0.696681 199.419";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.7";isSwitchedOff = "1";switchRadius = "1000";timed = "2";nametoset = "Normals";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1040.77 1876.91 5681.12";rotation = "0.69668 -0.171102 0.696678 199.419";scale = "2.5 0.166666 40.0058";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.777";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1040.87 1876.58 5680.87";rotation = "0.650007 0.393676 -0.650007 222.977";scale = "2.37499 0.166667 38.0014";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1049.35 1850.7 5680.87";rotation = "0.459988 -0.759484 -0.459994 105.567";scale = "2.37499 0.166667 38.0016";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1050.05 1852.58 5680.26";rotation = "0.759486 0.459997 -0.459982 105.567";scale = "0.999745 0.166666 38.0014";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.79";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1049.85 1871.88 5682.13";rotation = "-0.944642 0.232002 0.232005 93.2609";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1049.45 1850.36 5681.12";rotation = "0.231999 0.944644 0.231999 93.2614";scale = "2.5 0.166666 39.9966";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1052.63 1857.51 5682.21";rotation = "0.759486 0.459997 -0.459982 105.567";scale = "0.125 2.26666 38.0014";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.79";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "1049.59 1871.57 5684.42";rotation = "0.171105 0.69668 0.696678 199.419";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";frequency = "37";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "1049.59 1871.57 684.423";rotation = "-0.171105 -0.696677 0.696681 199.419";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1152.1 1597.26 5360.61";rotation = "-0.488311 0.806241 0.333957 157.131";scale = "1 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1135.51 1592.08 5360.55";rotation = "0.221275 0.900977 0.373199 190.474";scale = "1 0.166666 16";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1049.51 1872.06 5685.87";rotation = "-0.944642 0.232002 0.232005 93.2609";scale = "5.00063 0.166666 38.0284";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "77.8";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "1046.78 1865.09 5686.12";rotation = "0 0 1 204.487";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "762.71 2006.65 5354.12";rotation = "0 0 -1 62.4031";scale = "5 26.6636 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1135.2 1586.59 5355.62";rotation = "0 0 -1 62.4031";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "1148.53 1579.62 5355.62";rotation = "0 0 -1 62.4031";scale = "49.1803 49.1803 66.4452";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedLogoProjector";position = "979.728 2118.67 5454.89";rotation = "0 0 -1 75.6952";scale = "30 30 100";team = "1";ownerGUID = "2205246";powerFreq = "1";holoBlock = "baseLogo";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "726.43 2025.03 5350.62";rotation = "0 0 -1 73.385";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedLogoProjector";position = "1333.19 1933.8 5454.89";rotation = "0 0 -1 62.8248";scale = "30 30 100";team = "1";ownerGUID = "2205246";powerFreq = "1";holoBlock = "baseLogo";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "718.402 2029.8 5335.62";rotation = "0 0 -1 62.4031";scale = "5 6.66666 40";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedLogoProjector";position = "794.531 1764.66 5454.89";rotation = "0 0 1 21.7043";scale = "30 30 100";team = "1";ownerGUID = "2205246";powerFreq = "1";holoBlock = "baseLogo";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedLogoProjector";position = "1148.56 1579.73 5454.89";rotation = "0 0 -1 59.9073";scale = "30 30 100";team = "1";ownerGUID = "2205246";powerFreq = "1";holoBlock = "baseLogo";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "674.085 2052.95 5354.12";rotation = "0 0 -1 62.4031";scale = "5 26.6636 3";team = "1";ownerGUID = "2205246";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "644.679 2068.55 5356.02";rotation = "-0.555585 0.83146 1.05395e-06 180";scale = "8 8 8";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";frequency = "31";teleMode = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "644.679 2068.55 5356.02";rotation = "6.77525e-07 1.32281e-12 1 112.498";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "579.624 2015.23 5262.37";rotation = "1 0 0 4.0222";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "77.777";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "582.671 2141.89 376.476";rotation = "0.060974 0.979358 0.192717 181.375";scale = "10 10 10";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";frequency = "31";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "582.671 2141.89 376.476";rotation = "-0.0120207 -0.193061 0.981113 186.991";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "580.967 2118.56 365.892";rotation = "-0.998193 -0.00756164 -0.0596123 14.4843";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";nametoset = " Teleport to the Arena";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "579.059 2120.68 361.551";rotation = "0.000920045 -0.195034 0.980796 179.47";scale = "1 1 1";team = "1";ownerGUID = "2205246";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); \ No newline at end of file diff --git a/Univ/Data/2205246/Ranks/Powers/Saved.Dat b/Univ/Data/2205246/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..04c882d --- /dev/null +++ b/Univ/Data/2205246/Ranks/Powers/Saved.Dat @@ -0,0 +1,28 @@ +$PowerSave::Level[2205246, 1] = 100; +$PowerSave::SpendPoints[2205246, 1] = 14; +$PowerSave::EXP[2205246, 1] = 160216; +$PowerSave::TopPlPosition[2205246, 1] = 1; +$PowerSave::Class[2205246, 1] = "Prospector"; +$PowerSave::HasPower[2205246, 1, "FireBolt"] = 1; +$PowerSave::HasPower[2205246, 1, "FireBall1"] = 1; +$PowerSave::HasPower[2205246, 1, "EnergyBall1"] = 1; +$PowerSave::Level[2205246, 2] = 6; +$PowerSave::SpendPoints[2205246, 2] = 3; +$PowerSave::EXP[2205246, 2] = 155; +$PowerSave::TopPlPosition[2205246, 2] = ; +$PowerSave::Class[2205246, 2] = "Witch"; +$PowerSave::Affinity[2205246, 1] = 2; +$PowerSave::HasPower[2205246, 1, "EnergyBoost1"] = 1; +$PowerSave::HasPower[2205246, 1, "DeepFlameShot"] = 1; +$PowerSave::HasPower[2205246, 1, "EnergyBoost2"] = 1; +$PowerSave::HasPower[2205246, 1, "HPBoost1"] = 1; +$PowerSave::HasPower[2205246, 1, "HPBoost2"] = 1; +$PowerSave::HasPower[2205246, 1, "Hellstorm"] = 1; +$PowerSave::HasPower[2205246, 1, "FireBall6"] = 1; +$PowerSave::HasPower[2205246, 1, "EnergyBoost3"] = 1; +$PowerSave::HasPower[2205246, 1, "SuperSplitFire"] = 1; +$PowerSave::HasPower[2205246, 1, "EnergyBoost4"] = 1; +$PowerSave::HasPower[2205246, 1, "EnergyBoost5"] = 1; +$PowerSave::HasPower[2205246, 1, "EnergyBoost6"] = 1; +$PowerSave::HasPower[2205246, 1, "HPBoost3"] = 1; +$PowerSave::HasPower[2205246, 1, "HPBoost4"] = 1; \ No newline at end of file diff --git a/Univ/Data/2205246/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2205246/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..522a1a8 --- /dev/null +++ b/Univ/Data/2205246/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,135 @@ +//Ranks & Settings File For GUID 2205246 / Name: Castiger +//Created On 2011-06-23, Total Warfare Mod 2 3.6 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2205246) { + + new ScriptObject(TWM2Client_2205246) { + + noMoreEXPc99f0f968381c3efca4ec770550d3b9fa369c4e9 = "0"; + xp = "909194"; + challengeComplete15For15 = "1"; + noMoreEXP07e0b2857f554d7fb175dae282e985129316b474 = "0"; + HeliCalls = "0"; + challengeCompleteModel1887Image_2 = "1"; + challengeCompleteS3RifleImage_3 = "1"; + hasMedalBurningNightmare = "1"; + challengeCompleteYvex2 = "1"; + hasMedalGamerExcuisite = "1"; + noMoreEXP34388eba3196d3e9224da2701a0743701fbee7b7 = "0"; + gameTime = "7110"; + bossDefeatCountInsignia = "1"; + hasMedalTheSourceOfAllEvil = "1"; + ArtyCalls = "1"; + challengeCompleteModel1887Image_1 = "1"; + hasMedalSrysly = "1"; + xpGainbfd3af5ac87c8ba425473a98c935ec3a04b4aa41 = "1.26224e+06"; + noMoreEXPd42b9e509cb3fa62d6456d4b2eb65d2f9ad74e4b = "0"; + bossDefeatCountCnlWindshear = "3"; + GunHeliCalls = "0"; + challengeCompleteM1SniperRifleImage_1 = "1"; + xpGainb1060db2b42a2ee310834657d37cdd12a3c641f4 = "947276"; + bossDefeatCountTrebor = "7"; + challengeCompleteMilestone25 = "1"; + challengeCompleteS3RifleImage_1 = "1"; + xpGainaf3d41c0bf4e57991df72328fbba87cd53317fc4 = "200"; + officer = "2"; + challengeCompleteLRog1 = "1"; + challengeCompleteS3RifleImage_4 = "1"; + noMoreEXPb0368046d129bf6f36fd8d3738013d518762379e = "0"; + noMoreEXPbfd3af5ac87c8ba425473a98c935ec3a04b4aa41 = "0"; + xpGainfbb5b6b4f8e8fb89a7827ea5778aa61bf1d4deba = "102684"; + AirstrikeCalls = "3"; + FissionCalls = "2"; + xpGain07e0b2857f554d7fb175dae282e985129316b474 = "24260"; + challengeCompletePulsePhaserImage_3 = "1"; + noMoreEXPda594d12b291175d63f4c64bafdcfa94150d4812 = "0"; + phrase = "None Set"; + noMoreEXP8ee84d4400fdb15487f29f332777c6fb40cbdb93 = "0"; + challengeCompleteAcceptance = "1"; + noMoreEXPaf3d41c0bf4e57991df72328fbba87cd53317fc4 = "0"; + CGCalls = "0"; + hasMedalTheNewGeneral = "1"; + noMoreEXPc9b1c8e149a084575e67d1204b521967027eeac5 = "0"; + bossDefeatCountVengenor = "4"; + hasMedalHonorsC = "1"; + hasMedalInsigniaDefeated = "1"; + challengeCompleteTreb3 = "1"; + noMoreEXPd19410caba8981d853e95f180aee12d56c1d76e6 = "0"; + noMoreEXPbf60b256ceb4bb9b3edef378f8535e18bd397194 = "0"; + hasMedalRevengeAvoidedAgain = "1"; + HarrierCalls = "1"; + bossDefeatCountVardison3 = "2"; + hasMedalHarbiend = "1"; + challengeCompleteGOL1 = "1"; + SatNukeCalls = "1"; + name = "Castiger"; + noMoreEXPb1060db2b42a2ee310834657d37cdd12a3c641f4 = "0"; + rank = "Master Commander"; + noMoreEXP8967c9a10334098c95a5e0fc77f75a334e312bc2 = "0"; + hasMedalAboutDamnTime = "1"; + weaponKillsPlasmaImage = "1"; + UAVCalls = "0"; + HWCalls = "0"; + weaponKillsPulsePhaserImage = "374"; + challengeCompleteGOL2 = "1"; + xpGainda594d12b291175d63f4c64bafdcfa94150d4812 = "736"; + challengeCompleteAngel = "1"; + ZBCalls = "1"; + xpGainbf60b256ceb4bb9b3edef378f8535e18bd397194 = "8734"; + xpGainb0368046d129bf6f36fd8d3738013d518762379e = "55284"; + rankNumber = "61"; + hasMedalLordraniussFall = "1"; + challengeCompleteGameEnder = "1"; + challengeCompleteS3RifleImage_2 = "1"; + challengeCompleteTreb2 = "1"; + hasMedalDownWithTheHarbingers = "1"; + noMoreEXPdb8184dfdfb3bae7e35d6a877c15c940318d3f3c = "0"; + challengeCompleteTreb1 = "1"; + hasMedalTheUltimateHeadshot = "1"; + money = "490436"; + bossDefeatCountGhostOfFire = "9"; + noMoreEXPce254afd0de88a81022dc6913dd6eec687f75ab8 = "0"; + millionxp = "3"; + challengeCompleteCWS1 = "1"; + challengeCompletePulsePhaserImage_1 = "1"; + bossDefeatCountYvex = "7"; + GMCalls = "0"; + SlthAirstrikeCalls = "1"; + weaponKillsM1SniperRifleImage = "102"; + hasMedalThundaStruk = "1"; + challengeCompleteYvex1 = "1"; + challengeCompleteVard1 = "1"; + noMoreEXPfbb5b6b4f8e8fb89a7827ea5778aa61bf1d4deba = "0"; + weaponKillsS3RifleImage = "681"; + xpGain8ee84d4400fdb15487f29f332777c6fb40cbdb93 = "74744"; + xpGainc9b1c8e149a084575e67d1204b521967027eeac5 = "1.33483e+06"; + NukeCalls = "0"; + weaponKillsModel1887Image = "175"; + challengeCompletePulsePhaserImage_2 = "1"; + bossDefeatCountLordRog = "2"; + weaponKillsSuperChaingunImage = "97"; + bossDefeatCountGhostOfLightning = "6"; + }; + new ScriptObject(ClientStore2205246) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(ClientSettings2205246) { + + weaponUpgradeS3RifleImage = "Grip"; + savedstreak5 = "14"; + savedstreak2 = "5"; + savedperk3 = "Clip Boxes"; + savedperk2 = "No-Infect Armor"; + savedstreak1 = "2"; + savedperk1 = "Advanced Grip"; + savedstreak3 = "6"; + savedstreak4 = "8"; + }; + new ScriptObject(CCD_2205246) { + + expireDate = "20120531"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2212728/Buildings/1.cs b/Univ/Data/2212728/Buildings/1.cs new file mode 100644 index 0000000..f975feb --- /dev/null +++ b/Univ/Data/2212728/Buildings/1.cs @@ -0,0 +1,4 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "LittleTas" +// Created in mission "slapmydash" +// Construction v0.70 Development Version 1 diff --git a/Univ/Data/2212728/Buildings/3.cs b/Univ/Data/2212728/Buildings/3.cs new file mode 100644 index 0000000..e916d2c --- /dev/null +++ b/Univ/Data/2212728/Buildings/3.cs @@ -0,0 +1,72 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "LittleTas" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "645.483 -6.00902 99.99";rotation = "-0.593151 0.569287 0.569284 118.652";scale = "0.52 0.519998 1.52029";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "644.966 -6.05036 99.99";rotation = "0.569287 0.593151 0.569284 118.652";scale = "0.52 0.519998 1.02004";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "645.424 -5.01072 99.99";rotation = "0.707033 0.0145152 0.707031 178.337";scale = "0.52 0.519998 1.02084";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "645.92 -5.01014 99.99";rotation = "0.56929 0.593149 0.569284 118.65";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "647.684 -3.66445 99.99";rotation = "-0.261827 0.682442 0.682437 150.655";scale = "0.52 0.519998 2.02134";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "647.428 -3.12948 99.99";rotation = "0.0186353 0.706985 0.706983 182.135";scale = "0.52 0.519998 1.01997";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "648.008 -2.10412 100.51";rotation = "-0.447152 -0.632474 0.63248 228.184";scale = "0.52 0.519998 2.01852";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "646.778 -0.996455 99.99";rotation = "0.0994693 0.990057 0.0994631 90.5715";scale = "0.52 0.519998 1.01997";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "647.471 -0.0963928 99.99";rotation = "-0.534784 0.65423 -0.53478 113.611";scale = "0.52 0.519998 1.01981";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "638.548 -4.72878 102.287";rotation = "0.968885 -0.175014 0.175017 91.8107";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "645.879 -0.303464 99.99";rotation = "0.612209 0.500417 0.612195 126.831";scale = "0.52 0.519998 1.01981";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "647.739 -1.19137 99.99";rotation = "0.612203 0.500422 0.612197 126.831";scale = "0.52 0.519998 1.51983";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "639.036 -3.4207 102.201";rotation = "0 0 1 20.4785";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "638.75 -2.75863 101.701";rotation = "0.701407 -0.126699 0.70141 194.442";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "638.087 -4.53511 101.767";rotation = "0.701407 -0.126699 0.70141 194.442";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "647.958 -0.21536 99.99";rotation = "0.0994664 0.990057 0.0994623 90.572";scale = "0.52 0.519998 1.01997";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "639.133 -1.73379 101.701";rotation = "0.701407 -0.126699 0.70141 194.442";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "638.375 -5.19716 102.267";rotation = "0 0 1 20.4785";scale = "0.52 0.519998 2.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "639.42 -2.39586 102.201";rotation = "0 0 1 20.4785";scale = "0.52 0.519998 2.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "639.036 -3.4207 103.701";rotation = "0 0 1 20.4785";scale = "0.52 0.519998 0.52";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "639.914 -2.55904 103.701";rotation = "-0.495302 0.71369 -0.4953 108.97";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "639.703 -0.206223 101.626";rotation = "0.701407 -0.126699 0.70141 194.442";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "639.594 -1.92746 103.701";rotation = "0.634793 0.440546 0.634789 132.448";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "640.484 -1.03147 103.626";rotation = "-0.495302 0.71369 -0.4953 108.97";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "639.99 -0.868286 102.126";rotation = "0 0 1 20.4785";scale = "0.52 0.519998 2.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "637.233 -6.84922 100.246";rotation = "0.440546 -0.634788 0.634794 132.448";scale = "0.01 0.01 0.001";team = "1";ownerGUID = "2212728";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "640.164 -0.399888 103.626";rotation = "0.634793 0.440546 0.634789 132.448";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "640.226 1.19238 101.646";rotation = "0.701407 -0.126699 0.70141 194.442";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "640.51 0.530314 102.146";rotation = "0 0 1 20.4785";scale = "0.52 0.519998 2.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "640.687 0.998712 102.166";rotation = "0.968885 -0.175014 0.175017 91.8107";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "647.856 2.32454 99.99";rotation = "-0.427348 0.639288 0.639285 133.721";scale = "0.52 0.519998 1.51903";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "647.387 2.49701 99.99";rotation = "0.139131 0.700231 0.700228 195.842";scale = "0.52 0.519998 0.52";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "640.938 3.09962 101.515";rotation = "0.701407 -0.126699 0.70141 194.442";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "641.225 2.43755 102.015";rotation = "0 0 1 20.4785";scale = "0.52 0.519998 2.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "648.039 2.76753 100.51";rotation = "0.726678 0.485769 -0.485766 107.99";scale = "0.52 0.519998 1.52179";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "641.371 2.91644 102.035";rotation = "0.968885 -0.175014 0.175017 91.8107";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "641.398 2.90595 102.515";rotation = "0.634793 0.440546 0.634789 132.448";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "641.398 2.90595 103.431";rotation = "0.634793 0.440546 0.634789 132.448";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "642.553 4.50669 103.264";rotation = "-0.495302 0.71369 -0.4953 108.97";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "648.38 4.41777 99.99";rotation = "-0.403634 0.646948 0.646945 136.039";scale = "0.52 0.519998 2.01776";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "648.137 3.9587 99.99";rotation = "0.646948 0.403634 0.646945 136.039";scale = "0.52 0.519998 1.52031";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "641.772 5.33194 101.264";rotation = "0.701407 -0.126699 0.70141 194.442";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "642.06 4.66987 101.764";rotation = "0 0 1 20.4785";scale = "0.52 0.519998 2.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "647.926 4.61899 99.99";rotation = "0.161611 0.697809 0.697814 198.361";scale = "0.52 0.519998 0.52";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "647.03 5.05856 99.99";rotation = "0.161611 0.697809 0.697814 198.361";scale = "0.52 0.519998 1.02016";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "642.233 5.13827 103.264";rotation = "0.634793 0.440546 0.634789 132.448";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "642.874 6.85808 101.227";rotation = "0.983459 -0.177651 -0.0353341 202.137";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "650.802 5.32579 100.51";rotation = "0.696515 0.50738 -0.507378 110.285";scale = "0.52 0.519998 3.01751";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "642.404 7.02585 101.209";rotation = "0.731979 0.0129144 0.681205 210.026";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "642.771 6.58012 101.87";rotation = "0.733767 -0.132534 0.666349 30.3353";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "642.895 6.92813 101.713";rotation = "0.968885 -0.175015 0.175019 91.8113";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "649.344 7.39125 99.99";rotation = "-0.976196 0.15336 0.153367 91.3798";scale = "0.52 0.519998 1.01979";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "649.567 6.76997 100.51";rotation = "0.608533 -0.56111 0.561109 117.357";scale = "0.52 0.519998 1.51894";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "648.575 6.568 99.99";rotation = "0.11041 0.702785 0.702783 192.601";scale = "0.52 0.519998 1.51933";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "642.972 7.11537 102.2";rotation = "0.777742 0.539755 0.322153 154.795";scale = "0.52 0.519998 2.01932";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "648.865 7.52563 99.99";rotation = "-0.696516 -0.507381 -0.507376 110.285";scale = "0.52 0.519998 1.02013";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "643.531 10.0427 101.148";rotation = "0.701407 -0.126699 0.70141 194.442";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "643.999 9.86772 102.648";rotation = "0 0 1 110.478";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "651.062 8.87589 99.99";rotation = "-0.44045 0.634825 0.634823 132.458";scale = "0.52 0.519998 2.02058";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "644.661 10.1542 102.148";rotation = "-0.495303 0.713689 -0.495301 108.97";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "643.992 9.849 101.668";rotation = "0.968885 -0.175014 0.175017 91.8107";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "650.587 9.03234 99.99";rotation = "0.126789 0.701402 0.701399 194.452";scale = "0.52 0.519998 0.52";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "650.859 8.39532 99.99";rotation = "0.634826 0.440449 0.634823 132.458";scale = "0.52 0.519998 1.52116";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "643.992 9.84898 103.148";rotation = "0.634792 0.440548 0.634789 132.448";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "644.654 10.1355 101.648";rotation = "0 0 -1 69.5215";scale = "0.52 0.519998 1.02";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "649.651 9.38243 99.99";rotation = "0.126791 0.701401 0.701399 194.452";scale = "0.52 0.519998 1.02002";team = "1";ownerGUID = "2212728";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "644.204 11.817 99.964";rotation = "0.440546 -0.634788 0.634794 132.448";scale = "0.01 0.01 0.001";team = "1";ownerGUID = "2212728";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); \ No newline at end of file diff --git a/Univ/Data/2212728/Ranks/Powers/Saved.Dat b/Univ/Data/2212728/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..1e673f9 --- /dev/null +++ b/Univ/Data/2212728/Ranks/Powers/Saved.Dat @@ -0,0 +1,13 @@ +$PowerSave::Level[2212728, 1] = 7; +$PowerSave::SpendPoints[2212728, 1] = 4; +$PowerSave::EXP[2212728, 1] = 204; +$PowerSave::TopPlPosition[2212728, 1] = 1; +$PowerSave::Class[2212728, 1] = "Demon"; +$PowerSave::HasPower[2212728, 1, "FireBolt"] = 1; +$PowerSave::HasPower[2212728, 1, "BasicShock"] = 1; +$PowerSave::Level[2212728, 2] = 3; +$PowerSave::SpendPoints[2212728, 2] = 3; +$PowerSave::EXP[2212728, 2] = 55; +$PowerSave::TopPlPosition[2212728, 2] = 1; +$PowerSave::Class[2212728, 2] = "Phantom"; +$PowerSave::HasPower[2212728, 2, "ShadowStrike"] = 1; \ No newline at end of file diff --git a/Univ/Data/2212728/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2212728/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..eb06180 --- /dev/null +++ b/Univ/Data/2212728/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,226 @@ +//Ranks & Settings File For GUID 2212728 / Name: LittleTas +//Created On 2011-02-19, Total Warfare Mod 2 3.6 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2212728) { + + new ScriptObject(TWM2Client_2212728) { + + challengeCompleteAirstrike1 = "1"; + noMoreEXP5d662845851c50e989e78a8c2ac577c059c5dc40 = "0"; + bossDefeatCountGhostOfLightning = "5"; + phrase = "Blah"; + challengeCompletePulsePhaserImage_4 = "1"; + challengeCompleteZoneCapture = "1"; + xpGain20721f5a2c9680e330b67d62bac22b18f43f273c = "3e+06"; + officer = "1"; + hasMedalRevengeAvoidedAgain = "1"; + challengeCompleteNuke1 = "1"; + weaponKillsShadowRifleImage = "1"; + CGCalls = "0"; + challengeCompleteABC = "1"; + challengeCompleteVard3 = "1"; + noMoreEXP415828c918be6cdc06183a0e62ee2793b28dd66e = "0"; + challengeCompleteModel1887Image_1 = "1"; + noMoreEXP1435853884072077d6623cdf15c3f8c101f9f434 = "0"; + weaponKillsPg700Image = "2"; + challengeCompleteR700SniperRifleImage_1 = "1"; + xpGain0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "47466"; + challengeComplete3For5Sabo = "1"; + weaponKillsPulsePhaserImage = "1782"; + challengeCompleteTreb1 = "1"; + challengeComplete3For5 = "1"; + noMoreEXP7157524394b5b23795f12ae582a4859a543a7db9 = "0"; + HarrierCalls = "1"; + noMoreEXPd9de6e2caeda34a1a37110ca942c2f04524d90c8 = "0"; + challengeCompleteModel1887Image_2 = "1"; + bossDefeatCountStormrider = "1"; + name = "LittleTas"; + bossDefeatCountInsignia = "18"; + hasMedalDailyMax = "1"; + rank = "Master Commander"; + SatNukeCalls = "16"; + bossDefeatCountShadeLord = "2"; + hasMedalTheSourceOfAllEvil = "1"; + weaponKillsM1700Image = "8"; + weaponKillsM1SniperRifleImage = "11"; + challengeCompletePulsePhaserImage_5 = "1"; + challengeComplete15For15 = "1"; + challengeCompleteIns2 = "1"; + UAVCalls = "0"; + HWCalls = "0"; + ACCalls = "2"; + weaponKillsSuperChaingunImage = "1892"; + xpGain4ab044aba12120725c31fc423e983af15f0e9c2e = "4952"; + challengeCompleteYvex1 = "1"; + noMoreEXPedf337ec0cf2ba8034b081eb97f1acc4b928f84f = "0"; + challengeCompleteLifeGiver = "1"; + bossDefeatCountLordRog = "5"; + ZBCalls = "2"; + noMoreEXPb636055abc5b0022020fb0c4a9415ecd675f37cb = "0"; + noMoreEXP4ab044aba12120725c31fc423e983af15f0e9c2e = "0"; + xpGain1435853884072077d6623cdf15c3f8c101f9f434 = "2016"; + weaponKillsflamerImage = "12"; + xpGain2b9346e3822872e7eddfa85b58ded002ed025f3a = "24632"; + weaponKillsMiniChaingunImage = "3"; + xpGain5d662845851c50e989e78a8c2ac577c059c5dc40 = "25720"; + weaponKillsLD06SavagerImage = "27"; + hasMedalTheUltimateHeadshot = "1"; + hasMedalInsigniaDefeated = "1"; + noMoreEXP0f2efa288f12b6653c5977cac93d2e5ffb67a17c = "0"; + bossDefeatCountVardison3 = "12"; + weaponKillsM4A1Image = "3"; + challengeCompletePulsePhaserImage_2 = "1"; + xpGaine5bd4d1481c47eaa816988d443cfa217b1685764 = "10896"; + hasMedalThundaStruk = "1"; + challengeCompleteGameEnder = "1"; + hasMedalSkyFront = "1"; + xpGainedf337ec0cf2ba8034b081eb97f1acc4b928f84f = "20000"; + challengeCompletePulsePhaserImage_3 = "1"; + money = "1.78047e+06"; + weaponKillsModel1887Image = "200"; + weaponKillsS3SRifleImage = "135"; + hasMedalHonorsB = "1"; + challengeCompleteFission2 = "1"; + millionxp = "4"; + SlthAirstrikeCalls = "2"; + GMCalls = "15"; + NukeCalls = "21"; + challengeCompleteTreb2 = "1"; + hasMedalSerialKiller = "1"; + challengeCompletePulsePhaserImage_1 = "1"; + noMoreEXP2b9346e3822872e7eddfa85b58ded002ed025f3a = "0"; + hasMedalLordraniussFall = "1"; + noMoreEXP4436560adc04b26b975f41b64e1a6fda2f8e2715 = "0"; + EMPCalls = "2"; + noMoreEXPee7c9a49018013a409231982c286cef30e7823cc = "1"; + bossDefeatCountVengenor = "4"; + noMoreEXPe5bd4d1481c47eaa816988d443cfa217b1685764 = "0"; + rankNumber = "61"; + challengeCompleteIns3 = "1"; + xpGain4436560adc04b26b975f41b64e1a6fda2f8e2715 = "245944"; + noMoreEXP20721f5a2c9680e330b67d62bac22b18f43f273c = "0"; + weaponKillsMp26Image = "2"; + xp = "183886"; + NapalmHarrierCalls = "1"; + weaponKillsspikerImage = "1"; + challengeCompleteGOL2 = "1"; + challengeCompleteVard2 = "1"; + noMoreEXP1039f9bee04ef0fe706e8b49159ab9825bd08d7f = "0"; + weaponKillspistolImage = "4"; + challengeCompletePulsePhaserImage_6 = "1"; + bossDefeatCountYvex = "4"; + HeliCalls = "0"; + challengeCompleteVard1 = "1"; + hasMedalAboutDamnTime = "1"; + noMoreEXPf4754809ab006cf7a9983d764a86f9c0150b646c = "0"; + challengeCompleteBombDetonated = "1"; + bossDefeatCountGhostOfFire = "8"; + challengeCompleteFission3 = "1"; + gameTime = "4461"; + challengeCompleteAcceptance = "1"; + weaponKillsRPGImage = "10"; + hasMedalGamerExcuisite = "1"; + hasMedalSrysly = "1"; + xpGain7157524394b5b23795f12ae582a4859a543a7db9 = "2008"; + noMoreEXP0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "0"; + weaponKillsDiscImage = "4"; + weaponKillsMiniColliderCannonImage = "1"; + hasMedalBurningNightmare = "1"; + ArtyCalls = "0"; + weaponKillslasergunImage = "10"; + challengeCompleteLRog1 = "1"; + xpGainee7c9a49018013a409231982c286cef30e7823cc = "300000"; + challengeCompleteAngel = "1"; + challengeCompleteTreb3 = "1"; + hasMedalNuclearDawn = "1"; + GunHeliCalls = "0"; + weaponKillsR700SniperRifleImage = "144"; + weaponKillsALSWPSniperRifleImage = "4"; + challengeCompleteFission1 = "1"; + noMoreEXP7c002129fba7c117b128edb1f4ef0ce1153a3ea1 = "0"; + challengeCompleteLRog2 = "1"; + xpGainf4754809ab006cf7a9983d764a86f9c0150b646c = "660"; + challengeCompleteGroupBuster = "1"; + weaponKillsG17SniperRifleImage = "9"; + challengeCompleteIns1 = "1"; + xpGain7c002129fba7c117b128edb1f4ef0ce1153a3ea1 = "161288"; + weaponKillsNapalmImage = "12"; + challengeCompleteMilestone25 = "1"; + bossDefeatCountTrebor = "8"; + challengeCompleteNuke2 = "1"; + xpGaind9de6e2caeda34a1a37110ca942c2f04524d90c8 = "162500"; + weaponKillsS3RifleImage = "29"; + hasMedalHonorsC = "1"; + hasMedalTheNewGeneral = "1"; + hasMedalTheLight = "1"; + AirstrikeCalls = "35"; + FissionCalls = "12"; + challengeCompleteGOL1 = "1"; + }; + new ScriptObject(CCD_2212728) { + + ZombieKillCount20120411_Model1887Image_12 = "1"; + ZombieKillCount20120411_0_2 = "4"; + ZombieKillCount20120411_Model1887Image_1 = "3"; + ZombieKillCount20120411_0_1 = "4"; + ZombieKillCount20120411_0_12 = "1"; + ZombieKillCount20120411__2 = "1"; + bossSlayCountGhostOfFire_20120411 = "1"; + bossSlayCountShadeLord_20120411 = "1"; + ZombieKillCount20120411_DeagleImage_1 = "1"; + totalZombieKillCount20120411 = "9"; + ZombieKillCount20120411_Grenade_2 = "3"; + expireDate = "20120430"; + }; + new ScriptObject(ClientSettings2212728) { + }; + new ScriptObject(ClientStore2212728) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(CCD_2212728) { + + ZombieKillCount20111124_0_3 = "2"; + ZombieKillCount20111124_S3RifleImage_1 = "6"; + ZombieKillCount20111124_S3RifleImage_3 = "2"; + ZombieKillCount20111124_0_1 = "13"; + totalZombieKillCount20111124 = "14"; + ZombieKillCount20111124__1 = "7"; + zombieHeadshots20111124 = "8"; + expireDate = "20111130"; + }; + new ScriptObject(CCD_2212728) { + + expireDate = "20111231"; + }; + new ScriptObject(CCD_2212728) { + + expireDate = "20111231"; + }; + new ScriptObject(CCD_2212728) { + + successiveStreak20111203_1 = "5"; + totalPlayerKillCount20111203 = "11"; + PlayerKillCount20111203_ = "2"; + areaCapture20111203_ChristmasMall09 = "3"; + PlayerKillCount20111203_S3RifleImage = "1"; + areaCaptureTotal20111203 = "3"; + PlayerKillCount20111203_MiniColliderCannonImage = "1"; + PlayerKillCount20111203_PulsePhaserImage = "1"; + dominationRoundWins20111203_ChristmasMall09 = "2"; + dominationRoundWinTotal20111203 = "2"; + successiveStreak20111203_3 = "1"; + PlayerKillCount20111203_RPGImage = "5"; + successiveSolo20111203_2 = "1"; + PlayerKillCount20111203_ConcussionGunImage = "1"; + successiveStreak20111203_2 = "4"; + expireDate = "20111231"; + }; + new ScriptObject(CCD_2212728) { + + bossSlayCountGhostOfFire_20120625 = "1"; + expireDate = "20120630"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2217449/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2217449/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..3a9dd07 --- /dev/null +++ b/Univ/Data/2217449/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,282 @@ +//Ranks & Settings File For GUID 2217449 / Name: fragmaster +//Created On 2011-06-23, Total Warfare Mod 2 3.6 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2217449) { + + new ScriptObject(CCD_2217449) { + + ZombieKillCount20111205_PistolImage_1 = "1"; + totalZombieKillCount20111205 = "141"; + ZombieKillCount20111208_MRXXImage_4 = "1"; + totalZombieKillCount20111209 = "1"; + ZombieKillCount20111205_0_1 = "135"; + ZombieKillCount20111208_M1700Image_1 = "31"; + ZombieKillCount20111209_0_4 = "1"; + ZombieKillCount20111208_0_1 = "552"; + ZombieKillCount20111208_S3RifleImage_5 = "1"; + ZombieKillCount20111204_0_13 = "1"; + ZombieKillCount20111208_S3RifleImage_11 = "6"; + zombieHeadshots20111208 = "301"; + ZombieKillCount20111208__1 = "227"; + killstreakCalls20111204_4 = "9"; + ZombieKillCount20111208_S3RifleImage_1 = "291"; + ZombieKillCount20111205__1 = "19"; + killstreakCalls20111208_2 = "9"; + ZombieKillCount20111208_PistolImage_1 = "2"; + ZombieKillCount20111205_M1700Image_1 = "3"; + ZombieKillCount20111204__5 = "3"; + zombieHeadshots20111205 = "114"; + ZombieKillCount20111205_S3SRifleImage_1 = "2"; + ZombieKillCount20111208_0_11 = "6"; + totalZombieKillCount20111204 = "383"; + ZombieKillCount20111204_flamerImage_1 = "3"; + ZombieKillCount20111208_S3RifleImage_9 = "5"; + zombieHeadshots20111209 = "1"; + ZombieKillCount20111204__1 = "216"; + ZombieKillCount20111204__13 = "1"; + ZombieKillCount20111208_S3RifleImage_4 = "1"; + ZombieKillCount20111204_M1700Image_1 = "11"; + totalZombieKillCount20111208 = "571"; + ZombieKillCount20111208__5 = "3"; + ZombieKillCount20111205_S3RifleImage_4 = "6"; + ZombieKillCount20111208_0_9 = "5"; + ZombieKillCount20111208_S3RifleImage_12 = "2"; + ZombieKillCount20111208_0_12 = "2"; + ZombieKillCount20111204_S3RifleImage_1 = "149"; + ZombieKillCount20111205_0_4 = "6"; + ZombieKillCount20111208_0_5 = "4"; + ZombieKillCount20111204_0_5 = "4"; + killstreakCalls20111204_2 = "11"; + killstreakCalls20111205_2 = "2"; + killstreakCalls20111208_4 = "6"; + ZombieKillCount20111204_0_1 = "379"; + killstreakCalls20111205_3 = "1"; + ZombieKillCount20111204_flamerImage_5 = "1"; + expireDate = "20111231"; + ZombieKillCount20111205_S3RifleImage_1 = "110"; + ZombieKillCount20111208_0_4 = "2"; + zombieHeadshots20111204 = "143"; + ZombieKillCount20111208_PulsePhaserImage_1 = "1"; + ZombieKillCount20111209_S3RifleImage_4 = "1"; + }; + new ScriptObject(CCD_2217449) { + + ZombieKillCount20111204_S3RifleImage_2 = "2"; + ZombieKillCount20111204_ALSWPSniperRifleImage_9 = "1"; + ZombieKillCount20111203__12 = "2"; + ZombieKillCount20111204_SA2400Image_11 = "3"; + ZombieKillCount20111203_PulsePhaserImage_12 = "1"; + zombieHeadshots20111203 = "131"; + ZombieKillCount20111203_PistolImage_1 = "1"; + ZombieKillCount20111203_0_1 = "227"; + ZombieKillCount20111204_S3RifleImage_5 = "1"; + ZombieKillCount20111204_flamerImage_12 = "11"; + ZombieKillCount20111203_0_15 = "1"; + ZombieKillCount20111204_flamerImage_4 = "26"; + ZombieKillCount20111203_0_12 = "9"; + ZombieKillCount20111203__1 = "27"; + ZombieKillCount20111203_AcidCannonImage_3 = "1"; + ZombieKillCount20111204_AcidCannonImage_4 = "1"; + ZombieKillCount20111204_S3RifleImage_13 = "3"; + ZombieKillCount20111203_R700SniperRifleImage_12 = "4"; + ZombieKillCount20111203_R700SniperRifleImage_5 = "1"; + ZombieKillCount20111203_0_4 = "17"; + ZombieKillCount20111203_R700SniperRifleImage_15 = "1"; + ZombieKillCount20111203_PulsePhaserImage_3 = "2"; + ZombieKillCount20111203_SA2400Image_5 = "1"; + ZombieKillCount20111204__2 = "9"; + ZombieKillCount20111204_S3RifleImage_15 = "2"; + ZombieKillCount20111203_flamerImage_4 = "1"; + ZombieKillCount20111203_AcidCannonImage_1 = "1"; + ZombieKillCount20111204_flamerImage_3 = "32"; + ZombieKillCount20111204_S3RifleImage_12 = "5"; + killstreakCalls20111203_4 = "1"; + ZombieKillCount20111203_flamerImage_5 = "1"; + ZombieKillCount20111204_0_13 = "34"; + ZombieKillCount20111203_R700SniperRifleImage_4 = "9"; + totalZombieKillCount20111203 = "363"; + ZombieKillCount20111203_SA2400Image_11 = "2"; + ZombieKillCount20111203__4 = "4"; + ZombieKillCount20111203_flamerImage_12 = "2"; + ZombieKillCount20111203__13 = "13"; + ZombieKillCount20111203_M1700Image_1 = "51"; + ZombieKillCount20111203_PulsePhaserImage_2 = "3"; + ZombieKillCount20111203_AcidCannonImage_4 = "1"; + ZombieKillCount20111204_PulsePhaserImage_11 = "1"; + ZombieKillCount20111204__5 = "13"; + ZombieKillCount20111201_PistolImage_1 = "3"; + ZombieKillCount20111203_flamerImage_1 = "8"; + ZombieKillCount20111203_PulsePhaserImage_5 = "3"; + ZombieKillCount20111203_PulsePhaserImage_11 = "8"; + ZombieKillCount20111204_flamerImage_13 = "4"; + ZombieKillCount20111204_0_12 = "32"; + ZombieKillCount20111204_AcidCannonImage_12 = "1"; + ZombieKillCount20111204_S3RifleImage_4 = "14"; + ZombieKillCount20111203_0_3 = "31"; + ZombieKillCount20111203_flamerImage_9 = "1"; + ZombieKillCount20111203_PulsePhaserImage_4 = "2"; + ZombieKillCount20111203_0_2 = "8"; + ZombieKillCount20111204_0_9 = "58"; + ZombieKillCount20111204_ALSWPSniperRifleImage_4 = "4"; + totalZombieKillCount20111204 = "467"; + ZombieKillCount20111204_flamerImage_9 = "12"; + ZombieKillCount20111203_PulsePhaserImage_9 = "10"; + ZombieKillCount20111204_flamerImage_1 = "54"; + ZombieKillCount20111203_SA2400Image_3 = "1"; + ZombieKillCount20111203_flamerImage_2 = "4"; + ZombieKillCount20111203_AcidCannonImage_5 = "1"; + ZombieKillCount20111204__1 = "33"; + ZombieKillCount20111204_S3RifleImage_3 = "39"; + ZombieKillCount20111204_S3RifleImage_9 = "9"; + ZombieKillCount20111204_AcidCannonImage_1 = "1"; + ZombieKillCount20111204_PulsePhaserImage_4 = "8"; + ZombieKillCount20111204__9 = "18"; + ZombieKillCount20111203_Grenade_1 = "1"; + killstreakCalls20111203_2 = "1"; + ZombieKillCount20111204_0_11 = "33"; + ZombieKillCount20111204_PulsePhaserImage_12 = "5"; + ZombieKillCount20111203_R700SniperRifleImage_1 = "12"; + ZombieKillCount20111204_S3RifleImage_11 = "22"; + ZombieKillCount20111204__13 = "27"; + ZombieKillCount20111204_PulsePhaserImage_2 = "6"; + ZombieKillCount20111203_R700SniperRifleImage_11 = "9"; + ZombieKillCount20111204__11 = "6"; + ZombieKillCount20111204_0_2 = "32"; + ZombieKillCount20111203_flamerImage_3 = "12"; + ZombieKillCount20111204_PulsePhaserImage_1 = "2"; + ZombieKillCount20111203_0_11 = "19"; + ZombieKillCount20111204__12 = "10"; + ZombieKillCount20111203_0_5 = "9"; + totalZombieKillCount20111201 = "3"; + ZombieKillCount20111203__9 = "8"; + ZombieKillCount20111201_0_1 = "3"; + ZombieKillCount20111204_S3RifleImage_1 = "6"; + ZombieKillCount20111203_SA2400Image_9 = "5"; + ZombieKillCount20111204_0_5 = "32"; + ZombieKillCount20111203__5 = "2"; + ZombieKillCount20111204__3 = "3"; + ZombieKillCount20111204_flamerImage_2 = "15"; + ZombieKillCount20111204_0_1 = "102"; + ZombieKillCount20111203_R700SniperRifleImage_3 = "13"; + ZombieKillCount20111203_R700SniperRifleImage_9 = "4"; + ZombieKillCount20111204__4 = "12"; + ZombieKillCount20111204_AcidCannonImage_9 = "1"; + ZombieKillCount20111204_0_15 = "2"; + ZombieKillCount20111203_SA2400Image_1 = "4"; + ZombieKillCount20111203_R700SniperRifleImage_13 = "1"; + ZombieKillCount20111204_flamerImage_5 = "18"; + ZombieKillCount20111204_ALSWPSniperRifleImage_1 = "6"; + ZombieKillCount20111204_PulsePhaserImage_9 = "17"; + ZombieKillCount20111203__3 = "2"; + expireDate = "20111231"; + ZombieKillCount20111203_0_13 = "14"; + ZombieKillCount20111204_0_3 = "77"; + ZombieKillCount20111204_0_4 = "65"; + ZombieKillCount20111204_AcidCannonImage_3 = "2"; + ZombieKillCount20111203_R700SniperRifleImage_2 = "1"; + ZombieKillCount20111204_ALSWPSniperRifleImage_11 = "1"; + ZombieKillCount20111203_PulsePhaserImage_1 = "26"; + zombieHeadshots20111204 = "78"; + ZombieKillCount20111204_PulsePhaserImage_3 = "1"; + ZombieKillCount20111203_0_9 = "28"; + ZombieKillCount20111203_S3RifleImage_1 = "96"; + }; + new ScriptObject(TWM2Client_2217449) { + + xpGainb6410fc738b5c91870eea4499330a95635d881b9 = "204882"; + HeliCalls = "16"; + money = "4.21867e+06"; + hasMedalHonorsB = "1"; + bossDefeatCountGhostOfFire = "1"; + millionxp = "1"; + bossDefeatCountShadeLord = "1"; + hasMedalTheLight = "1"; + challengeCompleteS3RifleImage_4 = "1"; + challengeCompleteS3RifleImage_1 = "1"; + hasMedalGamerExcuisite = "1"; + xpGain78d85c76473a76f1cbae9cdf07bae11d6363d158 = "6828"; + ArtyCalls = "0"; + challengeCompleteM1700Image_1 = "1"; + GunHeliCalls = "0"; + hasMedalBurningNightmare = "1"; + name = "fragmaster"; + rankNumber = "54"; + xp = "420000"; + noMoreEXP5f1188775495558a565f7bda1a812d8c6fe6da41 = "0"; + AirstrikeCalls = "23"; + challengeCompleteS3RifleImage_2 = "1"; + weaponKillsS3RifleImage = "752"; + gameTime = "3346"; + bossDefeatCountStormrider = "1"; + weaponKillsNapalmImage = "2"; + CGCalls = "0"; + xpGainccdd06b5c5ef7d4dfaf1f621309802964e0178e1 = "718158"; + noMoreEXPb6410fc738b5c91870eea4499330a95635d881b9 = "0"; + weaponKillspistolImage = "3"; + HarrierCalls = "0"; + UAVCalls = "0"; + HWCalls = "0"; + challengeCompleteS3RifleImage_3 = "1"; + phrase = "None Set"; + bossDefeatCountTrebor = "1"; + ZBCalls = "0"; + noMoreEXP78d85c76473a76f1cbae9cdf07bae11d6363d158 = "0"; + xpGaindd7dfcc969fa279e882307c86c4c61faece8aef0 = "53178"; + officer = "1"; + weaponKillsMRXXImage = "1"; + hasMedalLordraniussFall = "1"; + weaponKillsJavelinImage = "2"; + weaponKillsS3SRifleImage = "2"; + hasMedalHonorsA = "1"; + GMCalls = "1"; + SlthAirstrikeCalls = "0"; + hasMedalSkyFront = "1"; + weaponKillsPulsePhaserImage = "2"; + rank = "Master General"; + hasMedalHonorsC = "1"; + noMoreEXPdd7dfcc969fa279e882307c86c4c61faece8aef0 = "0"; + NukeCalls = "0"; + noMoreEXPccdd06b5c5ef7d4dfaf1f621309802964e0178e1 = "0"; + xpGain5f1188775495558a565f7bda1a812d8c6fe6da41 = "420060"; + weaponKillsM1700Image = "60"; + }; + new ScriptObject(ClientStore2217449) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(ClientSettings2217449) { + }; + new ScriptObject(CCD_2217449) { + + expireDate = "20111231"; + }; + new ScriptObject(CCD_2217449) { + + killstreakCalls20111206_2 = "1"; + ZombieKillCount20111206__1 = "25"; + ZombieKillCount20111206_M1700Image_1 = "18"; + ZombieKillCount20111206_0_1 = "218"; + killstreakCalls20111206_4 = "1"; + ZombieKillCount20111206_0_16 = "1"; + ZombieKillCount20111206__16 = "1"; + ZombieKillCount20111206_S3RifleImage_1 = "175"; + expireDate = "20111231"; + zombieHeadshots20111206 = "172"; + totalZombieKillCount20111206 = "218"; + }; + new ScriptObject(CCD_2217449) { + + expireDate = "20111231"; + }; + new ScriptObject(CCD_2217449) { + + PlayerKillCount20111208_PulsePhaserImage = "1"; + zombieHeadshots20111208 = "7"; + PlayerKillCount20111208_S3RifleImage = "6"; + playerHeadshots20111208 = "2"; + totalPlayerKillCount20111208 = "8"; + expireDate = "20111231"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2320280/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2320280/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..6ff11b4 --- /dev/null +++ b/Univ/Data/2320280/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,36 @@ +//Ranks & Settings File For GUID 2320280 / Name: ergo46 +//Created On 2011-08-10, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2320280) { + + new ScriptObject(TWM2Client_2320280) { + + hasMedalHonorsB = "1"; + rank = "Lieutenant Colonel Grade I"; + rankNumber = "37"; + xpGain648768ef4d8cc65b7a856be0601eaf0cbacae665 = "79352"; + money = "79352"; + weaponKillsWp400Image = "4"; + millionxp = "0"; + weaponKillsRP432Image = "1"; + xp = "79352"; + weaponKillsS3RifleImage = "10"; + gameTime = "48"; + name = "ergo46"; + officer = "0"; + noMoreEXP648768ef4d8cc65b7a856be0601eaf0cbacae665 = "0"; + phrase = "None Set"; + hasMedalHonorsA = "1"; + noMoreEXP4ab044aba12120725c31fc423e983af15f0e9c2e = "0"; + }; + new ScriptObject(ClientStore2320280) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(CCD_2320280) { + + expireDate = "20120430"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2355847/Ranks/CnC4/Saved.Rank b/Univ/Data/2355847/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..8a957d8 --- /dev/null +++ b/Univ/Data/2355847/Ranks/CnC4/Saved.Rank @@ -0,0 +1,23 @@ +//Ranks File For GUID 2355847 +//Created On 2010-04-17, C&C 4 +$Rank::Name[2355847] = "Harris"; +$Rank::Rank[2355847, 1] = "Private"; +$Rank::XP[2355847, 1] = 628; +$Rank::Rank[2355847, 2] = "Acolyte"; +$Rank::XP[2355847, 2] = 0; +$CNC::Deaths[2355847] = 17; +$CNC::TotalBuildingKills[2355847] = 1; +$CNC::BuildingKills[2355847, "ObeliskOfLight"] = 1; +$CNC::KilledByObj[2355847, ObeliskTurretDeployedBase] = 1; +$CNC::TotalCrawlerDecoms[2355847] = 1; +$CNC::KilledByPl[2355847, 2687806] = 7; +$CNC::TotalKills[2355847] = 8; +$CNC::Kills[2355847, 2485526] = 2; +$CNC::TotalCrawlerKills[2355847] = 3; +$CNC::CrawlerKills[2355847, 2485526] = 1; +$CNC::UKills[2355847] = 4; +$CNC::CrawlerKills[2355847, 2687806] = 1; +$CNC::KilledByPl[2355847, 2148110] = 4; +$CNC::Kills[2355847, 2148110] = 1; +$CNC::Kills[2355847, 2000343] = 1; +$CNC::CrawlerKills[2355847, 2000343] = 1; \ No newline at end of file diff --git a/Univ/Data/2450675/Ranks/CnC4/Saved.Rank b/Univ/Data/2450675/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..719dbbe --- /dev/null +++ b/Univ/Data/2450675/Ranks/CnC4/Saved.Rank @@ -0,0 +1,15 @@ +//Ranks File For GUID 2450675 +//Created On 2010-04-04, C&C 4 +$Rank::Name[2450675] = "rk4000"; +$Rank::Rank[2450675, 1] = "Gunnary Private"; +$Rank::XP[2450675, 1] = 1046; +$Rank::Rank[2450675, 2] = "Acolyte"; +$Rank::XP[2450675, 2] = 70; +$CNC::Deaths[2450675] = 17; +$CNC::TotalKills[2450675] = 1; +$CNC::Kills[2450675, 2000343] = 1; +$CNC::KilledByPl[2450675, 2000343] = 2; +$CNC::UKills[2450675] = 2; +$CNC::KilledByPl[2450675, 2001729] = 11; +$CNC::Kills[2450675, 2001729] = 3; +$CNC::KilledByObj[2450675, DropPod] = 1; diff --git a/Univ/Data/2466121/Buildings/1.cs b/Univ/Data/2466121/Buildings/1.cs new file mode 100644 index 0000000..1324408 --- /dev/null +++ b/Univ/Data/2466121/Buildings/1.cs @@ -0,0 +1,106 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Skibot" +// Created in mission "slapmydashH" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "StationInventory";position = "-82.719 -350.414 129.838";rotation = "0 0 1 226.018";scale = "0.7 0.7 0.7";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-85.1883 -352.808 129.938";rotation = "0 0 1 2.21989";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.9385 -352.818 130.823";rotation = "0.707042 -0.0136993 0.707039 181.57";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.8613 -351.293 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.9111 -352.578 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.8077 -349.911 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.9564 -353.747 133.188";rotation = "0.0193673 0.999625 0.0193673 90.022";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.7576 -348.619 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.705 -347.261 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.648 -345.79 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.6008 -344.573 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.5549 -343.389 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-85.1783 -352.559 130.822";rotation = "0.584665 0.562439 0.584662 121.29";scale = "0.125 0.166666 47.998";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-85.1786 -352.558 133.188";rotation = "0.584664 0.562439 0.584662 121.29";scale = "0.125 0.166666 47.998";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.5025 -342.037 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "-71.9888 -328.552 129.688";rotation = "-0.999625 0.0193662 0.0193693 90.0214";scale = "6.24998 0.166667 49.9976";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.2649 -340.893 123.938";rotation = "0 0 1 2.21989";scale = "6.75 9.33332 20";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.456 -340.836 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.4047 -339.513 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.3562 -338.263 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.3107 -337.089 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-62.6465 -352.116 130.238";rotation = "0.767846 0.640635 8.12063e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";nametoset = "To Air Base";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-62.6465 -352.116 130.338";rotation = "-3.49795e-06 -2.31114e-13 -1 79.6784";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.2627 -335.851 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.2156 -334.636 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.7066 -353.757 129.938";rotation = "0 0 1 2.21989";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.1754 -333.598 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-65.9443 -335.931 129.938";rotation = "0 0 1 59.0513";scale = "0.005 0.005 0.005";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.1359 -332.579 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-81.9692 -330.201 130.338";rotation = "-0.625152 0.780503 9.89358e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";nametoset = "Exit Bunker";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-81.9692 -330.201 130.338";rotation = "6.08779e-07 5.24242e-13 1 102.613";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.0974 -331.584 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 47.9998";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.6969 -353.508 130.823";rotation = "0.999625 -0.0193725 0.0193693 90.0214";scale = "0.125 0.166667 47.998";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.7674 -329.526 133.188";rotation = "-0.56975 0.592262 -0.569746 118.727";scale = "0.125 0.166666 47.998";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.0463 -330.266 133.188";rotation = "-0.562444 0.584659 0.584663 121.29";scale = "0.125 0.166666 47.9998";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.2393 -328.327 129.938";rotation = "0 0 1 2.21989";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.9893 -328.337 130.822";rotation = "-0.592261 -0.569754 -0.569744 118.727";scale = "0.125 0.166666 47.999";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.0075 -329.266 133.188";rotation = "0.0193673 0.999625 0.0193673 90.022";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-61.8439 -331.463 129.838";rotation = "0 0 1 41.1781";scale = "0.7 0.7 0.7";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.7577 -329.276 129.938";rotation = "0 0 1 2.21989";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-4.48563 -301.425 130.9";rotation = "0 0 1 221.902";scale = "0.005 0.005 0.005";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-3.57961 -299.071 129.338";rotation = "0.808039 0.589129 7.46774e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";nametoset = "Entrance to Bunker";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-3.57961 -299.071 129.338";rotation = "-3.89024e-06 -8.35864e-13 -1 72.1904";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.6684 -279.461 291";rotation = "0 0 1 186.039";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "74.6257 -277.905 291";rotation = "0 0 1 8.27441";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";nametoset = "Tele Leads to Bunker";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "76.1531 -277.404 291.2";rotation = "-0.671052 0.741411 9.39805e-07 180";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";nametoset = "To Bunker";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "76.2531 22.5958 260.4";rotation = "5.624e-07 1.11396e-12 1 95.7034";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "73.4549 -279.197 290.99";rotation = "-0.617892 -0.555973 -0.555971 116.576";scale = "24.0201 3.02 0.48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "77.9835 -260.058 290.75";rotation = "-0.997229 0.0526003 0.0526012 90.1589";scale = "1.24999 0.166667 29.9998";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.6947 -279.213 294.25";rotation = "0.596592 0.536806 0.596588 123.546";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.1531 -279.367 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.7779 -260.459 290.75";rotation = "-0.0372714 -0.706613 0.706618 184.269";scale = "0.125 0.166666 30.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "85.824 -280.999 290.75";rotation = "0.0372713 0.706616 0.706615 184.269";scale = "6.24993 0.166667 10";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "78.3517 -275.683 290.994";rotation = "-0.61789 -0.555973 -0.555973 116.576";scale = "15.9999 3.01001 0.48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "76.3811 -279.497 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "73.9324 -279.248 290.99";rotation = "-0.997229 0.0526009 0.0526062 90.1589";scale = "24.0198 3.02 0.48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "77.5507 -279.621 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.4367 -260.634 290.75";rotation = "-0.0372714 -0.706613 0.706618 184.269";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.7836 -282.012 294.25";rotation = "0.0526012 0.997229 0.052601 90.1589";scale = "0.125 0.166666 47.9996";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "78.6741 -279.739 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.9182 -260.791 290.75";rotation = "-0.0372714 -0.706613 0.706618 184.269";scale = "0.125 0.166666 30.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "78.8804 -275.246 290.99";rotation = "-0.997229 0.0525996 0.0526049 90.1589";scale = "15.02 3.01001 0.48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.6217 -279.84 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "77.7695 -256.573 290.9";rotation = "0 0 -1 65.1092";scale = "0.7 0.7 0.7";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "86.3646 -260.944 290.75";rotation = "-0.0372714 -0.706613 0.706618 184.269";scale = "0.125 0.166666 30.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "86.3646 -260.944 290.75";rotation = "-0.0372714 -0.706613 0.706618 184.269";scale = "0.125 0.166666 30.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.6959 -279.953 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "76.2455 -255.097 291";rotation = "0 0 1 186.039";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.7265 -280.062 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.7961 -261.095 290.75";rotation = "-0.0372714 -0.706613 0.706618 184.269";scale = "0.125 0.166666 30.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.7544 -280.171 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.155 -268.101 288.2";rotation = "0 0 1 96.0386";scale = "6.75 8.99999 14";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.3069 -261.255 290.75";rotation = "-0.0372714 -0.706613 0.706618 184.269";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.644 -280.265 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.6141 -280.368 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.6363 -261.396 290.75";rotation = "-0.0372714 -0.706613 0.706618 184.269";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.7053 -280.483 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "91.9121 -261.531 290.75";rotation = "-0.0372714 -0.706613 0.706618 184.269";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "86.9024 -280.61 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "93.2603 -261.673 290.75";rotation = "-0.0372714 -0.706613 0.706618 184.269";scale = "0.125 0.166666 30";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.822 -280.707 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "96.2365 -279.837 290.9";rotation = "0 0 1 133.787";scale = "0.7 0.7 0.7";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "88.7127 -280.801 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "87.928 -261.109 290.75";rotation = "0.0372713 0.706616 0.706615 184.269";scale = "6.2501 0.166667 10";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "94.5396 -261.809 290.75";rotation = "-0.0372714 -0.706613 0.706618 184.269";scale = "0.125 0.166666 30.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "80.5114 -259.832 290.99";rotation = "-0.997229 0.0526005 0.0526058 90.1589";scale = "15.02 3.01001 0.48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.4535 -280.88 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "98.0322 -282.039 291";rotation = "0 0 1 186.039";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.2862 -280.968 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "91.0289 -281.046 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "91.8317 -281.131 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "94.2619 -277.376 290.989";rotation = "0 0 -1 83.9612";scale = "16.0197 0.519998 3.02";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "76.5094 -254.884 290.99";rotation = "-0.997229 0.0526009 0.0526062 90.1589";scale = "24.0201 3.02 0.48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "97.8725 -262.162 290.75";rotation = "-0.997229 0.0526003 0.0526012 90.1589";scale = "1.24999 0.166667 29.9996";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.7301 -281.226 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "93.6576 -281.324 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.361 -257.648 294.25";rotation = "0.0526012 0.997229 0.052601 90.1589";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "94.7627 -281.441 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "95.9314 -281.565 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "100.824 -257.938 290.99";rotation = "-0.536804 0.596589 0.596593 123.546";scale = "24.0202 3.02 0.48";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "96.9906 -281.677 294.25";rotation = "0.0372737 0.706617 0.706614 184.269";scale = "0.125 0.166666 48.0002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.584 -257.923 294.25";rotation = "-0.555973 0.617892 -0.555971 116.577";scale = "0.125 0.166666 48.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "98.5514 -259.58 291.1";rotation = "-0.145295 0.989388 1.25414e-06 180";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "99.5661 -259.055 291";rotation = "0 0 1 184.429";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";nametoset = "type /setspawn on this green pad";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.61 -257.674 291";rotation = "0 0 1 186.039";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2466121/Buildings/2.cs b/Univ/Data/2466121/Buildings/2.cs new file mode 100644 index 0000000..a8a40c4 --- /dev/null +++ b/Univ/Data/2466121/Buildings/2.cs @@ -0,0 +1,72 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Skibot" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.4445 -326.945 100.938";rotation = "0 0 1 88.6503";scale = "0.125 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.4445 -326.945 100.938";rotation = "0 0 1 88.6503";scale = "0.125 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.6916 -327.21 104.188";rotation = "0.0117739 -0.999861 -0.0117766 90.0076";scale = "1.625 0.166667 22.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.6916 -327.21 104.188";rotation = "0.0117739 -0.999861 -0.0117766 90.0076";scale = "1.625 0.166667 22.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9415 -327.216 100.938";rotation = "0 0 -1 91.3495";scale = "0.125 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9415 -327.216 100.938";rotation = "0 0 -1 91.3495";scale = "0.125 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.1916 -327.221 100.688";rotation = "0.630411 0.645447 -0.431253 134.316";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.1916 -327.221 100.688";rotation = "0.630411 0.645447 -0.431253 134.316";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedStationInventory";position = "-59.4091 -328.478 100.938";rotation = "0 0 1 88.7695";scale = "1 1 1";team = "1";ownerGUID = "2466121";nametoset = "Remember to Only Leave on for a few seconds or else it will lag";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedStationInventory";position = "-59.4091 -328.478 100.938";rotation = "0 0 1 88.7695";scale = "1 1 1";team = "1";ownerGUID = "2466121";nametoset = "Remember to Only Leave on for a few seconds or else it will lag";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-68.8828 -329.706 102.688";rotation = "0.572766 0.586416 0.572761 119.224";scale = "0.875006 0.166666 4.48122";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";nametoset = "Enter Here";cankill = "0";canmove = 1;closedscale = "0.875006 0.166666 4.48122";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "0";moving = "open";openedscale = "0.875006 0.166666 0.1";prevscale = "0.875006 0.166666 4.48122";state = "closed";timeout = "3";toggletype = "0";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-68.8828 -329.706 102.688";rotation = "0.572766 0.586416 0.572761 119.224";scale = "0.875006 0.166666 4.48122";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "0";moving = "open";prevscale = "0.875006 0.166666 4.48122";state = "closed";timeout = "3";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.296 -329.748 100.205";rotation = "-0.147362 0.697736 0.701034 194.914";scale = "0.630005 0.166666 4.5032";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.296 -329.748 100.205";rotation = "-0.147362 0.697736 0.701034 194.914";scale = "0.630005 0.166666 4.5032";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "-78.4328 -328.87 100";rotation = "0 0 1 124.64";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2466121";powerFreq = "1";set1 = "2";set2 = "1";packBlock = "spinedeployable";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.8219 -332.248 107.188";rotation = "-0.00832451 0.707086 0.707078 179.045";scale = "2.37495 0.166667 9.80272";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.8219 -332.248 107.188";rotation = "-0.00832451 0.707086 0.707078 179.045";scale = "2.37495 0.166667 9.80272";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9357 -327.466 105.938";rotation = "0.581831 -0.568286 0.581829 239.218";scale = "0.75 0.166666 9.8027";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9357 -327.466 105.938";rotation = "0.581831 -0.568286 0.581829 239.218";scale = "0.75 0.166666 9.8027";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.1266 -329.971 100.688";rotation = "0.630408 0.645451 -0.431252 134.316";scale = "0.125 0.166666 7.9998";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.1266 -329.971 100.688";rotation = "0.630408 0.645451 -0.431252 134.316";scale = "0.125 0.166666 7.9998";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-57.6018 -330.877 102.535";rotation = "-0.586416 0.572766 0.572761 119.224";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";isSwitchedOff = "1";switchRadius = "50";nametoset = "Start the Killing >:D";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-57.6018 -330.877 102.535";rotation = "-0.586416 0.572766 0.572761 119.224";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";isSwitchedOff = "1";switchRadius = "50";nametoset = "Start the Killing >:D";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.8515 -331.036 100.938";rotation = "0 0 -1 91.3495";scale = "0.665185 0.166666 7";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.8515 -331.036 100.938";rotation = "0 0 -1 91.3495";scale = "0.665185 0.166666 7";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.0676 -332.386 103.938";rotation = "0.586421 -0.572762 0.57276 119.223";scale = "0.125 2 3.00142";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.0676 -332.386 103.938";rotation = "0.586421 -0.572762 0.57276 119.223";scale = "0.125 2 3.00142";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.5675 -332.397 101.596";rotation = "-0.586419 0.572763 0.572761 119.223";scale = "0.125 0.438663 17.9992";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.5675 -332.397 101.596";rotation = "-0.586419 0.572763 0.572761 119.223";scale = "0.125 0.438663 17.9992";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.5648 -332.61 105.438";rotation = "0.0117849 -0.999861 -0.0117874 90.0082";scale = "0.75 0.166666 18.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.5648 -332.61 105.438";rotation = "0.0117849 -0.999861 -0.0117874 90.0082";scale = "0.75 0.166666 18.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.2265 -336.194 100.938";rotation = "-3.07139e-06 3.74243e-06 -1 91.3495";scale = "4.50025 0.166667 12";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.2265 -336.194 100.938";rotation = "-3.07139e-06 3.74243e-06 -1 91.3495";scale = "4.50025 0.166667 12";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.1885 -327.212 107.188";rotation = "0.581832 -0.568284 0.581829 239.218";scale = "0.125 0.66685 36.004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.1885 -327.212 107.188";rotation = "0.581832 -0.568284 0.581829 239.218";scale = "0.125 0.66685 36.004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9735 -336.47 100.688";rotation = "0.586401 -0.572762 0.572781 119.221";scale = "4.75058 0.166666 24.0006";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9735 -336.47 100.688";rotation = "0.586401 -0.572762 0.572781 119.221";scale = "4.75058 0.166666 24.0006";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-54.9983 -337.548 99.938";rotation = "0 0 1 92.0268";scale = "0.005 0.005 0.005";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-54.9983 -337.548 99.938";rotation = "0 0 1 92.0268";scale = "0.005 0.005 0.005";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.163 -338.94 100.938";rotation = "0 0 1 88.6498";scale = "3.4002 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.163 -338.94 100.938";rotation = "0 0 1 88.6498";scale = "3.4002 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.4164 -338.908 107.188";rotation = "0.707083 0.00833336 0.707081 179.045";scale = "0.125 4.36653 18.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.4164 -338.908 107.188";rotation = "0.707083 0.00833336 0.707081 179.045";scale = "0.125 4.36653 18.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.66 -339.164 100.938";rotation = "0 0 1 88.6498";scale = "3.39995 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.66 -339.164 100.938";rotation = "0 0 1 88.6498";scale = "3.39995 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-67.3239 -339.458 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-67.3239 -339.458 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-63.7026 -339.677 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-63.7026 -339.677 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-60.9654 -339.842 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-60.9654 -339.842 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-58.2299 -340.903 100.938";rotation = "0 0 1 179.094";scale = "1 1 1";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-58.2299 -340.903 100.938";rotation = "0 0 1 179.094";scale = "1 1 1";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-62.3265 -341.315 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-62.3265 -341.315 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-65.4763 -341.727 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-65.4763 -341.727 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-61.2147 -343.445 100.938";rotation = "0 0 -1 3.62091";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-61.2147 -343.445 100.938";rotation = "0 0 -1 3.62091";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-64.1082 -343.446 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-64.1082 -343.446 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-66.9236 -343.369 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-66.9236 -343.369 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.7591 -345.436 104.188";rotation = "-0.011777 0.999861 -0.011777 90.0082";scale = "1.625 0.166666 4.0009";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.7591 -345.436 104.188";rotation = "-0.011777 0.999861 -0.011777 90.0082";scale = "1.625 0.166666 4.0009";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.2559 -345.706 104.188";rotation = "0.707083 0.00833336 0.707081 179.045";scale = "1.625 0.166666 18.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.2559 -345.706 104.188";rotation = "0.707083 0.00833336 0.707081 179.045";scale = "1.625 0.166666 18.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2466121/Buildings/3.cs b/Univ/Data/2466121/Buildings/3.cs new file mode 100644 index 0000000..e7c99f3 --- /dev/null +++ b/Univ/Data/2466121/Buildings/3.cs @@ -0,0 +1,77 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Skibot" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9474 -326.966 100.688";rotation = "0.999861 0.0118058 -0.0117481 90.0065";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9474 -326.966 100.688";rotation = "0.999861 0.0118058 -0.0117481 90.0065";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-67.4246 -322.558 100.838";rotation = "0 0 1 0.625573";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-67.4246 -322.558 100.838";rotation = "0 0 1 0.625573";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9355 -327.466 104.188";rotation = "0.572766 0.586416 0.572761 119.224";scale = "1.625 0.166666 12.9996";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9355 -327.466 104.188";rotation = "0.572766 0.586416 0.572761 119.224";scale = "1.625 0.166666 12.9996";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.1916 -327.221 100.688";rotation = "0.630411 0.645447 -0.431253 134.316";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.1916 -327.221 100.688";rotation = "0.630411 0.645447 -0.431253 134.316";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-71.4863 -328.649 99.7228";rotation = "0.0117565 -0.999775 -0.0176401 67.5104";scale = "0.125 0.750533 5.04004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-71.4863 -328.649 99.7228";rotation = "0.0117565 -0.999775 -0.0176401 67.5104";scale = "0.125 0.750533 5.04004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.8354 -320.952 103.938";rotation = "0.568285 0.58183 -0.58183 120.783";scale = "0.125 2.33333 22.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.8354 -320.952 103.938";rotation = "0.568285 0.58183 -0.58183 120.783";scale = "0.125 2.33333 22.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.1266 -329.971 100.688";rotation = "0.630408 0.645451 -0.431252 134.316";scale = "0.125 0.166666 7.9998";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.1266 -329.971 100.688";rotation = "0.630408 0.645451 -0.431252 134.316";scale = "0.125 0.166666 7.9998";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.199 -326.83 100.688";rotation = "0.58183 -0.568302 -0.581813 120.777";scale = "0.125 3.66683 10.999";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.199 -326.83 100.688";rotation = "0.58183 -0.568302 -0.581813 120.777";scale = "0.125 3.66683 10.999";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.878 -329.916 107.438";rotation = "0.999931 0.0117743 -7.4316e-07 180";scale = "0.125 1.63379 6";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.878 -329.916 107.438";rotation = "0.999931 0.0117743 -7.4316e-07 180";scale = "0.125 1.63379 6";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.1871 -327.33 107.188";rotation = "0.999861 0.0117845 -0.0117772 90.0082";scale = "2.75005 0.166667 11.9993";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.1871 -327.33 107.188";rotation = "0.999861 0.0117845 -0.0117772 90.0082";scale = "2.75005 0.166667 11.9993";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.8828 -329.706 102.688";rotation = "-0.999861 -0.0117755 -0.0117748 90.0076";scale = "0.125 1.16667 5.32148";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.8828 -329.706 102.688";rotation = "-0.999861 -0.0117755 -0.0117748 90.0076";scale = "0.125 1.16667 5.32148";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.8219 -332.248 107.188";rotation = "-0.00832451 0.707086 0.707078 179.045";scale = "2.37495 0.166667 9.80272";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.8219 -332.248 107.188";rotation = "-0.00832451 0.707086 0.707078 179.045";scale = "2.37495 0.166667 9.80272";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.4503 -326.695 103.938";rotation = "0.999861 0.0118058 -0.0117481 90.0065";scale = "0.125 2.333 12";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.4503 -326.695 103.938";rotation = "0.999861 0.0118058 -0.0117481 90.0065";scale = "0.125 2.333 12";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.5675 -332.397 101.596";rotation = "-0.586419 0.572763 0.572761 119.223";scale = "0.125 0.438663 17.9992";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.5675 -332.397 101.596";rotation = "-0.586419 0.572763 0.572761 119.223";scale = "0.125 0.438663 17.9992";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.5648 -332.61 105.438";rotation = "0.0117849 -0.999861 -0.0117874 90.0082";scale = "0.75 0.166666 18.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.5648 -332.61 105.438";rotation = "0.0117849 -0.999861 -0.0117874 90.0082";scale = "0.75 0.166666 18.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.4445 -326.945 100.938";rotation = "0 0 1 88.6503";scale = "0.125 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.4445 -326.945 100.938";rotation = "0 0 1 88.6503";scale = "0.125 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.66 -339.164 100.938";rotation = "0 0 1 88.6498";scale = "3.39995 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.66 -339.164 100.938";rotation = "0 0 1 88.6498";scale = "3.39995 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-57.6341 -329.507 102.407";rotation = "-0.586418 0.572764 0.572761 119.224";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";isSwitchedOff = "1";switchRadius = "50";timed = "2";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-57.6341 -329.507 102.407";rotation = "-0.586418 0.572764 0.572761 119.224";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";isSwitchedOff = "1";switchRadius = "50";timed = "2";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-67.3239 -339.458 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-67.3239 -339.458 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9735 -336.47 100.688";rotation = "0.586401 -0.572762 0.572781 119.221";scale = "4.75058 0.166666 24.0006";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9735 -336.47 100.688";rotation = "0.586401 -0.572762 0.572781 119.221";scale = "4.75058 0.166666 24.0006";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.0676 -332.386 103.938";rotation = "0.586421 -0.572762 0.57276 119.223";scale = "0.125 2 3.00142";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.0676 -332.386 103.938";rotation = "0.586421 -0.572762 0.57276 119.223";scale = "0.125 2 3.00142";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.4164 -338.908 107.188";rotation = "0.707083 0.00833336 0.707081 179.045";scale = "0.125 4.36653 18.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.4164 -338.908 107.188";rotation = "0.707083 0.00833336 0.707081 179.045";scale = "0.125 4.36653 18.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-63.7026 -339.677 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-63.7026 -339.677 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-65.4763 -341.727 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-65.4763 -341.727 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-66.9236 -343.369 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-66.9236 -343.369 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.1885 -327.212 107.188";rotation = "0.581832 -0.568284 0.581829 239.218";scale = "0.125 0.66685 36.004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.1885 -327.212 107.188";rotation = "0.581832 -0.568284 0.581829 239.218";scale = "0.125 0.66685 36.004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-60.9654 -339.842 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-60.9654 -339.842 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.4385 -327.196 103.938";rotation = "-0.999861 -0.0117756 -0.0117787 90.0082";scale = "0.125 2 36.002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.4385 -327.196 103.938";rotation = "-0.999861 -0.0117756 -0.0117787 90.0082";scale = "0.125 2 36.002";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-62.3265 -341.315 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-62.3265 -341.315 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.163 -338.94 100.938";rotation = "0 0 1 88.6498";scale = "3.4002 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.163 -338.94 100.938";rotation = "0 0 1 88.6498";scale = "3.4002 0.166666 13";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-64.1082 -343.446 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-64.1082 -343.446 100.938";rotation = "0 0 1 3.37729";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-54.9983 -337.548 99.938";rotation = "0 0 1 92.0268";scale = "0.005 0.00499999 0.00499998";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-54.9983 -337.548 99.938";rotation = "0 0 1 92.0268";scale = "0.005 0.00499999 0.00499998";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-61.2147 -343.445 100.938";rotation = "0 0 -1 3.62091";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-61.2147 -343.445 100.938";rotation = "0 0 -1 3.62091";scale = "1 1 1";team = "1";ownerGUID = "2466121";powerFreq = "1";ZType = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.2559 -345.706 104.188";rotation = "0.707083 0.00833336 0.707081 179.045";scale = "1.625 0.166666 18.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.2559 -345.706 104.188";rotation = "0.707083 0.00833336 0.707081 179.045";scale = "1.625 0.166666 18.0004";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-58.2299 -340.903 100.938";rotation = "0 0 1 179.094";scale = "1 1 1";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-58.2299 -340.903 100.938";rotation = "0 0 1 179.094";scale = "1 1 1";team = "1";ownerGUID = "2466121";deployed = "1";powerFreq = "1";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.7591 -345.436 104.188";rotation = "-0.011777 0.999861 -0.011777 90.0082";scale = "1.625 0.166666 4.0009";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.7591 -345.436 104.188";rotation = "-0.011777 0.999861 -0.011777 90.0082";scale = "1.625 0.166666 4.0009";team = "1";ownerGUID = "2466121";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2466121/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2466121/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..dafb55c --- /dev/null +++ b/Univ/Data/2466121/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,173 @@ +//Ranks & Settings File For GUID 2466121 / Name: Skibot +//Created On 2010-11-10, Total Warfare Mod 2 3.4 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2466121) { + + new ScriptObject(TWM2Client_2466121) { + + HeliCalls = "120"; + challengeCompleteGoldStar = "1"; + challengeCompleteNapalmHarrier1 = "1"; + challengeCompleteVard1 = "1"; + xpGainc7412b8fcc6af13f36096bacea1e97d0ab47c3d1 = "123810"; + challengeCompleteDownBoy = "1"; + xpGainb4b3b9bbb32de394f880cda62002aeb900c8e5f4 = "1.39924e+06"; + rankNumber = "61"; + noMoreEXPb4b3b9bbb32de394f880cda62002aeb900c8e5f4 = "0"; + challengeCompleteSBomber1 = "1"; + challengeComplete15For15 = "1"; + xpGaind9bb23d3e03df1cafd103245ce13b400611f264b = "239770"; + gameTime = "19755"; + noMoreEXP9e25c0a6842af40c72fc0df99a6ffd1aedef2e53 = "0"; + noMoreEXP1b9d1907e1c1dde0530bba84209054450a51bf02 = "0"; + xpGaind2e03ad93dbfdff7915115d89b9b64321dd7ee06 = "210044"; + hasMedalSkyFront = "1"; + challengeCompleteAcceptance = "1"; + noMoreEXP38011fa98e61dfc9ae9ce561e74da77ffe244d9d = "0"; + hasMedalHarbiend = "1"; + ArtyCalls = "84"; + bossDefeatCountVardison3 = "1"; + hasMedalLordraniussFall = "1"; + GunHeliCalls = "114"; + xpGain38011fa98e61dfc9ae9ce561e74da77ffe244d9d = "89284"; + challengeCompleteGroupBuster = "1"; + challengeCompleteEpicFailure = "1"; + hasMedalMySky = "1"; + hasMedalAboutDamnTime = "1"; + challengeCompleteSimonSays = "1"; + noMoreEXP103e66039034f730769ef68347814cb14b19b24b = "0"; + bossDefeatCountTrebor = "1"; + bossDefeatCountYvex = "3"; + name = "Skibot"; + challengeCompleteFromTheTop = "1"; + noMoreEXP232efdff56b108c368cbe587f5fd4eac010b95f4 = "0"; + xpGain232efdff56b108c368cbe587f5fd4eac010b95f4 = "223486"; + noMoreEXP9d579eb661a60278785d0185f9e7ebcab8a5b1b3 = "0"; + noMoreEXPfa7b60f70e0bdb4f70083644e52bb33ce78820eb = "0"; + noMoreEXP9aec871ce088bfcdc72be549167a11e8fcda9666 = "0"; + hasMedalTheNewGeneral = "1"; + AirstrikeCalls = "141"; + hasMedalGamerExcuisite = "1"; + challengeCompleteHarrier1 = "1"; + challengeCompleteLifeGiver = "1"; + phrase = "i work alone.."; + bossDefeatCountLordRog = "3"; + challengeCompleteCentaur1 = "1"; + xpGain9aec871ce088bfcdc72be549167a11e8fcda9666 = "21390"; + CGCalls = "0"; + noMoreEXPbf60b256ceb4bb9b3edef378f8535e18bd397194 = "0"; + hasMedalExpertSurvivor = "1"; + challengeCompleteAirstrike3 = "1"; + hasMedalSrysly = "1"; + hasMedalInsigniaDefeated = "1"; + bossDefeatCountGhostOfLightning = "1"; + xpGain1b9d1907e1c1dde0530bba84209054450a51bf02 = "122580"; + officer = "9"; + SatNukeCalls = "110"; + bossDefeatCountShadeLord = "3"; + xpGain7b9b342e269d42c32cc36aa922ffa635971f26c6 = "76704"; + HarrierCalls = "101"; + xpGainbf60b256ceb4bb9b3edef378f8535e18bd397194 = "15376"; + bossDefeatCountCnlWindshear = "2"; + noMoreEXP884fc4ccb714255ef923d93eb07b6a056caf9b1a = "0"; + challengeCompleteLRog1 = "1"; + challengeCompleteGunHeli1 = "1"; + xpGaina7f20487bdfe41fb720b741a3304cc0934243bcc = "280888"; + challengeCompleteAirstrike1 = "1"; + hasMedalHonorsA = "1"; + hasMedalHonorsC = "1"; + rank = "Master Commander"; + challengeCompleteGunHeli2 = "1"; + challengeCompleteCentaur3 = "1"; + xpGainb152d8fcea07451cc8f352e98290236d7ad3e0a3 = "1302"; + noMoreEXP1dd81af86eb4506277bfc40fead45d34d14971c0 = "0"; + bossDefeatCountVengenor = "1"; + challengeCompleteNapalmHarrier2 = "1"; + hasMedalTheSourceOfAllEvil = "1"; + challengeCompleteSBomber3 = "1"; + hasMedalHonorsB = "1"; + UAVCalls = "0"; + HWCalls = "0"; + challengeCompleteAirstrike2 = "1"; + noMoreEXPb152d8fcea07451cc8f352e98290236d7ad3e0a3 = "0"; + challengeCompleteMilestone25 = "1"; + challengeCompleteYvex1 = "1"; + hasMedalThundaStruk = "1"; + ZBCalls = "0"; + xpGain9e25c0a6842af40c72fc0df99a6ffd1aedef2e53 = "251902"; + hasMedalRevengeAvoidedAgain = "1"; + noMoreEXP8ec0cd0ff6a6e70f6f89957da98ec1c4a11fe262 = "0"; + noMoreEXPc7412b8fcc6af13f36096bacea1e97d0ab47c3d1 = "0"; + challengeCompleteHelicopter2 = "1"; + noMoreEXP7b9b342e269d42c32cc36aa922ffa635971f26c6 = "0"; + challengeCompleteCentaur2 = "1"; + noMoreEXPa7f20487bdfe41fb720b741a3304cc0934243bcc = "0"; + challengeCompleteAngel = "1"; + noMoreEXPb578e82fff7675a2c3a723b690ecf20c04eb5466 = "0"; + challengeCompleteHarrier2 = "1"; + noMoreEXPd2e03ad93dbfdff7915115d89b9b64321dd7ee06 = "0"; + money = "4.50617e+06"; + SlthAirstrikeCalls = "101"; + GMCalls = "8"; + millionxp = "3"; + xpGain9d579eb661a60278785d0185f9e7ebcab8a5b1b3 = "49616"; + challengeCompleteGunHeli3 = "1"; + bossDefeatCountInsignia = "1"; + hasMedalTheLight = "1"; + hasMedalSurvivor = "1"; + bossDefeatCountStormrider = "3"; + xpGain769f4d9d42aded83ce2518083610d5e5be9279c8 = "161824"; + NukeCalls = "0"; + challengeCompleteHelicopter1 = "1"; + challengeCompleteSBomber2 = "1"; + noMoreEXPd9bb23d3e03df1cafd103245ce13b400611f264b = "0"; + hasMedalAC130Expert = "1"; + hasMedalBurningNightmare = "1"; + noMoreEXP4ab044aba12120725c31fc423e983af15f0e9c2e = "0"; + NapalmHarrierCalls = "102"; + challengeCompleteWaveDefeater = "1"; + xp = "326742"; + bossDefeatCountGhostOfFire = "2"; + noMoreEXP769f4d9d42aded83ce2518083610d5e5be9279c8 = "0"; + noMoreEXP2f9b232e8b7fdf1c188b8523f794073d418b18ed = "0"; + xpGain4ab044aba12120725c31fc423e983af15f0e9c2e = "42660"; + }; + new ScriptObject(CCD_2466121) { + + expireDate = "20121231"; + }; + new ScriptObject(ClientSettings2466121) { + + savedperk2 = "No-Infect Armor"; + savedstreak2 = "4"; + savedstreak3 = "5"; + savedstreak5 = "7"; + savedperk3 = "Ammo Vet"; + savedperk1 = "Advanced Grip"; + savedstreak4 = "6"; + savedstreak7 = "12"; + savedstreak1 = "2"; + savedstreak6 = "8"; + savedstreak8 = "17"; + }; + new ScriptObject(ClientStore2466121) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(CCD_2466121) { + + ZombieKillCount20130513_Model1887Image_1 = "10"; + expireDate = "20130531"; + totalZombieKillCount20130513 = "43"; + ZombieKillCount20130513_M1SniperRifleImage_1 = "25"; + ZombieKillCount20130513_DeagleImage_1 = "1"; + killstreakCalls20130513_4 = "1"; + ZombieKillCount20130513_Wp400Image_1 = "3"; + ZombieKillCount20130513_CrimsonHawkImage_1 = "3"; + ZombieKillCount20130513_0_1 = "43"; + killstreakCalls20130513_2 = "1"; + ZombieKillCount20130513_G17SniperRifleImage_1 = "1"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2485526/Buildings/1.cs b/Univ/Data/2485526/Buildings/1.cs new file mode 100644 index 0000000..efb4c4a --- /dev/null +++ b/Univ/Data/2485526/Buildings/1.cs @@ -0,0 +1,218 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Dayuppy" +// Created in mission "Pretty" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "-25.5899 -381.268 157.117";rotation = "0 0 1 91.6096";scale = "1 1 1";team = "1";ownerGUID = "2485526";deployed = "1";powerFreq = "1";ispersonal = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-25.7696 -377.711 157.767";rotation = "0.58106 -0.569853 0.581065 239.354";scale = "0.125 2.33335 15.0008";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "AudioDep";position = "-23.2728 -381.16 157.517";rotation = "0.70027 0.713878 9.04905e-07 180";scale = "0.4 0.4 0.1";team = "1";ownerGUID = "2485526";powerFreq = "1";pLogic = "0";pLogic = "0";lLogic = "1";audioBlock = "fx/bonuses/horz_straipass2_heist.wav";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.0203 -377.638 157.767";rotation = "-0.999905 -0.00973286 -0.00972869 90.0053";scale = "0.125 0.166666 15.999";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-22.2805 -377.633 157.527";rotation = "0.584843 -0.57357 0.573564 119.358";scale = "7.5194 3.57998 0.52";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.7737 -377.539 157.767";rotation = "0.569858 0.581064 0.581056 239.354";scale = "0.125 0.166666 15.9998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "-29.2884 -377.289 155.322";rotation = "-0.999905 -0.00973051 -0.00972695 90.0053";scale = "7.01982 2.20499 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-29.1978 -381.431 156.048";rotation = "0.569856 0.581058 0.581065 239.354";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2485526";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.2752 -377.393 155.082";rotation = "0.707091 0.00688139 -0.707089 180.788";scale = "0.125 0.166666 13.9996";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.1181 -385.528 157.767";rotation = "0.584844 -0.573566 0.573567 119.358";scale = "0.125 0.166666 14";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.5189 -377.784 157.767";rotation = "-0.999905 -0.00973286 -0.00972869 90.0053";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "-21.7753 -377.383 157.767";rotation = "0.56986 0.58106 0.581058 239.354";scale = "1 1 1";team = "1";ownerGUID = "2485526";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "-22.1141 -385.151 157.527";rotation = "-0.00688246 0.707094 -0.707086 180.789";scale = "7.02012 2.212 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-22.2699 -377.153 155.035";rotation = "-0.00688086 0.707093 -0.707087 180.789";scale = "7.01982 1.08799 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.0203 -377.638 153.707";rotation = "-0.57357 -0.584842 0.573565 119.359";scale = "0.125 0.166666 14.9988";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.1194 -385.391 155.075";rotation = "0.707092 0.00688455 -0.707089 180.788";scale = "0.125 0.166666 14.0002";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.2752 -377.393 153.707";rotation = "0.707091 0.00688139 -0.707089 180.788";scale = "0.125 0.166666 13.9996";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "-21.6195 -385.381 157.767";rotation = "0.56986 0.58106 0.581058 239.354";scale = "1 1 1";team = "1";ownerGUID = "2485526";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-22.1141 -385.151 155.149";rotation = "-0.00688246 0.707094 -0.707086 180.789";scale = "7.02012 1.20301 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.4458 -381.533 157.517";rotation = "-0.00973455 0.999953 6.17739e-06 180";scale = "0.125 2.50013 11.16";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.0252 -377.388 157.517";rotation = "0.999953 0.00973135 1.23354e-08 180";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.1194 -385.391 153.706";rotation = "0.707092 0.00688455 -0.707089 180.788";scale = "0.125 0.166666 14.0002";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.2752 -377.393 152.692";rotation = "-0.00973308 0.999905 -0.00973308 90.0048";scale = "0.381752 0.166667 13.9997";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-21.8695 -385.386 157.517";rotation = "0.713956 -0.700191 -8.87556e-07 180";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-21.9474 -381.387 153.457";rotation = "0.713955 -0.700191 -1.12335e-06 180";scale = "1.87486 0.166667 7.87998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;closedscale = "1.87486 0.166667 7.87998";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "0";moving = "open";openedscale = "1.87486 0.166667 0.1";prevscale = "1.87486 0.166667 7.87998";state = "closed";timeout = "0";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.1194 -385.391 152.693";rotation = "-0.584845 0.573564 0.573568 119.358";scale = "0.125 0.508997 14.0002";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.5237 -377.534 157.517";rotation = "0.999953 0.00973135 1.23354e-08 180";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.2737 -377.529 151.68";rotation = "0.00972609 -0.999905 -0.00972688 90.0059";scale = "0.125 0.166667 13.9996";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.3681 -385.533 157.517";rotation = "0.713956 -0.700191 -8.87556e-07 180";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.118 -385.527 151.679";rotation = "0.00972609 -0.999905 -0.00972688 90.0059";scale = "0.125 0.166667 13.9998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.5188 -377.784 151.687";rotation = "0.58106 -0.56986 0.581058 239.354";scale = "0.125 0.166666 14.9989";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-29.279 -377.769 151.44";rotation = "0.999905 0.00973039 -0.00973678 90.0053";scale = "7.01982 1.43299 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-22.1141 -385.151 151.439";rotation = "-0.00688246 0.707094 -0.707086 180.789";scale = "7.02012 1.432 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-29.759 -377.779 151.447";rotation = "0.584843 -0.57357 0.573564 119.358";scale = "7.52041 1.44 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.7737 -377.538 149.767";rotation = "0.707092 0.00688181 0.707089 179.211";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-27.5055 -375.298 149.517";rotation = "0 0 -1 92.912";scale = "1 1 1";team = "1";ownerGUID = "2485526";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.618 -385.537 149.767";rotation = "0.584839 -0.573576 0.573563 119.357";scale = "0.125 0.166667 15.9998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.5189 -377.783 149.767";rotation = "-0.999905 -0.00973415 -0.00972859 90.0059";scale = "0.125 0.166666 15.0009";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "-29.7737 -377.538 149.767";rotation = "0.569854 0.581066 -0.581058 120.645";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2485526";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "0";emitterBlock = "MissileFireEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.6461 -384.097 149.267";rotation = "0.00973038 -0.999905 -0.0097288 90.0053";scale = "0.125 6.4999 40.0004";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.7063 -393.85 149.267";rotation = "0.573568 0.584844 0.573565 119.359";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "-29.618 -385.537 149.767";rotation = "0.569856 0.581066 -0.581056 120.645";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2485526";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "0";emitterBlock = "MissileFireEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-27.2831 -393.216 149.517";rotation = "0 0 -1 91.6538";scale = "1 1 1";team = "1";ownerGUID = "2485526";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.4514 -394.095 149.267";rotation = "0.707092 0.0068837 0.707089 179.211";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedEscapePod";position = "-9.7998 -373.709 150.767";rotation = "0 0 1 177.742";scale = "4 2 4";team = "1";ownerGUID = "2485526";impulse = "15000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%target = new StaticShape() {datablock = "DeployedLTarget";position = "-9.7998 -373.709 149.517";rotation = "0 0 1 177.742";scale = "0.25 0.999999 0.5";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target);adjustEscapePod(%building);escapePodLoop(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.8406 -374.099 149.267";rotation = "0.569856 0.581064 0.581058 239.355";scale = "0.125 0.166666 78.9996";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-24.2708 -393.753 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-24.9198 -393.766 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-23.1155 -393.731 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5197 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-22.5557 -393.72 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-26.111 -393.789 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-21.7752 -393.705 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5197 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-26.8685 -393.804 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5197 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-27.1239 -393.809 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5197 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-27.47 -393.815 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-27.7386 -393.821 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5197 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-28.0521 -393.827 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-28.3213 -393.832 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-28.68 -393.839 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-20.0675 -393.671 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "18.2034 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-28.966 -393.845 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5197 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-19.2677 -393.656 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "-5.21602 -377.62 153.267";rotation = "-0.584844 0.573567 0.573566 119.358";scale = "1 1 1";team = "1";ownerGUID = "2485526";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-29.846 -374.339 129.507";rotation = "-0.584841 0.573565 0.573571 119.359";scale = "19.5197 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-18.0957 -393.633 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-17.5931 -393.623 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-16.9292 -393.61 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-30.0907 -374.104 129.517";rotation = "0 0 1 178.885";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "-5.28416 -374.121 153.267";rotation = "-0.584844 0.573567 0.573566 119.358";scale = "1 1 1";team = "1";ownerGUID = "2485526";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-16.0634 -393.594 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5197 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.03907 -373.866 153.267";rotation = "-0.00688295 0.707091 -0.707089 180.789";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedEscapePod";position = "-9.7117 -393.711 150.767";rotation = "0 0 1 48.5101";scale = "4 2 4";team = "1";ownerGUID = "2485526";impulse = "15000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%target = new StaticShape() {datablock = "DeployedLTarget";position = "-9.7117 -393.711 149.517";rotation = "0 0 1 48.5101";scale = "0.25 0.999999 0.5";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target);adjustEscapePod(%building);escapePodLoop(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.96607 -377.615 153.017";rotation = "0.713956 -0.700191 -8.87556e-07 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-14.7072 -393.567 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.02933 -374.366 151.229";rotation = "-0.573568 -0.584844 0.573565 119.359";scale = "0.125 0.166666 5.99912";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-14.1844 -393.557 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.02933 -374.366 150.721";rotation = "-0.573568 -0.584844 0.573565 119.359";scale = "0.125 0.166666 5.99912";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.0342 -374.116 153.017";rotation = "0.713956 -0.700191 -8.87556e-07 180";scale = "0.125 0.166666 5.10198";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.98149 -377.366 149.966";rotation = "-0.581058 0.569858 0.581063 239.354";scale = "0.25 0.166667 6.99932";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-13.3815 -393.541 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-12.8839 -393.532 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5197 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "-2.98019 -377.826 153.267";rotation = "-0.999905 -0.00973566 -0.00973565 90.0055";scale = "1 1 1";team = "1";ownerGUID = "2485526";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-1.21677 -377.542 153.267";rotation = "-0.584845 0.573566 0.573566 119.358";scale = "0.125 0.166666 7.00002";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-12.0301 -393.515 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-1.25086 -375.792 153.267";rotation = "-0.00974274 0.999905 -0.00972895 90.0048";scale = "0.125 0.999863 7.00002";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "-11.0684 -393.496 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-1.28491 -374.043 153.267";rotation = "-0.584845 0.573566 0.573566 119.358";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.7014 -394.1 129.517";rotation = "0 0 1 88.8847";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.75505 -393.715 139.267";rotation = "-0.707089 -0.00687381 0.707091 179.211";scale = "4.875 0.166667 39";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "-10.4378 -393.484 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.78425 -374.111 151.235";rotation = "0.00973166 -0.999905 -0.00973458 90.0059";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "-9.96971 -393.475 149.027";rotation = "-0.569859 -0.581057 0.581063 239.354";scale = "19.5187 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.78425 -374.111 150.743";rotation = "0.00973166 -0.999905 -0.00973458 90.0059";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField11";position = "-9.46983 -393.466 149.027";rotation = "0.569856 0.581064 -0.581058 120.646";scale = "19.5197 19.52 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.79483 -374.111 149.877";rotation = "0.707089 0.00687895 0.707091 179.21";scale = "0.305 0.166667 7.02114";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-1.03983 -373.788 153.267";rotation = "0.58106 -0.569857 0.581061 239.354";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.0944 -373.715 129.517";rotation = "-5.38289e-07 -6.73482e-07 -1 91.1152";scale = "0.125 13.1666 39";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-0.966819 -377.537 153.017";rotation = "0.713956 -0.700191 -8.87556e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-1.03009 -374.288 151.241";rotation = "-0.573568 -0.584844 0.573565 119.359";scale = "0.125 0.166666 5.99912";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "-0.716869 -377.532 153.267";rotation = "0.569856 0.58106 0.581062 239.354";scale = "1 1 1";team = "1";ownerGUID = "2485526";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-1.03009 -374.288 150.743";rotation = "-0.573568 -0.584844 0.573565 119.359";scale = "0.125 0.166666 5.99912";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-0.971684 -377.287 150.247";rotation = "-0.58106 0.569856 0.581062 239.354";scale = "0.125 0.166666 5.99912";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-1.03496 -374.038 153.017";rotation = "0.713956 -0.700191 -8.87556e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-0.971684 -377.287 149.767";rotation = "-0.58106 0.569856 0.581062 239.354";scale = "0.125 0.166666 5.99912";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "-0.785011 -374.033 153.267";rotation = "0.569856 0.58106 0.581062 239.354";scale = "1 1 1";team = "1";ownerGUID = "2485526";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.7051 -393.711 149.017";rotation = "0.999953 0.0097332 1.23377e-08 180";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.32137 -413.457 149.188";rotation = "0.573569 0.584845 0.573564 119.359";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.675349 -413.263 149.188";rotation = "0.581055 -0.569887 -0.581036 120.644";scale = "0.125 6.49997 79.0008";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.8378 -374.155 129.267";rotation = "0.00688279 -0.707085 0.707095 179.211";scale = "5 0.166667 38.9994";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-30.0858 -374.354 129.267";rotation = "-0.00688471 0.707091 -0.707089 180.788";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.4515 -394.095 129.267";rotation = "0.584843 -0.573569 0.573565 119.359";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.6518 -373.331 129.267";rotation = "-0.569858 -0.581058 0.581062 239.354";scale = "0.125 0.166666 79.9998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-9.42873 -395.099 131.742";rotation = "0.569855 0.581062 0.581062 239.354";scale = "1 1 1";team = "1";ownerGUID = "2485526";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "9.02778 -375.374 149.437";rotation = "0 0 -1 1.45101";scale = "1 1 1";team = "1";ownerGUID = "2485526";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedEscapePod";position = "9.67646 -387.455 150.688";rotation = "0 0 -1 92.1866";scale = "4 2 4";team = "1";ownerGUID = "2485526";impulse = "15000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%target = new StaticShape() {datablock = "DeployedLTarget";position = "9.67646 -387.455 149.438";rotation = "0 0 -1 92.1866";scale = "0.25 0.999999 0.5";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target);adjustEscapePod(%building);escapePodLoop(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.31652 -413.707 158.938";rotation = "0.700192 0.713955 9.05002e-07 180";scale = "0.125 0.166666 19";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.31652 -413.707 158.938";rotation = "0 0 -1 91.1152";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "-6.11914 -413.405 164.51";rotation = "-0.00688504 0.707092 -0.707089 180.788";scale = "2.96264 3.528 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "-9.32124 -413.457 169.188";rotation = "-0.00687842 0.707095 0.707085 179.212";scale = "1 1 1";team = "1";ownerGUID = "2485526";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.8496 -413.64 164.5";rotation = "-0.00973121 0.999953 1.26753e-06 180";scale = "0.125 0.166666 7.016";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.6747 -413.068 149.188";rotation = "0.573569 0.584843 0.573565 119.359";scale = "0.125 0.166666 78.999";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.34964 -413.63 164";rotation = "-0.00973121 0.999953 1.26753e-06 180";scale = "0.125 0.166666 5.016";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.84973 -413.62 161.992";rotation = "0 0 -1 1.11486";scale = "0.125 0.166666 3.016";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.7004 -393.961 129.267";rotation = "-0.999905 -0.00973486 -0.00972739 90.0059";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.90171 -373.326 129.517";rotation = "0 0 -1 91.1152";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-8.2975 -416.361 169.438";rotation = "0 0 -1 0.807935";scale = "1 1 1";team = "1";ownerGUID = "2485526";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.93227 -433.453 139.188";rotation = "-0.00688004 0.70709 0.70709 179.212";scale = "0.125 6.5 78.999";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.06656 -413.702 159.188";rotation = "0.00972965 -0.999905 -0.00973269 90.0059";scale = "0.125 0.166666 38.9998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.06651 -413.703 160.215";rotation = "0.707089 0.00687851 0.707091 179.211";scale = "0.388247 0.166667 38.9996";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "-9.08127 -413.463 149.428";rotation = "0.707089 0.00687851 0.707091 179.211";scale = "9.52 0.48 19.5199";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.2932 -393.435 129.519";rotation = "-0.000345096 0.000311596 -1 1.11626";scale = "0.125 13.2415 38.842";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.59965 -413.635 161.242";rotation = "0.00972946 -0.999905 -0.00973199 90.0059";scale = "0.125 0.166666 26.3992";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.09969 -413.625 161.742";rotation = "0.00972946 -0.999905 -0.00973199 90.0059";scale = "0.125 0.166666 24.399";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.4296 -413.323 164.75";rotation = "0.707092 0.00688181 -0.707089 180.788";scale = "0.125 0.166666 38.9996";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.09969 -413.625 163.75";rotation = "0.00972946 -0.999905 -0.00973199 90.0059";scale = "0.125 0.166666 24.399";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.59746 -413.378 164.25";rotation = "-0.707088 -0.00688114 0.707092 179.211";scale = "0.125 0.166666 26.3992";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.4296 -413.323 166.096";rotation = "0.707092 0.00688181 -0.707089 180.788";scale = "0.125 0.166666 38.9998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.43 -413.323 149.188";rotation = "-0.569861 -0.581058 0.58106 239.354";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.4296 -413.323 167.744";rotation = "0.707092 0.00688181 -0.707089 180.788";scale = "0.125 0.166666 38.9998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.4297 -413.323 169.188";rotation = "-0.56986 -0.581055 0.581064 239.354";scale = "0.125 0.166666 38.9998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.66527 -421.072 160.438";rotation = "0 0 -1 1.11556";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "7.55914 -375.218 129.839";rotation = "0.683766 0.729701 9.24963e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2485526";deployed = "1";powerFreq = "1";ispersonal = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.65553 -421.572 159.938";rotation = "0 0 -1 1.11556";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.16085 -421.703 159.008";rotation = "-0.00973312 0.999953 1.05764e-06 180";scale = "0.125 5.16497 19.1399";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.64579 -422.072 159.438";rotation = "0 0 -1 1.11556";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.686477 -413.763 160.688";rotation = "-0.00688518 0.707092 -0.707088 180.789";scale = "4.87498 0.166667 13.7506";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-0.091555 -373.771 129.188";rotation = "-0.573569 -0.584842 0.573567 119.359";scale = "0.125 6.5002 118.998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "6.84751 -413.392 161.992";rotation = "0 0 -1 1.11486";scale = "0.125 0.166666 3.016";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.31165 -413.957 159.188";rotation = "-0.573569 -0.584843 0.573565 119.359";scale = "0.125 0.166666 38.9994";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.34751 -413.383 164";rotation = "-0.00973121 0.999953 1.26753e-06 180";scale = "0.125 0.166666 5.016";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.12189 -423.705 159.438";rotation = "-2.51982e-06 -2.92562e-07 1 88.8852";scale = "4.87493 0.166667 19";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.93217 -433.453 149.188";rotation = "0.57357 0.584842 0.573566 119.359";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.84741 -413.373 164.5";rotation = "-0.00973121 0.999953 1.26753e-06 180";scale = "0.125 0.166666 7.016";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.93217 -433.453 169.188";rotation = "0.57357 0.584842 0.573566 119.359";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.6753 -413.068 129.267";rotation = "0.999905 0.00972661 -0.00973494 90.0053";scale = "0.125 0.166666 79.9992";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "10.4349 -413.083 164.51";rotation = "-0.00688107 0.707093 -0.707087 180.789";scale = "2.34332 3.52799 0.48";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.41532 -421.067 160.688";rotation = "0.707091 0.00688295 0.707089 179.211";scale = "0.125 0.166666 37.9844";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.91087 -421.7 159.188";rotation = "0.707094 0.00688196 0.707086 179.211";scale = "0.125 5.16563 39";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.40558 -421.567 160.188";rotation = "0.707091 0.00688295 0.707089 179.211";scale = "0.125 0.166666 37.9844";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.6796 -413.318 158.938";rotation = "0.700192 0.713955 9.05002e-07 180";scale = "0.125 0.166666 19";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.6796 -413.318 168.938";rotation = "0.700192 0.713955 9.05002e-07 180";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.39584 -422.067 159.688";rotation = "0.707091 0.00688295 0.707089 179.211";scale = "0.125 0.166666 37.9842";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "10.6748 -413.068 169.188";rotation = "-0.00688134 0.707093 0.707087 179.211";scale = "1 1 1";team = "1";ownerGUID = "2485526";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.988083 -429.255 149.188";rotation = "0.573561 0.584844 0.573572 119.359";scale = "0.125 6.49997 30.9918";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "9.7155 -415.357 169.438";rotation = "0 0 -1 2.26146";scale = "1 1 1";team = "1";ownerGUID = "2485526";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.06594 -433.258 169.188";rotation = "0.999905 0.00972345 -0.00973622 90.0053";scale = "4.87498 0.166667 38.9974";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.00522 -429.699 158.938";rotation = "0.713956 -0.700191 -8.87556e-07 180";scale = "0.125 0.166666 19";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.684 -413.543 148.938";rotation = "0.700192 0.713955 9.05002e-07 180";scale = "0.125 0.166666 38.842";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.75524 -429.696 159.188";rotation = "0.584842 -0.57357 0.573565 119.359";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.00552 -429.662 158.939";rotation = "0.999953 0.00972616 -6.04503e-07 180";scale = "0.874965 0.166667 46.242";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.96625 -431.701 149.438";rotation = "-3.30618e-06 4.32516e-06 1 178.885";scale = "0.125 1.16822 18.9999";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.9321 -433.453 129.188";rotation = "-0.00688411 0.707088 0.707092 179.211";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.00595 -429.623 158.938";rotation = "0.999953 0.00973055 1.23344e-08 180";scale = "0.125 0.166666 59";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.00109 -429.873 159.188";rotation = "-0.999905 -0.00973401 -0.00972644 90.0059";scale = "0.125 0.166666 7.00536";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.9273 -433.703 149.438";rotation = "0 0 1 178.885";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.00108 -429.873 149.193";rotation = "-0.573571 -0.584841 0.573566 119.359";scale = "0.125 0.166666 7.00736";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.6845 -413.568 159.188";rotation = "-0.573569 -0.584843 0.573565 119.359";scale = "0.125 0.166666 38.9994";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "11.0641 -433.064 154.188";rotation = "0.573567 0.584843 0.573568 119.358";scale = "2.37499 0.166667 38.9994";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "11.0641 -433.064 164.188";rotation = "0.573569 0.584842 0.573566 119.358";scale = "2.37499 0.166667 38.9994";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.92775 -433.664 149.438";rotation = "-5.95765e-07 -3.35071e-06 -1 91.1152";scale = "0.125 1.16664 19.0359";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "11.064 -433.064 149.188";rotation = "0.573568 0.584844 0.573565 119.359";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "11.064 -433.064 169.188";rotation = "0.999905 0.00972966 -0.00973219 90.0059";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.92813 -433.625 158.956";rotation = "0.999953 0.0097314 1.23354e-08 180";scale = "0.125 0.166666 19.036";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.2559 -429.628 135.567";rotation = "0.707091 0.00688026 -0.707089 180.788";scale = "0.125 0.166666 6.9997";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.756 -429.618 149.194";rotation = "0.00972886 -0.999905 -0.00973129 90.0059";scale = "0.125 0.166666 30.9998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.72192 -431.369 159.188";rotation = "0.569861 0.581055 0.581062 239.354";scale = "1.00044 0.166667 30.9998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-8.76043 -429.936 129.429";rotation = "-0.000340341 4.53259e-05 -1 1.11556";scale = "3.51985 0.48 5.899";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.75598 -429.618 142.381";rotation = "0.584835 -0.573567 0.573576 119.359";scale = "0.125 4.37533 31.0016";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.9273 -433.703 129.438";rotation = "0 0 1 178.885";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.71704 -431.619 149.188";rotation = "0.584843 -0.573567 0.573568 119.358";scale = "0.87591 0.166667 30.9998";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.8749 -423.316 129.438";rotation = "-0.000231437 -0.000607675 -1 1.11556";scale = "0.125 6.4999 39";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.67735 -433.698 159.206";rotation = "0.707091 0.00688117 0.707089 179.211";scale = "0.125 0.166666 39.0002";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "8.1884 -420.447 129.838";rotation = "0.999911 0.0133641 1.69402e-08 180";scale = "1 1 1";team = "1";ownerGUID = "2485526";deployed = "1";powerFreq = "1";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "8.1884 -420.447 129.838";rotation = "-0.000189692 -6.6583e-13 -1 1.52877";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.00108 -429.873 135.567";rotation = "-0.573571 -0.584841 0.573566 119.359";scale = "0.125 0.166666 7.00536";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.8191 -433.318 164.197";rotation = "-0.707088 -0.00687944 0.707092 179.211";scale = "2.3705 0.166667 39.0002";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.819 -433.319 149.188";rotation = "-0.00973256 0.999905 -0.00973248 90.0059";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.07048 -433.47 149.438";rotation = "-9.68075e-06 2.40416e-06 1 88.8852";scale = "0.125 5.1667 19.0359";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.67735 -433.698 169.188";rotation = "0.707091 0.00688117 0.707089 179.211";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.756 -429.618 135.568";rotation = "0.00972886 -0.999905 -0.00973129 90.0059";scale = "0.125 0.166666 31.0014";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "9.33578 -431.242 159.838";rotation = "-0.379718 0.925102 1.17265e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2485526";deployed = "1";powerFreq = "1";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "9.33578 -431.242 159.838";rotation = "8.49921e-07 9.63094e-13 1 135.368";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "8.62096 -431.461 149.838";rotation = "0.682495 0.73089 9.26469e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2485526";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "8.62096 -431.461 149.838";rotation = "-2.91797e-06 -5.69769e-13 -1 93.9221";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "8.48424 -424.007 129.838";rotation = "0.635365 0.772212 9.78849e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2485526";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "8.48424 -424.007 129.838";rotation = "-2.68446e-06 2.31713e-13 -1 101.106";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "2.99291 -429.467 135.318";rotation = "0.713956 -0.700191 -5.05254e-06 180";scale = "0.125 5.16687 11.7599";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.07086 -433.508 129.438";rotation = "-5.95765e-07 -3.35071e-06 -1 91.1152";scale = "0.125 6.50003 39";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.7807 -431.317 135.567";rotation = "-0.569858 -0.581059 0.581061 239.354";scale = "0.875663 0.166667 31.0014";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.685 -413.568 129.188";rotation = "0.58106 -0.56986 0.581058 239.354";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "11.069 -433.314 149.438";rotation = "0 0 1 88.8847";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "8.40995 -427.261 129.838";rotation = "0.829634 0.558308 7.07706e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2485526";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "8.40995 -427.261 129.838";rotation = "-4.15403e-06 -1.22721e-13 -1 67.8777";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "8.69019 -431.344 136.217";rotation = "0.690859 0.72299 9.16455e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2485526";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "8.69019 -431.344 136.217";rotation = "-2.96452e-06 -6.82826e-13 -1 92.6037";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.819 -433.319 129.188";rotation = "-0.584845 0.573565 0.573567 119.359";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "AudioDep";position = "9.79585 -431.352 135.317";rotation = "0.688473 0.725262 9.19336e-07 180";scale = "0.4 0.4 0.1";team = "1";ownerGUID = "2485526";powerFreq = "1";pLogic = "0";pLogic = "0";lLogic = "1";audioBlock = "fx/bonuses/horz_straipass2_heist.wav";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "11.069 -433.314 129.438";rotation = "0 0 1 88.8847";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2485526";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "8.2212 -431.363 129.438";rotation = "0 0 1 88.0779";scale = "0.65 0.65 0.65";team = "1";ownerGUID = "2485526";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); \ No newline at end of file diff --git a/Univ/Data/2485526/Ranks/CnC4/Saved.Rank b/Univ/Data/2485526/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..de8dc63 --- /dev/null +++ b/Univ/Data/2485526/Ranks/CnC4/Saved.Rank @@ -0,0 +1,27 @@ +//Ranks File For GUID 2485526 +//Created On 2010-04-02, C&C 4 +$Rank::Name[2485526] = "Dayuppy"; +$Rank::Rank[2485526, 1] = "Corporal"; +$Rank::XP[2485526, 1] = 3953; +$Rank::Rank[2485526, 2] = "Initiate"; +$Rank::XP[2485526, 2] = 1586; +$CNC::Help[2485526, 1] = 0; +$CNC::Deaths[2485526] = 49; +$CNC::KilledByObj[2485526, CrawlerTurretBase] = 2; +$CNC::KilledByObj[2485526, FlameMortarTurretDeployedBase] = 3; +$CNC::KilledByObj[2485526, ObeliskTurretDeployedBase] = 4; +$CNC::TotalKills[2485526] = 15; +$CNC::Kills[2485526, 2627784] = 3; +$CNC::UKills[2485526] = 10; +$CNC::KilledByPl[2485526, 2627784] = 3; +$CNC::TotalCrawlerDecoms[2485526] = 4; +$CNC::TotalCrawlerKills[2485526] = 1; +$CNC::KilledByPl[2485526, 2355847] = 2; +$CNC::KilledByPl[2485526, 2860955] = 1; +$CNC::Kills[2485526, 2860955] = 1; +$CNC::Kills[2485526, 2000343] = 1; +$CNC::KilledByPl[2485526, 2000343] = 1; +$CNC::KilledByObj[2485526, FocusBeamTurretDeployedBase] = 9; +$CNC::TotalBuildingKills[2485526] = 8; +$CNC::BuildingKills[2485526, "FocusBeam"] = 1; +$CNC::KilledByPl[2485526, 2001729] = 2; \ No newline at end of file diff --git a/Univ/Data/2488783/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2488783/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..dfab7ec --- /dev/null +++ b/Univ/Data/2488783/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,141 @@ +//Ranks & Settings File For GUID 2488783 / Name: redfalco +//Created On 2011-11-20, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2488783) { + + new ScriptObject(TWM2Client_2488783) { + + rankNumber = "61"; + weaponKillspistolImage = "20"; + challengeCompleteGroupBuster = "1"; + challengeCompleteLifeGiver = "1"; + rank = "Master Commander"; + challengeCompleteModel1887Image_2 = "1"; + AirstrikeCalls = "31"; + xpGain57f5ca1160bc629f27c44ac3572f8931ef751903 = "227000"; + challengeCompleteVard1 = "1"; + hasMedalInsigniaDefeated = "1"; + hasMedalTheNewGeneral = "1"; + challengeCompleteIns1 = "1"; + bossDefeatCountTrebor = "1"; + xpGain7157524394b5b23795f12ae582a4859a543a7db9 = "1.58241e+06"; + weaponKillsJavelinImage = "1"; + hasMedalHonorsA = "1"; + challengeCompleteDownBoy = "1"; + hasMedalThundaStruk = "1"; + noMoreEXPacc6411866b5c324fa7563f06684d17dd798ec07 = "0"; + bossDefeatCountLordRog = "3"; + weaponKillsMp26CMDOImage = "26"; + bossDefeatCountGhostOfFire = "1"; + weaponKillsS3SRifleImage = "95"; + challengeCompleteFromTheTop = "1"; + challengeCompleteM1SniperRifleImage_1 = "1"; + weaponKillsflamerImage = "34"; + money = "6.96943e+06"; + challengeCompleteM1SniperRifleImage_2 = "1"; + vehicleKillsHarbingerGunship = "110"; + weaponKillsModel1887Image = "279"; + weaponKillsRPGImage = "15"; + challengeCompleteMilestone25 = "1"; + millionxp = "3"; + xpGainacc6411866b5c324fa7563f06684d17dd798ec07 = "84452"; + noMoreEXP57f5ca1160bc629f27c44ac3572f8931ef751903 = "0"; + hasMedalBurningNightmare = "1"; + challengeCompleteAngel = "1"; + UAVCalls = "1"; + weaponKillsM1700Image = "69"; + challengeCompleteLRog1 = "1"; + noMoreEXP78d85c76473a76f1cbae9cdf07bae11d6363d158 = "0"; + noMoreEXP7157524394b5b23795f12ae582a4859a543a7db9 = "0"; + xp = "724958"; + challengeCompleteGoldStar = "1"; + officer = "1"; + bossDefeatCountCnlWindshear = "2"; + hasMedalGamerExcuisite = "1"; + hasMedalAboutDamnTime = "1"; + challengeCompleteEpicFailure = "1"; + weaponKillsALSWPSniperRifleImage = "19"; + bossDefeatCountStormrider = "2"; + hasMedalSkyFront = "1"; + weaponKillsMiniChaingunImage = "15"; + challengeCompleteHelicopter1 = "1"; + weaponKillsPulsePhaserImage = "52"; + xpGaindd7dfcc969fa279e882307c86c4c61faece8aef0 = "1.28778e+06"; + GMCalls = "10"; + challengeCompleteModel1887Image_3 = "1"; + name = "redfalco"; + gameTime = "5133"; + hasMedalTheUltimateHeadshot = "1"; + weaponKillsPg700Image = "7"; + bossDefeatCountGhostOfLightning = "1"; + challengeCompletePulsePhaserImage_1 = "1"; + bossDefeatCountVardison3 = "1"; + challengeCompleteDeagleImage_2 = "1"; + bossDefeatCountInsignia = "2"; + weaponKillsS3RifleImage = "321"; + weaponKillsM1SniperRifleImage = "274"; + challengeCompleteM1700Image_1 = "1"; + challengeCompleteDEagleImage_1 = "1"; + challengeCompleteS3RifleImage_3 = "1"; + HeliCalls = "30"; + challengeCompleteS3RifleImage_1 = "1"; + challengeCompleteAirstrike1 = "1"; + xpGain78d85c76473a76f1cbae9cdf07bae11d6363d158 = "6956"; + noMoreEXPdd7dfcc969fa279e882307c86c4c61faece8aef0 = "0"; + weaponKillsRP432Image = "3"; + weaponKillsDeagleImage = "66"; + hasMedalHonorsB = "1"; + hasMedalTheSourceOfAllEvil = "1"; + hasMedalHarbiend = "1"; + weaponKillsR700SniperRifleImage = "29"; + hasMedalHonorsC = "1"; + hasMedalLordraniussFall = "1"; + hasMedalRevengeAvoidedAgain = "1"; + bossDefeatCountVengenor = "2"; + challengeCompleteS3RifleImage_2 = "1"; + challengeCompleteArmyOf50Stopped = "1"; + challengeCompleteModel1887Image_1 = "1"; + noMoreEXP69bb82aaef99626b68151a47d8b98fceee248d7d = "0"; + }; + new ScriptObject(CCD_2488783) { + + totalZombieKillCount20111204 = "282"; + ZombieKillCount20111205_S3SRifleImage_1 = "6"; + totalZombieKillCount20111205 = "78"; + ZombieKillCount20111204_M1700Image_1 = "28"; + killstreakCalls20111205_4 = "1"; + zombieHeadshots20111204 = "140"; + ZombieKillCount20111204_Model1887Image_9 = "3"; + ZombieKillCount20111204_Grenade_1 = "3"; + ZombieKillCount20111204_0_3 = "2"; + ZombieKillCount20111204_flamerImage_3 = "2"; + killstreakCalls20111204_2 = "6"; + ZombieKillCount20111204_0_1 = "278"; + ZombieKillCount20111205_0_4 = "7"; + ZombieKillCount20111204_flamerImage_1 = "4"; + expireDate = "20111231"; + ZombieKillCount20111204_PistolImage_1 = "4"; + ZombieKillCount20111205_PistolImage_1 = "1"; + ZombieKillCount20111205_S3RifleImage_4 = "7"; + ZombieKillCount20111205_M1700Image_1 = "11"; + ZombieKillCount20111205_0_1 = "71"; + killstreakCalls20111204_4 = "6"; + zombieHeadshots20111205 = "35"; + ZombieKillCount20111204__1 = "91"; + ZombieKillCount20111205_S3RifleImage_1 = "24"; + ZombieKillCount20111205__1 = "29"; + ZombieKillCount20111204_0_9 = "3"; + killstreakCalls20111205_2 = "1"; + ZombieKillCount20111204_S3RifleImage_1 = "148"; + }; + new ScriptObject(ClientStore2488783) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(CCD_2488783) { + + expireDate = "20121031"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2495338/Buildings/1.cs b/Univ/Data/2495338/Buildings/1.cs new file mode 100644 index 0000000..e7bd02b --- /dev/null +++ b/Univ/Data/2495338/Buildings/1.cs @@ -0,0 +1,14 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Kingsnake" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "177.171 183.682 113";rotation = "0 0 1 54.7002";scale = "1 5.33367 3";team = "1";ownerGUID = "2495338";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "178.837 193.44 99.5";rotation = "-0 -0 1 54.7002";scale = "2.5 3.33333 30";team = "1";ownerGUID = "2495338";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "188.597 191.773 113";rotation = "0 0 1 54.7002";scale = "4.00012 1.33333 3";team = "1";ownerGUID = "2495338";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "169.079 195.107 113";rotation = "0 0 1 54.7002";scale = "3.99997 1.33333 3";team = "1";ownerGUID = "2495338";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "171.184 169.641 99.5";rotation = "0 0 1 54.7002";scale = "5.00002 3.33333 30";team = "1";ownerGUID = "2495338";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "180.503 203.199 113";rotation = "0 0 1 54.7002";scale = "1 5.3334 3";team = "1";ownerGUID = "2495338";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "202.637 185.786 99.5";rotation = "0 0 1 54.7002";scale = "2.5 6.6667 30";team = "1";ownerGUID = "2495338";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "155.036 201.094 99.5";rotation = "-2.4441e-06 -3.25845e-07 1 54.7001";scale = "2.5 6.6667 30";team = "1";ownerGUID = "2495338";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "186.49 217.24 99.5";rotation = "0 0 1 54.7002";scale = "5.00002 3.33333 30";team = "1";ownerGUID = "2495338";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2513554/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2513554/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..b671761 --- /dev/null +++ b/Univ/Data/2513554/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,68 @@ +//Ranks & Settings File For GUID 2513554 / Name: mars +//Created On 2011-09-19, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2513554) { + + new ScriptObject(TWM2Client_2513554) { + + bossDefeatCountLordRog = "1"; + phrase = "None Set"; + millionxp = "0"; + weaponKillsMRXXImage = "15"; + noMoreEXPb1060db2b42a2ee310834657d37cdd12a3c641f4 = "0"; + rankNumber = "42"; + rank = "Colonel Grade II"; + challengeCompleteS3RifleImage_2 = "1"; + money = "148692"; + weaponKillsM1700Image = "7"; + noMoreEXP8ee84d4400fdb15487f29f332777c6fb40cbdb93 = "0"; + weaponKillsMp26Image = "7"; + challengeCompleteS3RifleImage_1 = "1"; + xp = "158592"; + xpGainb1060db2b42a2ee310834657d37cdd12a3c641f4 = "131692"; + weaponKillsRP432Image = "4"; + xpGain8ee84d4400fdb15487f29f332777c6fb40cbdb93 = "26900"; + hasMedalHonorsB = "1"; + officer = "0"; + hasMedalRevengeAvoidedAgain = "1"; + AirstrikeCalls = "2"; + weaponKillsS3RifleImage = "146"; + gameTime = "321"; + name = "mars"; + }; + new ScriptObject(CCD_2513554) { + + ZombieKillCount20110919_Model1887Image_1 = "4"; + ZombieKillCount20110919_S3RifleImage_2 = "2"; + ZombieKillCount20110919_MRXXImage_1 = "11"; + ZombieKillCount20110919_PulsePhaserImage_1 = "2"; + zombieHeadshots20110919 = "144"; + ZombieKillCount20110919_RP432Image_1 = "5"; + ZombieKillCount20110919_Mp26Image_1 = "9"; + ZombieKillCount20110919__2 = "14"; + ZombieKillCount20110919_0_2 = "28"; + ZombieKillCount20110919_M1700Image_1 = "7"; + ZombieKillCount20110919__3 = "2"; + ZombieKillCount20110919_AcidCannonImage_2 = "2"; + expireDate = "20110930"; + zombieBackstabs20110919 = "1"; + ZombieKillCount20110919_AcidCannonImage_1 = "1"; + ZombieKillCount20110919_0_1 = "220"; + killstreakCalls20110919_2 = "3"; + totalZombieKillCount20110919 = "257"; + ZombieKillCount20110919_Grenade_1 = "1"; + ZombieKillCount20110919_S3RifleImage_1 = "148"; + ZombieKillCount20110919_0_3 = "10"; + ZombieKillCount20110919_MRXXImage_2 = "9"; + ZombieKillCount20110919_AcidCannonImage_3 = "2"; + ZombieKillCount20110919__1 = "32"; + ZombieKillCount20110919_S3RifleImage_3 = "6"; + ZombieKillCount20110919_PulsePhaserImage_2 = "1"; + }; + new ScriptObject(ClientStore2513554) { + + nextLoto = "0"; + nextSlot = "0"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2567733/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2567733/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..bbd8402 --- /dev/null +++ b/Univ/Data/2567733/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,50 @@ +//Ranks & Settings File For GUID 2567733 / Name: CubsFan815 +//Created On 2010-11-24, Total Warfare Mod 2 3.5 +//--- OBJECT WRITE BEGIN --- +new ScriptObject(TWM2Client_2567733) { + + bossDefeatCountGhostOfFire = "1"; + weaponKillsMRXXImage = "5"; + ArtyCalls = "0"; + xp = "304803"; + challengeCompleteAcceptance = "1"; + bossDefeatCountVardison3 = "1"; + weaponKillsS3RifleImage = "17"; + HeliCalls = "3"; + hasMedalBurningNightmare = "1"; + hasMedalTheSourceOfAllEvil = "1"; + SlthAirstrikeCalls = "0"; + phrase = "put your money when your mouth is"; + hasMedalInsigniaDefeated = "1"; + NukeCalls = "0"; + EMPCalls = "1"; + hasMedalSerialKiller = "1"; + noMoreEXP4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "0"; + GMCalls = "0"; + gameTime = "569"; + hasMedalRevengeAvoidedAgain = "1"; + challengeCompleteVard1 = "1"; + UAVCalls = "3"; + ZBCalls = "0"; + challengeCompletePulsePhaserImage_1 = "1"; + weaponKillsG17SniperRifleImage = "9"; + officer = "0"; + xpGain4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "304803"; + HarrierCalls = "0"; + HWCalls = "0"; + SatNukeCalls = "3"; + bossDefeatCountLordRog = "1"; + millionxp = "0"; + rankNumber = "46"; + hasMedalHonorsB = "1"; + bossDefeatCountInsignia = "1"; + rank = "Brigadier General"; + hasMedalHonorsC = "1"; + weaponKillsMiniChaingunImage = "2"; + AirstrikeCalls = "5"; + CGCalls = "0"; + name = "CubsFan815"; + weaponKillsPulsePhaserImage = "83"; + GunHeliCalls = "0"; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2590996/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2590996/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..6c00e9a --- /dev/null +++ b/Univ/Data/2590996/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,170 @@ +//Ranks & Settings File For GUID 2590996 / Name: DoofusWoofus +//Created On 2011-11-25, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2590996) { + + new ScriptObject(TWM2Client_2590996) { + + phrase = "None Set"; + weaponKillsRP432Image = "1"; + hasMedalHonorsA = "1"; + hasMedalRevengeAvoidedAgain = "1"; + HeliCalls = "1"; + weaponKillsMissileLauncherImage = "1"; + vehicleKillsScoutFlyer = "4"; + xpGainae27473a04462f40846555ef3c15130473191fd1 = "396292"; + weaponKillsG17SniperRifleImage = "1"; + ArtyCalls = "0"; + name = "DoofusWoofus"; + noMoreEXP7157524394b5b23795f12ae582a4859a543a7db9 = "0"; + money = "350931"; + GunHeliCalls = "0"; + xpGain2133a288a74c089b4f8ec5d7a85eae04149afeaf = "704572"; + bossDefeatCountVardison3 = "1"; + weaponKillsALSWPSniperRifleImage = "14"; + noMoreEXPae27473a04462f40846555ef3c15130473191fd1 = "0"; + officer = "0"; + AirstrikeCalls = "5"; + weaponKillsNapalmImage = "5"; + weaponKillsR700SniperRifleImage = "16"; + hasMedalTheLight = "1"; + noMoreEXP2133a288a74c089b4f8ec5d7a85eae04149afeaf = "0"; + xp = "354311"; + challengeCompleteVard1 = "1"; + CGCalls = "0"; + millionxp = "1"; + weaponKillsSA2400Image = "10"; + weaponKillsStingerImage = "3"; + weaponKillsS3RifleImage = "74"; + HarrierCalls = "0"; + rank = "Master General"; + challengeCompleteS3RifleImage_1 = "1"; + UAVCalls = "1"; + HWCalls = "0"; + weaponKillslasergunImage = "1"; + ZBCalls = "0"; + weaponKillsJavelinImage = "2"; + weaponKillsM1700Image = "78"; + bossDefeatCountLordRog = "1"; + gameTime = "1016"; + weaponKillsM1SniperRifleImage = "4"; + bossDefeatCountGhostOfFire = "1"; + noMoreEXPb83507ec9eb66c5c2ad20c7a9d913e577e3ce341 = "0"; + hasMedalHonorsC = "1"; + rankNumber = "54"; + GMCalls = "0"; + SlthAirstrikeCalls = "0"; + hasMedalBurningNightmare = "1"; + weaponKillspistolImage = "8"; + NukeCalls = "0"; + bossDefeatCountShadeLord = "1"; + xpGainb83507ec9eb66c5c2ad20c7a9d913e577e3ce341 = "163"; + hasMedalTheSourceOfAllEvil = "1"; + challengeCompleteM1700Image_1 = "1"; + }; + new ScriptObject(CCD_2590996) { + + zombieHeadshots20111125 = "2"; + ZombieKillCount20111125_S3RifleImage_1 = "1"; + ZombieKillCount20111125_0_1 = "12"; + PlayerKillCount20111125_MeleeImage = "1"; + ZombieKillCount20111127_0_4 = "8"; + ZombieKillCount20111127_0_1 = "3"; + ZombieKillCount20111125_RP432Image_1 = "1"; + ZombieKillCount20111127_R700SniperRifleImage_2 = "1"; + PlayerKillCount20111125_S3RifleImage = "2"; + zombieHeadshots20111127 = "15"; + ZombieKillCount20111127_R700SniperRifleImage_3 = "1"; + totalZombieKillCount20111125 = "19"; + ZombieKillCount20111127_R700SniperRifleImage_11 = "3"; + totalPlayerKillCount20111125 = "3"; + ZombieKillCount20111125__12 = "1"; + ZombieKillCount20111125_G17SniperRifleImage_1 = "1"; + ZombieKillCount20111127_R700SniperRifleImage_4 = "8"; + successiveStreak20111125_2 = "1"; + ZombieKillCount20111125_0_11 = "6"; + totalZombieKillCount20111127 = "16"; + expireDate = "20111130"; + ZombieKillCount20111125_ALSWPSniperRifleImage_1 = "8"; + ZombieKillCount20111125_M1700Image_1 = "1"; + successiveStreak20111125_1 = "2"; + ZombieKillCount20111127_0_3 = "1"; + ZombieKillCount20111125_ALSWPSniperRifleImage_11 = "6"; + ZombieKillCount20111125_0_12 = "1"; + playerHeadshots20111125 = "1"; + ZombieKillCount20111127_R700SniperRifleImage_1 = "3"; + ZombieKillCount20111127_0_2 = "1"; + ZombieKillCount20111127_0_11 = "3"; + }; + new ScriptObject(ClientStore2590996) { + + purchasedSpontaneousCombustion = "0"; + nextSlot = "0"; + purchasedThunderstorm = "0"; + purchasedHologram = "0"; + purchasedGuardianFlare = "0"; + purchasedFireworks = "1"; + nextLoto = "0"; + purchasedFalseExplosion = "0"; + }; + new ScriptObject(CCD_2590996) { + + expireDate = "20111130"; + }; + new ScriptObject(CCD_2590996) { + + expireDate = "20111130"; + }; + new ScriptObject(CCD_2590996) { + + ZombieKillCount20111127_0_1 = "194"; + ZombieKillCount20111127_M1700Image_1 = "75"; + ZombieKillCount20111127_0_4 = "2"; + zombieHeadshots20111127 = "64"; + ZombieKillCount20111127__1 = "31"; + ZombieKillCount20111127_M1700Image_4 = "2"; + totalZombieKillCount20111127 = "196"; + ZombieKillCount20111127_S3RifleImage_1 = "71"; + ZombieKillCount20111127_flamerImage_1 = "1"; + expireDate = "20111130"; + ZombieKillCount20111127_PistolImage_1 = "6"; + killstreakCalls20111127_4 = "1"; + ZombieKillCount20111127_Grenade_1 = "10"; + killstreakCalls20111127_2 = "3"; + }; + new ScriptObject(ClientSettings2590996) { + + savedstreak2 = "2"; + savedperk2 = "Kevlar Armor"; + savedstreak1 = "1"; + savedperk1 = "AP Bullets"; + savedperk3 = "Clip Boxes"; + savedstreak3 = "4"; + }; + new ScriptObject(CCD_2590996) { + + successiveStreak20111127_3 = "1"; + PlayerKillCount20111127_lasergunImage = "1"; + totalPlayerKillCount20111128 = "14"; + successiveStreak20111127_1 = "6"; + totalPlayerKillCount20111127 = "13"; + successiveStreak20111127_4 = "1"; + PlayerKillCount20111127_SA2400Image = "3"; + playerHeadshots20111128 = "3"; + successiveStreak20111128_2 = "1"; + expireDate = "20111130"; + killstreakCalls20111127_2 = "1"; + PlayerKillCount20111127_ = "7"; + killstreakCalls20111127_1 = "1"; + successiveStreak20111127_2 = "3"; + PlayerKillCount20111128_M1SniperRifleImage = "4"; + PlayerKillCount20111128_ = "2"; + successiveStreak20111127_5 = "1"; + PlayerKillCount20111127_ConcussionGunImage = "1"; + PlayerKillCount20111128_flamerImage = "2"; + PlayerKillCount20111127_MissileLauncherImage = "1"; + successiveStreak20111128_1 = "13"; + PlayerKillCount20111128_SA2400Image = "6"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2604147/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2604147/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..4efad77 --- /dev/null +++ b/Univ/Data/2604147/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,58 @@ +//Ranks & Settings File For GUID 2604147 / Name: Rayzor +//Created On 2010-11-08, Total Warfare Mod 2 3.4 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2604147) { + + new ScriptObject(TWM2Client_2604147) { + + xp = "12624"; + officer = "0"; + weaponKillsMp26Image = "13"; + weaponKillsSuperChaingunImage = "464"; + UAVCalls = "2"; + rankNumber = "28"; + money = "430"; + hasMedalHonorsA = "1"; + weaponKillsRP432Image = "4"; + AirstrikeCalls = "3"; + rank = "Captain"; + phrase = "None Set"; + xpGaind4bc189d30ad198f82d2188bb8e082ed0532d917 = "430"; + name = "Rayzor"; + xpGain20101108 = "6097"; + noMoreEXPd4bc189d30ad198f82d2188bb8e082ed0532d917 = "0"; + gameTime = "251"; + vehicleKillsScoutFlyer = "1"; + noMoreEXPa6bd8a66cf955370504fd6d34cb929aa870accad = "0"; + weaponKillsS3RifleImage = "7"; + millionxp = "0"; + weaponKillsPg700Image = "21"; + }; + new ScriptObject(CCD_2604147) { + + sabotageRoundWins20110220_Oasis2 = "2"; + sabotageRoundWinTotal20110220 = "7"; + PlayerKillCount20110220_Grenade = "6"; + bombDisarm20110220_Oasis2 = "1"; + successiveStreak20110220_2 = "8"; + killstreakCalls20110220_2 = "1"; + successiveStreak20110220_3 = "2"; + bombDisarmTotal20110220 = "1"; + killstreakCalls20110220_1 = "2"; + successiveStreak20110220_4 = "1"; + PlayerKillCount20110220_ = "1"; + sabotageRoundWins20110220_MyrkWood2 = "5"; + successiveStreak20110220_1 = "33"; + expireDate = "20110228"; + totalPlayerKillCount20110220 = "44"; + PlayerKillCount20110220_Pg700Image = "36"; + successiveSolo20110220_2 = "2"; + PlayerKillCount20110220_Mp26Image = "1"; + }; + new ScriptObject(ClientStore2604147) { + + nextLoto = "0"; + nextSlot = "0"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2606235/Buildings/1.cs b/Univ/Data/2606235/Buildings/1.cs new file mode 100644 index 0000000..0d87498 --- /dev/null +++ b/Univ/Data/2606235/Buildings/1.cs @@ -0,0 +1,64 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Bigbaddragonguy" +// Created in mission "Pretty" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.011 -748.308 129.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.011 -748.308 132.438";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.011 -748.308 134.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.011 -748.308 137.438";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.761 -748.308 139.688";rotation = "0.707108 0.000541898 0.707105 179.938";scale = "0.125 0.166666 57.9994";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.4887 -748.262 129.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.4887 -748.262 132.438";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.4887 -748.262 134.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.4887 -748.262 137.438";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "10.7613 -763.035 128.438";rotation = "0 0 1 179.912";scale = "7.5 9.99999 3";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.011 -748.558 139.688";rotation = "0.577645 -0.576761 0.577644 239.949";scale = "0.125 0.166666 58";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.4891 -748.512 139.688";rotation = "0.577645 -0.576761 0.577644 239.949";scale = "0.125 0.166666 58";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.966 -777.808 129.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "40.7613 -762.989 128.438";rotation = "0 0 1 179.912";scale = "7.5 9.99999 3";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.7844 -778.036 139.438";rotation = "-8.37576e-07 -7.36597e-06 1 179.912";scale = "7.24995 19.6667 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.5339 -777.762 129.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.5339 -777.762 132.438";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.5339 -777.762 134.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "26.0347 -778.262 129.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.5339 -777.762 137.438";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "26.0347 -778.262 132.438";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.9887 -748.216 129.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "26.0347 -778.262 134.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "26.0347 -778.262 137.438";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.2847 -778.216 139.688";rotation = "-0.000766355 0.999999 -0.000766352 90.0002";scale = "0.125 0.166666 58";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.9891 -748.466 139.688";rotation = "0.577645 -0.576761 0.577644 239.949";scale = "0.125 0.166666 58";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "29.5462 -785.756 139.938";rotation = "0.706565 0.707649 -2.17364e-06 180";scale = "3.62525 2.5 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.0407 -782.101 139.938";rotation = "-0.000765575 1 2.40185e-06 180";scale = "1.87503 2.40466 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "10.8073 -793.035 128.438";rotation = "0 0 1 179.912";scale = "7.5 9.99999 3";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.92 -807.558 139.688";rotation = "0.577057 0.57794 0.577053 119.949";scale = "0.125 0.166666 59";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.0471 -786.278 139.938";rotation = "-0.000765575 1 2.40185e-06 180";scale = "1.87505 0.380006 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.5343 -778.012 139.688";rotation = "0.577645 -0.576761 0.577644 239.949";scale = "0.125 0.166666 59.002";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.2387 -748.17 139.688";rotation = "-0.000766355 0.999999 -0.000766352 90.0002";scale = "0.125 0.166666 58";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.0545 -789.35 136.838";rotation = "-1 0 0 45.0002";scale = "1.87505 2.429 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.5574 -793 134.388";rotation = "0.999999 0.00076461 -0.000772446 90.0002";scale = "0.125 0.166666 1.89405";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.3078 -793.251 134.188";rotation = "-0.576759 -0.577642 0.577649 239.949";scale = "0.125 0.166666 2.1934";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.5347 -778.216 129.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.5347 -778.216 132.438";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.0339 -777.716 129.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.5347 -778.216 134.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.5347 -778.216 137.438";rotation = "0 0 1 179.912";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.0567 -792.525 134.438";rotation = "0.706563 0.70765 -3.56098e-06 180";scale = "0.235001 2.16666 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "29.563 -796.63 131.538";rotation = "0.678036 0.67908 0.281279 211.375";scale = "1.81275 2.5 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "40.5574 -792.99 134.388";rotation = "0.999999 0.00076461 -0.000772446 90.0002";scale = "0.125 0.166666 1.87403";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "32.7646 -796.627 134.438";rotation = "-0.000769428 1 -1.3612e-06 180";scale = "0.2742 2.08333 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "40.8073 -792.989 128.438";rotation = "0 0 1 179.912";scale = "7.5 9.99999 3";team = "1";ownerGUID = "2606235";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "70.7613 -762.943 128.438";rotation = "0 0 1 179.912";scale = "7.5 9.99999 3";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.063 -796.62 134.438";rotation = "0.706563 0.70765 -4.2764e-06 180";scale = "1.8125 2.5 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.3182 -800.001 134.188";rotation = "-0.576759 -0.577642 0.577649 239.949";scale = "0.125 0.166666 2.1934";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.3075 -792.98 139.938";rotation = "0.706565 0.707649 -2.17364e-06 180";scale = "7.25025 5 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.92 -807.808 129.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.324 -803.876 139.938";rotation = "0.706565 0.707649 -2.17364e-06 180";scale = "1.81263 5 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.4887 -748.17 129.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.0343 -777.966 139.688";rotation = "0.577645 -0.576761 0.577644 239.949";scale = "0.125 0.166666 59";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "70.7843 -777.943 139.438";rotation = "-8.37576e-07 -7.36597e-06 1 179.912";scale = "7.25 19.6673 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.67 -807.808 139.688";rotation = "0.707108 0.000541898 0.707105 179.938";scale = "0.125 0.166666 178";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "70.8073 -792.943 128.438";rotation = "0 0 1 179.912";scale = "7.5 9.99999 3";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.4891 -748.42 139.688";rotation = "0.577645 -0.576761 0.577644 239.949";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.5799 -807.67 129.938";rotation = "0 0 1 179.912";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2606235/Buildings/4.cs b/Univ/Data/2606235/Buildings/4.cs new file mode 100644 index 0000000..e1e9a95 --- /dev/null +++ b/Univ/Data/2606235/Buildings/4.cs @@ -0,0 +1,131 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Bigbaddragonguy" +// Created in mission "Pretty" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.2853 -299.471 129.672";rotation = "0.582017 0.567904 0.582015 120.815";scale = "0.125 0.166666 198";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.8553 -200.501 132.172";rotation = "-0.57257 0.586797 -0.572567 119.189";scale = "0.125 0.166666 198";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.2853 -299.471 134.672";rotation = "0.582017 0.567904 0.582015 120.815";scale = "0.125 0.166666 198";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.8207 -249.992 136.672";rotation = "0.0122737 0.999849 0.0122755 90.0088";scale = "0.875 32.9999 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.2853 -299.471 138.672";rotation = "0.582017 0.567904 0.582015 120.815";scale = "0.125 0.166666 198";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.08 -250.379 141.422";rotation = "-0.698375 0.715732 -2.54355e-06 180";scale = "0.125 0.166667 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.0802 -250.379 141.422";rotation = "0 0 1 181.406";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-87.6971 -245.518 138.922";rotation = "0 0 1 219.161";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.2914 -299.721 129.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.2914 -299.721 132.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.2914 -299.721 134.922";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-32.8438 -252.073 138.412";rotation = "5.45203e-06 1.45362e-06 1 181.406";scale = "59.0204 48.8768 0.52";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "2";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-35.347 -251.772 129.672";rotation = "-0.707078 0.00867734 0.707082 180.995";scale = "0.125 0.166666 113.001";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-35.347 -251.772 132.162";rotation = "-0.707078 0.00867734 0.707082 180.995";scale = "0.125 0.166666 113";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-62.3293 -250.716 128.922";rotation = "0 0 1 181.406";scale = "15 33.3333 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.8477 -251.833 134.672";rotation = "0.0122725 0.999849 0.0122725 90.0088";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.3331 -250.859 136.672";rotation = "-0.572568 0.586801 -0.572565 119.191";scale = "0.875 19.6666 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.8477 -251.833 138.672";rotation = "0.0122725 0.999849 0.0122725 90.0088";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.8303 -250.385 141.172";rotation = "0.707081 -0.00868064 0.707079 180.995";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.0741 -250.129 141.172";rotation = "0.582019 0.567902 0.582015 120.816";scale = "0.125 0.166666 99.2858";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.3329 -250.859 144.172";rotation = "-0.999849 0.0122742 0.0122779 90.0082";scale = "14.7501 1.83333 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-62.5539 -246.427 138.922";rotation = "0 0 1 181.149";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "2";switchRadius = "150";timed = "1";SwitchTimer = "15000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.7148 -225.309 144.172";rotation = "-0.5868 -0.572569 -0.572566 119.19";scale = "12.4107 1.83333 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.8303 -250.385 147.172";rotation = "0.707081 -0.00868064 0.707079 180.995";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.0741 -250.129 147.172";rotation = "0.582019 0.567902 0.582015 120.816";scale = "0.125 0.166666 99.2858";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-62.3341 -240.032 124.422";rotation = "0 0 1 1.6047";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-62.5434 -240.973 129.422";rotation = "0 0 1 106.09";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "2";switchRadius = "150";timed = "1";SwitchTimer = "15000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-93.0456 -299.487 129.412";rotation = "-0.999849 0.012271 0.0122761 90.0082";scale = "59.02 9.02 0.48";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "2";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-34.0593 -301.175 138.672";rotation = "0.0122706 0.999849 0.0122706 90.0088";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-62.034 -231.709 129.422";rotation = "0 0 1 0.468136";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-62.9677 -231.311 138.422";rotation = "2.04474e-12 1 5.5603e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2606235";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-62.4461 -228.898 129.822";rotation = "0.547092 0.837072 1.06107e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";frequency = "8";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-62.4461 -228.898 129.822";rotation = "-2.34278e-06 6.20621e-12 -1 113.665";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-64.6196 -227.172 138.422";rotation = "2.04474e-12 1 5.5603e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2606235";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-63.4095 -227.598 146.922";rotation = "-7.58278e-12 1 -1.38649e-06 179.999";scale = "1 1 1";team = "1";ownerGUID = "2606235";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-59.3706 -228.916 138.422";rotation = "2.04474e-12 1 5.5603e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2606235";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.7238 -226.045 138.922";rotation = "-0.698378 0.715729 4.23649e-06 180";scale = "12.4107 19.6668 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-61.5009 -226.197 139.322";rotation = "0.0463897 0.998923 1.26623e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";frequency = "8";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-61.5009 -226.197 139.322";rotation = "1.32782e-06 -4.41487e-12 1 185.318";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-63.629 -225.4 146.922";rotation = "-7.58278e-12 1 -1.38649e-06 179.999";scale = "1 1 1";team = "1";ownerGUID = "2606235";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-61.3283 -226.299 146.922";rotation = "-7.58278e-12 1 -1.38649e-06 179.999";scale = "1 1 1";team = "1";ownerGUID = "2606235";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.7236 -226.045 146.922";rotation = "5.45203e-06 1.45362e-06 1 181.406";scale = "14.75 16.5476 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-85.6725 -205.569 129.422";rotation = "0 0 -1 43.9672";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-85.7922 -204.829 138.922";rotation = "0 0 -1 51.1194";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-38.2575 -246.849 138.922";rotation = "0 0 1 128.018";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.8492 -200.251 129.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.8492 -200.251 132.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCardPack";position = "-35.1032 -252.028 130.833";rotation = "0.00867739 0.707082 -0.707079 179.006";scale = "1 1 1";team = "1";ownerGUID = "2606235";NameHolder = "Bigbaddragonguy";GUIDHolder = "2606235";cardColor = "3";CardSetting = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-35.0971 -251.778 132.912";rotation = "0.0122711 0.999925 1.2675e-06 180";scale = "0.125 0.166666 6.98002";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCardPack";position = "-35.091 -251.528 130.868";rotation = "0.999849 -0.0122698 0.0122706 90.0082";scale = "1 1 1";team = "1";ownerGUID = "2606235";NameHolder = "Bigbaddragonguy";GUIDHolder = "2606235";cardColor = "3";CardSetting = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.8492 -200.251 134.922";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.604 -252.089 129.672";rotation = "-0.57257 0.586797 -0.572567 119.189";scale = "0.125 0.166666 87.6004";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.604 -252.089 132.172";rotation = "-0.57257 0.586797 -0.572567 119.189";scale = "0.125 0.166666 87.6004";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.8492 -200.251 138.922";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.8478 -251.833 133.162";rotation = "0.0122706 0.999849 0.0122706 90.0088";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-33.8475 -251.808 132.912";rotation = "0.0122711 0.999925 1.2675e-06 180";scale = "0.500001 0.166666 6.98002";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "2";cankill = "0";canmove = 1;closedscale = "0.500001 0.166666 6.98002";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "3";moving = "open";openedscale = "0.500001 0.166666 0.1";prevscale = "0.500001 0.166666 6.98002";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.8492 -200.251 141.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.5979 -251.839 129.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.5979 -251.839 132.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.5979 -251.839 133.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.3386 -251.452 136.672";rotation = "0.0122737 0.999849 0.0122755 90.0088";scale = "0.875 32.9999 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.3733 -201.961 138.672";rotation = "-0.57257 0.586797 -0.572567 119.189";scale = "0.125 0.166666 198";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.5978 -251.839 138.922";rotation = "0 0 1 1.40664";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.6792 -295.876 134.672";rotation = "0.582017 0.567904 0.582015 120.815";scale = "0.125 0.166666 187.887";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.5978 -251.839 141.422";rotation = "0 0 1 1.40664";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCardPack";position = "-33.9352 -296.12 131.106";rotation = "0.586797 0.57257 -0.572566 119.191";scale = "1 1 1";team = "1";ownerGUID = "2606235";NameHolder = "Bigbaddragonguy";GUIDHolder = "2606235";cardColor = "3";CardSetting = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.6853 -296.126 129.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.6853 -296.126 132.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.4356 -296.144 129.172";rotation = "-0.567902 0.582019 -0.582015 239.185";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCardPack";position = "-33.4354 -296.132 130.381";rotation = "-0.567904 0.582017 -0.582015 239.185";scale = "1 1 1";team = "1";ownerGUID = "2606235";NameHolder = "Bigbaddragonguy";GUIDHolder = "2606235";cardColor = "3";CardSetting = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-33.8033 -300.93 131.922";rotation = "0.582017 0.567904 0.582015 120.815";scale = "1.25 0.166666 9.11272";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "2";cankill = "0";canmove = 1;closedscale = "1.25 0.166666 9.11272";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "3";moving = "open";openedscale = "1.25 0.166666 0.1";prevscale = "1.25 0.166666 9.11272";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.8033 -300.931 134.672";rotation = "0.582017 0.567904 0.582015 120.815";scale = "0.125 0.166666 9.11272";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.1918 -296.4 129.172";rotation = "-0.999849 0.0122711 0.0122746 90.0088";scale = "0.125 0.166666 9.08874";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.8094 -301.181 129.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.8094 -301.181 132.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.8094 -301.181 134.922";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-33.5595 -301.187 129.172";rotation = "-0.567902 0.582019 -0.582015 239.185";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.5993 -200.257 129.672";rotation = "0.707082 -0.00867802 0.707079 180.995";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.5993 -200.257 132.172";rotation = "0.707082 -0.00867802 0.707079 180.995";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.5993 -200.257 134.672";rotation = "0.707082 -0.00867802 0.707079 180.995";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.1142 -201.231 136.672";rotation = "0.582019 0.5679 0.582017 120.816";scale = "0.875 19.6666 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.6171 -201.705 138.672";rotation = "0.0122706 0.999849 0.0122706 90.0088";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.6171 -201.705 141.172";rotation = "0.0122706 0.999849 0.0122706 90.0088";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.1143 -201.231 144.087";rotation = "0.00867798 0.707079 0.707082 180.995";scale = "14.75 1.89 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.6171 -201.705 147.172";rotation = "0.0122706 0.999849 0.0122706 90.0088";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.5918 -251.589 129.672";rotation = "0.582017 0.567904 0.582015 120.815";scale = "0.125 0.166666 99.286";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.5918 -251.589 132.172";rotation = "0.582017 0.567904 0.582015 120.815";scale = "0.125 0.166666 99.286";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.3733 -201.961 141.172";rotation = "-0.57257 0.586797 -0.572567 119.189";scale = "0.125 0.166666 99.286";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.2323 -226.769 144.172";rotation = "-0.586799 -0.572567 -0.572568 119.191";scale = "12.4108 1.83333 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.3733 -201.961 147.172";rotation = "-0.57257 0.586797 -0.572567 119.189";scale = "0.125 0.166666 99.286";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-36.6979 -206.695 138.922";rotation = "0 0 1 41.1";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-35.1678 -205.638 129.422";rotation = "0 0 1 41.4516";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.3672 -201.711 129.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.3672 -201.711 132.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.3672 -201.711 134.922";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.3672 -201.711 138.922";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.3672 -201.711 141.422";rotation = "0 0 1 91.4062";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.5811 -240.435 247.272";rotation = "0.0122654 0.999849 0.0122699 90.0082";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.831 -240.429 247.522";rotation = "0 0 1 181.406";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.831 -240.429 250.022";rotation = "0 0 1 181.406";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-71.8823 -235.162 247.522";rotation = "0 0 1 217.079";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.5811 -240.435 249.765";rotation = "0.707081 -0.00868064 0.707079 180.995";scale = "0.125 0.166666 58";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.8249 -240.179 249.772";rotation = "0.582019 0.567902 0.582015 120.816";scale = "0.125 0.166666 57.9994";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.7236 -226.046 247.522";rotation = "0.0122693 0.999925 2.79399e-06 180";scale = "6.65 8.86666 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-61.8433 -225.917 247.922";rotation = "0.974993 -0.222236 -2.81705e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";frequency = "8";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-61.8433 -225.917 247.922";rotation = "-1.1265e-05 -3.27925e-12 1 25.6808";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.5811 -240.435 252.272";rotation = "0.707081 -0.00868064 0.707079 180.995";scale = "0.125 0.166666 58";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.8249 -240.179 252.272";rotation = "0.582019 0.567902 0.582015 120.816";scale = "0.125 0.166666 57.9994";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.5898 -241.147 247.272";rotation = "0.707081 -0.00867725 0.707079 180.994";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-52.3342 -236.069 247.522";rotation = "0 0 1 136.236";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.8574 -210.944 247.272";rotation = "0.0122654 0.999849 0.0122699 90.0082";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.3399 -241.153 247.522";rotation = "0 0 1 1.40609";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-71.5316 -215.603 247.522";rotation = "0 0 -1 44.4011";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-61.2601 -228.721 252.022";rotation = "-3.39403e-12 1 -4.55956e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2606235";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-63.6664 -225.768 252.022";rotation = "-3.39403e-12 1 -4.55956e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2606235";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.1073 -210.938 247.522";rotation = "0 0 1 181.406";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.7234 -226.045 252.022";rotation = "0.000373201 -5.62463e-05 1 1.40274";scale = "6.65 8.86666 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "-61.3492 -223.911 252.022";rotation = "-3.39403e-12 1 -4.55956e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2606235";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.3399 -241.153 250.022";rotation = "0 0 1 1.40609";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.1073 -210.938 250.022";rotation = "0 0 1 181.406";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.6223 -211.911 249.772";rotation = "-0.572571 0.586795 -0.572569 119.194";scale = "0.125 0.166666 58.0014";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.8661 -211.655 249.772";rotation = "0.0122669 0.999849 0.0122669 90.0088";scale = "0.125 0.166666 58";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-51.047 -215.883 247.522";rotation = "0 0 1 43.8136";scale = "1 1 1";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.6223 -211.911 252.272";rotation = "-0.572571 0.586795 -0.572569 119.194";scale = "0.125 0.166666 58.0014";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.8661 -211.655 252.272";rotation = "0.0122669 0.999849 0.0122669 90.0088";scale = "0.125 0.166666 58";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.6223 -211.911 247.272";rotation = "0.582017 0.567906 0.582013 120.815";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.6162 -211.661 247.522";rotation = "0 0 -1 88.5942";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.6162 -211.661 250.022";rotation = "0 0 -1 88.5942";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2606235";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-63.6825 -228.456 287.522";rotation = "0 0 -1 91.7741";scale = "0.001 0.001 0.001";team = "1";ownerGUID = "2606235";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); \ No newline at end of file diff --git a/Univ/Data/2610528/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2610528/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..ee8b701 --- /dev/null +++ b/Univ/Data/2610528/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,70 @@ +//Ranks & Settings File For GUID 2610528 / Name: Netmanx +//Created On 2011-12-24, Total Warfare Mod 2 3.8 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2610528) { + + new ScriptObject(TWM2Client_2610528) { + + weaponKillsMp26Image = "28"; + xp = "5478"; + gameTime = "47"; + name = "Netmanx"; + officer = "0"; + xpGainb47efe2379f1336e87dd71f87643bb12f14c6659 = "5478"; + weaponKillsM1700Image = "7"; + phrase = "None Set"; + noMoreEXPbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "0"; + noMoreEXP05fd5809259065bb6c5118b76aad3b24949c6dd3 = "0"; + rank = "Gunnary Sergeant Grade IV"; + weaponKillsHarbingerGunshipCGImage = "3"; + rankNumber = "22"; + weaponKillsS3RifleImage = "2"; + money = "5428"; + hasMedalHonorsA = "1"; + millionxp = "0"; + noMoreEXPb47efe2379f1336e87dd71f87643bb12f14c6659 = "0"; + }; + new ScriptObject(CCD_2610528) { + + ZombieKillCount20111227_0_5 = "123"; + ZombieKillCount20111227_Mp26Image_5 = "15"; + PlayerKillCount20111227_Grenade = "1"; + ZombieKillCount20111227_Mp26Image_1 = "13"; + PlayerKillCount20111227_ = "1"; + ZombieKillCount20111227_MiniChaingunImage_5 = "1"; + ZombieKillCount20111227_flamerImage_5 = "15"; + ZombieKillCount20111227_M1700Image_5 = "3"; + playerHeadshots20111227 = "1"; + ZombieKillCount20111227_MRXXImage_5 = "1"; + ZombieKillCount20111227_MG42Image_5 = "6"; + totalPlayerKillCount20111227 = "5"; + PlayerKillCount20111227_Mp26Image = "1"; + totalZombieKillCount20111227 = "137"; + successiveStreak20111227_1 = "4"; + ZombieKillCount20111227_flamerImage_1 = "1"; + expireDate = "20111231"; + ZombieKillCount20111227_0_1 = "14"; + ZombieKillCount20111227__5 = "64"; + ZombieKillCount20111227_Grenade_5 = "17"; + ZombieKillCount20111227_M4A1Image_5 = "1"; + PlayerKillCount20111227_S3RifleImage = "2"; + }; + new ScriptObject(ClientStore2610528) { + + nextLoto = "0"; + purchasedHologram = "0"; + nextSlot = "1.14104e+07"; + purchasedSpontaneousCombustion = "0"; + purchasedFireworks = "0"; + purchasedGuardianFlare = "0"; + purchasedFalseExplosion = "0"; + purchasedThunderstorm = "0"; + }; + new ScriptObject(ClientSettings2610528) { + + savedstreak1 = "1"; + savedstreak2 = "2"; + savedstreak3 = "4"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2627784/Ranks/CnC4/Saved.Rank b/Univ/Data/2627784/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..47cf8a9 --- /dev/null +++ b/Univ/Data/2627784/Ranks/CnC4/Saved.Rank @@ -0,0 +1,15 @@ +//Ranks File For GUID 2627784 +//Created On 2010-04-02, C&C 4 +$Rank::Name[2627784] = "MightyZuex"; +$Rank::Rank[2627784, 1] = "Gunnary Private"; +$Rank::XP[2627784, 1] = 2060; +$Rank::Rank[2627784, 2] = "Initiate"; +$Rank::XP[2627784, 2] = 1726; +$CNC::Help[2627784, 1] = 0; +$CNC::Deaths[2627784] = 13; +$CNC::TotalKills[2627784] = 6; +$CNC::UKills[2627784] = 3; +$CNC::KilledByPl[2627784, 2485526] = 3; +$CNC::Kills[2627784, 2485526] = 3; +$CNC::TotalCrawlerKills[2627784] = 1; +$CNC::TotalCrawlerDecoms[2627784] = 1; \ No newline at end of file diff --git a/Univ/Data/2627784/Ranks/Powers/Saved.Dat b/Univ/Data/2627784/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..d1b5e50 --- /dev/null +++ b/Univ/Data/2627784/Ranks/Powers/Saved.Dat @@ -0,0 +1,29 @@ +$PowerSave::Level[2627784, 1] = 8; +$PowerSave::SpendPoints[2627784, 1] = 14; +$PowerSave::EXP[2627784, 1] = 258; +$PowerSave::TopPlPosition[2627784, 1] = 1; +$PowerSave::Class[2627784, 1] = "Phantom"; +$PowerSave::HasPower[2627784, 1, "ShadowStrike"] = 1; +$PowerSave::Level[2627784, 2] = 9; +$PowerSave::SpendPoints[2627784, 2] = 4; +$PowerSave::EXP[2627784, 2] = 301; +$PowerSave::TopPlPosition[2627784, 2] = 1; +$PowerSave::Class[2627784, 2] = "Demon"; +$PowerSave::HasPower[2627784, 2, "FireBolt"] = 1; +$PowerSave::Level[2627784, 3] = 2; +$PowerSave::SpendPoints[2627784, 3] = 2; +$PowerSave::EXP[2627784, 3] = 27; +$PowerSave::TopPlPosition[2627784, 3] = 1; +$PowerSave::Class[2627784, 3] = "Witch"; +$PowerSave::HasPower[2627784, 3, "LightStrike"] = 1; +$PowerSave::HasPower[2627784, 2, "EnergyDrainer"] = 1; +$PowerSave::HasPower[2627784, 2, "EnergyBall1"] = 1; +$PowerSave::HasPower[2627784, 1, "FrostBite"] = 1; +$PowerSave::Level[2627784, 4] = 12; +$PowerSave::SpendPoints[2627784, 4] = 22; +$PowerSave::EXP[2627784, 4] = 987; +$PowerSave::TopPlPosition[2627784, 4] = 1; +$PowerSave::Class[2627784, 4] = "Demon"; +$PowerSave::HasPower[2627784, 4, "FireBolt"] = 1; +$PowerSave::HasPower[2627784, 4, "FireBall1"] = 1; +$PowerSave::HasPower[2627784, 4, "FireBall2"] = 1; \ No newline at end of file diff --git a/Univ/Data/2687806/Buildings/1.cs b/Univ/Data/2687806/Buildings/1.cs new file mode 100644 index 0000000..3a03819 --- /dev/null +++ b/Univ/Data/2687806/Buildings/1.cs @@ -0,0 +1,629 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Arctic_Winter" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "662.961 -210.38 100";rotation = "0 0 1 159.109";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = "NW Exterior";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "665.781 -217.029 120";rotation = "0 0 1 4.95941";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";nametoset = "NW Exterior";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "687.213 -243.41 100";rotation = "0 0 1 94.1903";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = "NW Exterior (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "714.56 -276.779 100";rotation = "0 0 1 187.064";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = "NW Interior";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "655.075 -376.72 100";rotation = "0 0 1 187.328";scale = "5 106.668 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "719.879 -287.436 120";rotation = "0 0 1 5.83357";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";nametoset = "NW Interior";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "753.56 -238.147 100";rotation = "0 0 1 187.328";scale = "35.0008 6.66667 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "735.324 -309.994 100";rotation = "0 0 1 185.592";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";isSwitchedOff = "1";nametoset = "NW Interior (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "765.745 -300.211 100";rotation = "0 0 1 187.328";scale = "15 6.66667 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "713.32 -394.294 100";rotation = "0 0 1 187.328";scale = "5 73.334 40";team = "2";ownerGUID = "2687806";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWall";position = "806.695 -295.395 100";rotation = "0 0 1 187.328";scale = "5 13.3333 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.79 -250.793 110.708";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "1.13076 0.166666 21.418";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "842.397 -253.058 112.209";rotation = "-0.706378 0.0452289 0.706389 185.181";scale = "0.75 0.166666 40.0168";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "842.322 -253.628 115.095";rotation = "0.712819 0.0949391 -0.694892 159.028";scale = "0.750135 0.166666 40.0148";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "842.111 -255.249 117.541";rotation = "0.704348 0.24028 -0.667952 143.665";scale = "0.750127 0.166666 40.009";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "841.801 -257.676 119.176";rotation = "0.677554 0.392549 -0.621953 129.113";scale = "0.75046 0.166666 40.0108";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.746 -256.746 119.75";rotation = "-0.528163 0.600437 -0.600433 235.683";scale = "0.125 0.166666 40.015";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "810.604 -319.299 100";rotation = "0 0 1 186.07";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "9.9";isSwitchedOff = "1";nametoset = "Gate Control (9.9)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "787.85 -363.548 91";rotation = "0 0 1 187.328";scale = "9.9999 6.66667 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "618.238 -555.594 100";rotation = "0 0 1 155.659";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = "SW Exterior";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "650.333 -534.392 100";rotation = "0 0 1 98.2004";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = "SW Exterior (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "829.052 -278.356 119.5";rotation = "0.0639028 0.997956 1.265e-06 180";scale = "9.52452 0.238094 9.5122";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "9.9";canmove = 1;isdoor = "1";issliding = "0";moving = "close";powercontrol = "1";prevscale = "9.52452 0.238094 9.5122";state = "closed";toggletype = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "838.971 -279.632 119.75";rotation = "-0.528163 0.600437 0.600433 124.317";scale = "0.125 0.166666 40.0028";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "9.9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "622.926 -553.821 120";rotation = "0 0 1 185.91";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";nametoset = "SW Exterior";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "787.353 -376.809 100";rotation = "0 0 1 190.943";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";isSwitchedOff = "1";nametoset = "NW Tower Exterior (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "840.015 -252.752 110.708";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "1.19832 0.166666 21.418";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate6";position = "826.808 -295.805 119.5";rotation = "0.0639028 0.997956 1.265e-06 180";scale = "9.83938 0.504488 19.0868";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "9.9";canmove = 1;isdoor = "1";issliding = "0";moving = "close";powercontrol = "1";prevscale = "9.83938 0.504488 19.0868";state = "closed";toggletype = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "772.83 -401.948 91";rotation = "0 0 1 187.328";scale = "5 19.9998 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate6";position = "826.733 -296.387 119.5";rotation = "0.0639028 0.997956 1.265e-06 180";scale = "9.83934 0.504488 19.0868";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "9.9";canmove = 1;isdoor = "1";issliding = "0";moving = "close";powercontrol = "1";prevscale = "9.83934 0.504488 19.0868";state = "closed";toggletype = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "836.727 -297.08 119.75";rotation = "-0.528163 0.600437 0.600433 124.317";scale = "0.125 0.166666 40.0028";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "9.9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "836.652 -297.663 119.75";rotation = "-0.528163 0.600437 0.600433 124.317";scale = "0.125 0.166666 40.0026";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "9.9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "685.243 -508.575 100";rotation = "0 0 -1 22.8631";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = "SW Interior";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "692.222 -500.45 120";rotation = "0 0 1 186.098";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";nametoset = "SW Interior";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "714.542 -481.829 100";rotation = "0 0 1 6.28398";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";isSwitchedOff = "1";nametoset = "SW Interior (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "824.014 -317.533 119.5";rotation = "0.0639028 0.997956 1.265e-06 180";scale = "9.52495 0.238094 9.5122";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "9.9";canmove = 0;isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "9.52495 0.238094 9.5122";state = "closed";toggletype = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "833.933 -318.809 119.75";rotation = "-0.528163 0.600437 0.600433 124.317";scale = "0.125 0.166666 40.0046";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "9.9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "784.747 -393.648 204.577";rotation = "0.0631594 0.986287 0.152475 45.5621";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "789.471 -413.667 150.58";rotation = "0.997606 -0.0638859 0.0264579 135.097";scale = "1.00044 0.166666 111.95";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "783.898 -433.618 110.75";rotation = "0.0452366 0.706384 0.706382 185.18";scale = "0.305733 0.262745 3.64203";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "795.247 -384.711 110.75";rotation = "-0.626531 -0.551121 -0.551112 115.862";scale = "0.612068 0.262745 0.606289";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "806.659 -376.049 100.75";rotation = "0.0531705 0.830294 0.554783 184.07";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "794.158 -394.858 101";rotation = "0 0 1 187.328";scale = "0.125 0.166666 200";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "793.889 -398.915 120.642";rotation = "-0.626525 -0.551117 -0.551123 115.864";scale = "0.5 0.5 0.1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5.008";isSwitchedOff = "1";switchRadius = "100";nametoset = "Upper Level Lockdown";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "798.032 -397.477 110.722";rotation = "-0.528167 0.600432 0.600435 124.318";scale = "0.927075 0.166666 7.85216";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "836.218 -322.741 100";rotation = "0 0 1 185.504";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "9.9";isSwitchedOff = "1";nametoset = "Gate Control (9.9)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "793.91 -394.826 200.75";rotation = "0.0636153 0.993423 0.095206 67.8497";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "803.865 -396.106 106";rotation = "0.0637753 0.995924 0.0637746 90.2339";scale = "2.5 0.166666 19.076";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "795.368 -385.447 204.577";rotation = "0.362688 0.31903 0.875601 104.792";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "810.61 -376.81 101";rotation = "0 0 1 187.328";scale = "1.87076 0.166666 8.762";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.068 -396.384 106";rotation = "0.600437 0.528163 0.600433 124.317";scale = "2.50003 0.166666 40.999";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "793.266 -403.76 105.738";rotation = "0.295408 -0.865997 0.403464 101.211";scale = "3.52483 0.166666 6.85004";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMedalSeal";position = "817.898 -363.881 100.1";rotation = "1 0 0 0";scale = "1 1 0.2";team = "2";ownerGUID = "2687806";powerFreq = "7.5555";isSwitchedOff = "1";nametoset = "Entry Seal";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWall";position = "846.37 -300.496 100";rotation = "0 0 1 187.328";scale = "5 13.3333 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "797.775 -401.453 110.472";rotation = "-0.660475 0.750848 9.51768e-07 180";scale = "2.91532 0.166666 18.944";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "798.245 -400.237 154.541";rotation = "0.626533 0.551117 -0.551114 115.863";scale = "2.28163 0.166666 8.97132";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "794.19 -394.61 200.75";rotation = "0.499156 0.439071 0.747034 113.38";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "796.827 -406.866 112.553";rotation = "-0.528166 0.600434 0.600433 124.317";scale = "0.125 1.054 7.85216";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "827.523 -368.65 110.75";rotation = "-0.528163 0.600437 0.600432 124.317";scale = "0.609147 0.262745 1.21399";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "801.327 -396.033 122.658";rotation = "-0.995924 0.0637767 0.0637761 90.2339";scale = "0.2 0.2 0.2";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5.008";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "792.457 -410.052 121.819";rotation = "-0.626525 -0.551118 -0.551122 115.863";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedDecoration7";position = "808.866 -384.615 101";rotation = "0 0 1 95.1494";scale = "1 1 1";team = "2";ownerGUID = "2687806";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "797.692 -404.515 150.541";rotation = "-0.706381 0.0452355 0.706385 185.18";scale = "0.125 0.166666 8.97132";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "795.467 -404.229 154.291";rotation = "0.750848 0.660475 2.37518e-06 179.999";scale = "0.125 1.49523 7.00002";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration6";position = "799.291 -402.251 114.635";rotation = "0 0 1 97.3106";scale = "1 1 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "780.963 -429.198 100";rotation = "0 0 1 6.49358";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";isSwitchedOff = "1";nametoset = "SW Tower Exterior (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "794.128 -395.106 125.896";rotation = "-0.551122 0.626534 -0.551108 115.863";scale = "12.4475 0.166666 78.0012";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "7.87";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "795.04 -409.017 118.252";rotation = "0.0452317 0.706388 -0.706378 174.82";scale = "1.2144 0.166666 5.3335";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "794.756 -395.689 201";rotation = "0 0 1 7.83383";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";nametoset = " NW Tower Pinical";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "791.85 -412.81 150.791";rotation = "0 0 -1 82.6715";scale = "8.92492 0.166666 7";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "7.87";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "807.062 -374.86 100.24";rotation = "-0.543145 -0.710043 -0.448142 104.554";scale = "0.666265 0.166666 38.0004";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "794.924 -408.464 154.541";rotation = "0.0452344 0.706384 0.706382 185.181";scale = "1.1214 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "1.1214 0.166666 0.04174";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "817.84 -377.981 100.99";rotation = "0.0452354 0.706382 0.706384 185.18";scale = "3.58916 4.401 0.48";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "7.5555";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "797.94 -404.547 154.291";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "825.726 -378.753 107.941";rotation = "0.626528 0.551116 -0.551121 115.863";scale = "0.125 1.70667 37.9962";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "804.346 -396.169 102.75";rotation = "0.47576 0.621954 0.621953 230.887";scale = "0.238095 1.66667 1.70732";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "797.69 -409.105 118.002";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "2.53548 0.166666 6.732";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "812.235 -390.077 102.75";rotation = "0.045235 0.706384 0.706382 185.18";scale = "0.238095 1.66667 6.19546";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "794.748 -412.619 118.925";rotation = "-2.61389e-06 -2.22951e-06 1 97.3283";scale = "0.125 1.73284 62.7318";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "793.573 -408.796 164.964";rotation = "-0.0452377 -0.70638 0.706385 185.18";scale = "0.472865 0.166666 6.22286";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "794.684 -408.938 164.788";rotation = "-0.865996 -0.295408 0.403467 101.211";scale = "0.125 0.166666 6.22686";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "797.265 -412.244 118.002";rotation = "0.997956 -0.0639069 -8.10078e-08 180";scale = "2.52437 0.166666 6.732";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "794.661 -410.504 164.611";rotation = "-0.630671 0.716975 -0.296986 209.28";scale = "0.777858 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";cankill = "0";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "close";powercontrol = "1";prevscale = "0.777858 0.166666 0.1";state = "closed";timeout = ".5";toggletype = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedLogoProjector";position = "815.407 -382.695 111";rotation = "0 0 1 7.78448";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";holoBlock = "DSwordLogo";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "810.496 -393.112 102.75";rotation = "-0.307244 0.900668 -0.307242 95.9836";scale = "1.66667 0.238094 1.70834";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "786.181 -423.576 150.58";rotation = "-0.0637764 -0.995924 0.0637797 90.234";scale = "0.125 6.8331 8.0016";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "795.072 -420.512 110.722";rotation = "-0.528167 0.600432 0.600435 124.318";scale = "6.96085 0.166666 7.85228";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";nametoset = "Ground Floor Stair";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "AudioDep";position = "796.334 -408.646 167.338";rotation = "0.995923 -0.0637813 0.0637842 90.2334";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";powerFreq = "27.1991";pLogic = "1";pLogic = "1";lLogic = "1";audioBlock = "564";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "799.325 -409.569 116.354";rotation = "-0.865996 -0.29542 0.403457 101.212";scale = "1.3405 0.166666 5.32958";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "793.56 -412.182 178.746";rotation = "0.0639127 0.997956 1.265e-06 180";scale = "0.6836 0.166666 27.064";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "797.245 -409.015 164.715";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "2.30787 0.166666 19.846";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "812.235 -390.077 102.75";rotation = "-0.44814 0.773526 -0.448138 104.554";scale = "1.66667 0.238094 1.70726";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "794.128 -395.106 177.396";rotation = "0.0452414 0.706384 -0.706381 174.82";scale = "0.125 15.4033 78.0012";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "7.87";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "795.79 -416.876 110.972";rotation = "0 0 1 97.3278";scale = "8.8105 0.166666 6.326";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "795.964 -417.941 150.541";rotation = "-0.528161 0.600431 0.60044 124.318";scale = "6.64302 0.166666 8.96924";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "815.054 -387.211 99.5";rotation = "0 0 1 187.328";scale = "5 6.66666 3";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "824.487 -388.424 110.75";rotation = "0.0637753 0.995924 0.0637746 90.2339";scale = "0.16129 18.6685 18.0953";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "798.067 -409.373 164.964";rotation = "-0.0452426 -0.70638 0.706386 185.18";scale = "1.61671 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "1.61671 0.166666 0.22286";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "796.77 -412.596 164.715";rotation = "0.0639074 0.997956 1.2121e-06 180";scale = "2.30054 0.166666 19.846";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "798.33 -409.155 169.214";rotation = "0.0639127 0.997956 1.265e-06 180";scale = "1.50001 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "799.125 -414.957 101";rotation = "0 0 1 74.8277";scale = "3.9999 0.166666 18.944";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "779.709 -432.826 204.577";rotation = "0.0631594 0.986287 0.152475 45.5621";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "817.085 -390.699 102.75";rotation = "0.600436 0.528164 0.600433 124.317";scale = "1.66666 0.238094 6.19537";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.34 -405.246 118.252";rotation = "0.626527 0.551122 -0.551116 115.862";scale = "3.41945 0.166666 52.1056";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "802.04 -411.261 118.252";rotation = "-0.528164 0.600434 0.600435 124.316";scale = "0.666972 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.008";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "0.666972 0.166666 0.1";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.795 -378.248 101";rotation = "0 0 1 187.328";scale = "1.98296 0.166666 8.762";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "796.304 -421.116 116.127";rotation = "1 0 0 0";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "797.89 -412.74 169.214";rotation = "0.0639127 0.997956 1.265e-06 180";scale = "1.49925 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "789.152 -433.788 200.75";rotation = "0.600437 0.528163 0.600433 124.317";scale = "0.125 0.166666 78.0012";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "7.87";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "800.525 -401.995 197.678";rotation = "-0.528156 0.60044 0.600436 124.318";scale = "0.5 0.5 0.1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "9.9";isSwitchedOff = "1";switchRadius = "200";nametoset = "Security Doors";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "800.922 -409.236 168.327";rotation = "0.0452393 0.706382 0.706384 185.181";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "797.91 -404.795 152.291";rotation = "0.600436 0.528163 -0.600434 235.682";scale = "1 0.166666 59.746";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "808.534 -401.735 155.542";rotation = "0.403461 0.821242 0.40346 101.212";scale = "0.375005 0.166666 5.98414";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate3";position = "800.181 -402.718 197.723";rotation = "0.950111 -0.0608402 0.305922 23.6486";scale = "0.833333 0.833333 0.909087";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "801.021 -400.097 196.872";rotation = "-0.0355596 -0.555219 0.830944 186.093";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.254 -405.607 114.386";rotation = "0.626537 0.551116 -0.55111 115.864";scale = "3.28632 0.166666 61.94";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "794.915 -420.085 165.214";rotation = "0 0 1 142.329";scale = "2.62875 0.166666 7";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "794.873 -410.42 196.872";rotation = "0 0 1 5.19157";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "27.1991";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "800.206 -404.482 198.53";rotation = "-0.528158 0.600438 0.600436 124.318";scale = "0.5 0.5 0.1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";switchRadius = "200";nametoset = "Exterior Defence System Control";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "801.083 -411.268 164.964";rotation = "-0.528162 0.600435 0.600436 124.318";scale = "0.808593 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "0.808593 0.166666 0.1337";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "803.762 -413.527 121.067";rotation = "0.045234 0.706383 0.706383 185.18";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.99 -407.159 154.792";rotation = "0 0 -1 37.6717";scale = "1.99999 0.166666 3";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.176 -398.59 110.75";rotation = "0.0637753 0.995924 0.0637746 90.2339";scale = "0.125 0.166666 37.9378";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "800.262 -404.12 199.845";rotation = "-0.528158 0.600438 0.600436 124.318";scale = "0.52 0.519998 0.27";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration1";position = "812.568 -396.723 141.795";rotation = "-1.14896e-06 -1.18901e-06 1 187.328";scale = "1 1 1";team = "2";ownerGUID = "2687806";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "812.536 -396.971 144.595";rotation = "0.995924 -0.0637767 0.0637767 90.2334";scale = "0.625 1.66667 0.3";team = "2";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "789.572 -430.514 152.541";rotation = "-0.551116 0.626534 -0.551114 115.863";scale = "0.875006 0.166666 6.6019";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";prevscale = "0.875006 0.166666 6.6019";state = "closed";timeout = ".5";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "801.592 -409.323 167.214";rotation = "-0.551113 0.626538 -0.551112 115.863";scale = "1 0.166666 8.2233";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "AudioDep";position = "800.991 -412.036 168.39";rotation = "0.626537 0.551114 -0.551112 115.863";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";powerFreq = "27.1991";pLogic = "1";pLogic = "1";lLogic = "1";audioBlock = "564";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "800.15 -404.987 199.825";rotation = "-0.528158 0.600438 0.600436 124.318";scale = "0.52 0.519998 0.27";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "805.785 -410.366 164.964";rotation = "0.0452344 0.706384 0.706382 185.181";scale = "6.6284 0.166666 27.2948";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "800.04 -405.843 198.386";rotation = "-0.528158 0.600438 0.600436 124.318";scale = "0.52 0.519998 0.27";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "800.04 -405.843 199.105";rotation = "-0.528158 0.600438 0.600436 124.318";scale = "0.52 0.519998 0.27";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "826 -378.536 100.75";rotation = "0.0531705 0.830294 0.554783 184.07";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "817.087 -390.7 102.75";rotation = "0.621955 -0.47576 0.621952 230.887";scale = "1.66667 0.238094 1.70731";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField6";position = "800.035 -405.887 199.846";rotation = "-0.528158 0.600438 0.600436 124.318";scale = "0.52 0.519998 0.27";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration7";position = "822.153 -384.361 101";rotation = "0 0 -1 83.3018";scale = "1 1 1";team = "2";ownerGUID = "2687806";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "808.345 -403.227 154.792";rotation = "0 0 -1 82.6721";scale = "0.750162 0.166666 3";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "800.295 -405.746 198.153";rotation = "0 0 1 97.3289";scale = "0.99985 0.166666 4.69602";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "799.921 -406.772 198.38";rotation = "-0.528158 0.600438 0.600436 124.318";scale = "0.52 0.519998 0.27";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.718 -405 201.25";rotation = "0.0637803 0.995924 0.0637795 90.234";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "789.12 -434.036 101";rotation = "0 0 1 187.328";scale = "0.125 0.166666 200";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField6";position = "799.921 -406.772 199.113";rotation = "-0.528158 0.600438 0.600436 124.318";scale = "0.52 0.519998 0.27";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "790.64 -430.651 150.541";rotation = "0.0452336 0.706384 -0.706382 174.82";scale = "0.412852 0.166666 6.59988";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "809.659 -413.73 115.386";rotation = "-0.379086 0.654328 0.654331 138.478";scale = "0.125 0.5 15.997";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "799.921 -406.772 199.912";rotation = "-0.528158 0.600438 0.600436 124.318";scale = "0.52 0.519998 0.27";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "800.075 -415.136 165.214";rotation = "0 0 1 119.829";scale = "0.99991 0.166666 7";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate3";position = "799.436 -408.507 197.781";rotation = "-0.950117 0.0608547 0.3059 23.6488";scale = "0.833333 0.833333 0.909087";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "796.151 -420.918 115.377";rotation = "0.667951 -0.328154 0.66795 216.335";scale = "0.375 0.166666 15.9968";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "808.072 -410.156 154.541";rotation = "0.0452344 0.706384 0.706382 185.181";scale = "5.50725 0.166666 26.2928";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.998 -404.784 201.25";rotation = "0.600438 0.52816 0.600434 124.318";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "800.04 -407.729 198.403";rotation = "0.0531753 0.830294 -0.554783 175.93";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "794.404 -394.891 156";rotation = "0.706384 -0.0452357 0.706382 185.18";scale = "22.5 0.166666 78.0012";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "793.972 -428.667 165.964";rotation = "0.600438 0.528158 0.600436 124.318";scale = "0.375028 0.166666 7.92488";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "803.792 -413.5 168.652";rotation = "-0.70638 0.0452391 0.706385 185.181";scale = "0.281002 0.166666 4.93018";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "805.625 -414.018 118.925";rotation = "0 0 1 187.328";scale = "4.1839 0.166666 70.732";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "791.896 -414.411 200.75";rotation = "-0.626538 -0.551113 -0.551113 115.864";scale = "5.23325 0.166667 19.0819";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.744 -413.52 154.541";rotation = "0.706384 -0.0452365 -0.706381 174.82";scale = "0.125 1.31709 53.029";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "805.412 -413.915 178.996";rotation = "0.0452386 0.706384 0.706382 185.179";scale = "6.67147 0.166666 34.4274";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "798.339 -423.662 165.964";rotation = "-0.130875 0.982723 -0.130874 90.9989";scale = "0.375 0.166666 7.99452";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.73 -414.501 112.554";rotation = "0.706384 -0.0452365 -0.706381 174.82";scale = "0.791 0.166666 44.4028";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "799.29 -404.297 201.49";rotation = "0 0 1 187.329";scale = "0.52 0.519998 40.02";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "788.872 -434.004 200.75";rotation = "0.0636153 0.993423 0.095206 67.8497";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "803.791 -413.5 166.652";rotation = "-0.70638 0.0452391 0.706385 185.181";scale = "0.718999 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "0.718999 0.166666 0.12824";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "818 -394.078 102.75";rotation = "-0.900668 -0.307242 -0.307245 95.9836";scale = "0.238095 1.66667 1.70788";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "803.5 -417.747 165.964";rotation = "0.600438 0.528158 0.600436 124.318";scale = "0.375 0.166666 7.99956";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "809.565 -413.389 115.386";rotation = "0.18508 0.694891 0.69489 200.971";scale = "0.125 0.5 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.301 -413.352 118.252";rotation = "-0.528166 0.600433 0.600433 124.317";scale = "0.666935 0.166667 32.7916";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "809.442 -413.606 116.136";rotation = "1 0 0 0";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "801.508 -421.218 165.964";rotation = "-0.307241 0.90067 -0.30724 95.9836";scale = "0.375 0.166666 7.9972";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "803.701 -401.356 201.49";rotation = "0 0 -1 82.6715";scale = "0.52 0.519998 40.02";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.393 -398.869 106";rotation = "0.600437 0.528163 0.600433 124.317";scale = "2.5 0.166666 41.0004";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "809.399 -399.846 198.662";rotation = "-0.528164 0.600436 0.600433 124.317";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "15.66674";isSwitchedOff = "1";switchRadius = "50";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "799.91 -414.827 196.932";rotation = "0 0 1 7.32766";scale = "4.00045 0.166666 7.13598";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.302 -405.452 188.622";rotation = "-0.528161 0.600436 0.600436 124.318";scale = "3.20595 0.166666 61.9924";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "796.418 -431.842 165.964";rotation = "0.403463 0.82124 0.403462 101.212";scale = "0.375 0.166666 8.00202";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "801.003 -427.497 116.127";rotation = "1 0 0 0";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "791.05 -420.998 114.386";rotation = "-0.626539 -0.55111 -0.551114 115.863";scale = "6.4638 0.166667 53.2552";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804 -426.627 111.722";rotation = "0.0637803 0.995924 0.0637795 90.234";scale = "0.375 0.166666 8.0035";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "803.5 -417.748 165.964";rotation = "-0.448139 0.773528 -0.448136 104.554";scale = "0.375 0.166666 8.00056";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "AudioDep";position = "814.271 -402.508 158.447";rotation = "0.185087 0.69489 -0.694889 159.028";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";powerFreq = "27.1991";pLogic = "1";pLogic = "1";lLogic = "1";audioBlock = "564";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "796.833 -421.331 197.272";rotation = "-0.574282 0.818658 1.03772e-06 180";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "838.875 -367.759 100";rotation = "0 0 1 106.232";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "7.5555";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "813.545 -406.449 115.386";rotation = "0.475762 0.621954 0.621951 230.886";scale = "0.125 0.5 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "800.362 -430.523 115.319";rotation = "-0.528165 0.600435 0.600433 124.317";scale = "0.5 0.5 0.2";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5.553";isSwitchedOff = "1";switchRadius = "50";timed = "2";nametoset = "FF Trap";SwitchTimer = "3000";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "838.083 -370.245 100";rotation = "0 0 1 106.803";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "7.5555";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "AudioDep";position = "806.731 -414.13 168.081";rotation = "0.0452429 0.706384 -0.706382 174.82";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";powerFreq = "27.1991";pLogic = "1";pLogic = "1";lLogic = "1";audioBlock = "564";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.277 -405.621 196.622";rotation = "0.626537 0.551116 -0.55111 115.864";scale = "3.29037 0.166666 61.9924";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.69 -424.668 101";rotation = "0 0 1 29.8277";scale = "1.99929 0.166666 18.944";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "801.393 -415.307 203.327";rotation = "-0.528158 0.600436 0.600438 124.318";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = " W Tower Pinical (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.978 -412.727 198.122";rotation = "-0.551113 0.626538 -0.551112 115.863";scale = "0.125 0.166666 2";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "805.916 -409.553 188.622";rotation = "0.0452421 0.706384 -0.706381 174.82";scale = "6.64325 0.166666 8.3543";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "837.291 -372.784 100";rotation = "0 0 1 107.374";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "7.5555";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "801.035 -427.249 115.377";rotation = "-0.551118 0.626529 -0.551117 115.863";scale = "0.375 0.166666 16.0011";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "AudioDep";position = "808.877 -403.91 198.935";rotation = "0.626529 0.551118 -0.551117 115.863";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";powerFreq = "27.1991";pLogic = "1";pLogic = "1";lLogic = "1";audioBlock = "564";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "820.142 -396.849 102.75";rotation = "0.694891 -0.18508 0.69489 200.971";scale = "1.66667 0.238094 1.70656";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "815.415 -402.876 154.842";rotation = "0 0 1 209.829";scale = "0.999478 0.166666 19.744";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.761 -412.447 197.872";rotation = "0.706384 -0.0452429 0.706381 185.181";scale = "0.5 0.166666 4.77484";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "808.719 -405.136 198.844";rotation = "-0.528164 0.600436 0.600433 124.317";scale = "0.5 0.5 0.1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "27.1991";switchRadius = "100";nametoset = "Full Tower LockDown";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "830.849 -417.262 118.675";rotation = "0.0637753 0.995924 0.0637743 90.2333";scale = "0.125 0.166666 77.995";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.942 -405.281 200.75";rotation = "0.0452322 0.706384 -0.706382 174.82";scale = "0.125 0.166666 41.864";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "805.033 -413.495 197.125";rotation = "-0.528159 0.600436 0.600437 124.318";scale = "0.250025 0.166666 4.7729";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "796.28 -425.14 197.272";rotation = "0.732231 -0.681057 -8.63301e-07 180";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "806.248 -409.93 204.314";rotation = "0.626528 0.551121 -0.551115 115.863";scale = "4.20012 3.324 0.48";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.77899";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.926 -414.711 198.597";rotation = "0 0 1 187.328";scale = "0.125 0.166666 2";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "805.432 -413.042 196.622";rotation = "0.0452363 0.706381 0.706385 185.181";scale = "6.62463 0.166666 6.36802";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "810.103 -410.922 164.964";rotation = "0.0452379 0.706384 -0.706382 174.82";scale = "4.45085 0.166666 6.22094";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "811.228 -416.966 99.5";rotation = "0 0 1 187.328";scale = "10 13.3333 3";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "809.658 -413.73 115.386";rotation = "0.621955 -0.475762 0.621951 230.887";scale = "0.375 0.166666 15.9998";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "810.33 -421.739 111.722";rotation = "0.600436 0.528162 0.600434 124.318";scale = "0.375 0.166666 16.0006";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "818.271 -405.517 118.002";rotation = "6.14114e-11 1 1.14383e-05 179.999";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.662 -414.934 198.347";rotation = "0.706384 -0.0452322 -0.706382 174.82";scale = "0.125 0.166666 4.00054";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.042 -414.243 200.75";rotation = "-0.52816 0.600437 -0.600435 235.683";scale = "4.50175 0.166667 6.28538";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.662 -414.934 199.847";rotation = "0.626527 0.551122 -0.551116 115.864";scale = "0.125 0.166666 4.00054";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "800.092 -434.583 116.127";rotation = "1 0 0 0";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "803.999 -426.629 111.722";rotation = "0.687393 0.234487 0.687391 153.607";scale = "0.375 0.166666 16.0011";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "804.703 -414.697 198.587";rotation = "-0.551118 0.626532 -0.551115 115.864";scale = "1.02 1.52018 0.48";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "808.69 -407.323 196.932";rotation = "0 0 -1 82.6721";scale = "4.15642 0.166666 7.13598";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "796.555 -425.554 201.49";rotation = "0 0 1 187.329";scale = "0.52 0.519998 40.02";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "790.494 -433.384 201";rotation = "0 0 1 189.581";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";nametoset = " SW Tower Pinical";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "800.383 -432.352 165.964";rotation = "0.0637748 0.995924 0.0637742 90.234";scale = "0.375 0.166666 7.99526";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.91 -414.966 200.097";rotation = "0.997956 -0.0639024 -8.10021e-08 180";scale = "0.125 0.166666 4";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "789.088 -434.284 200.75";rotation = "-0.469726 0.534001 -0.702993 102.738";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "801.848 -415.692 204.554";rotation = "-0.626539 -0.551113 -0.551112 115.864";scale = "5.23325 0.166667 6.58976";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "831.985 -404.496 200.75";rotation = "0.626528 0.551116 -0.551121 115.863";scale = "2.24132 0.166666 76.9888";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.378 -414.707 118.252";rotation = "0.995924 -0.0637792 0.0637752 90.2334";scale = "0.125 0.166666 32.693";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "815.662 -397.875 110.722";rotation = "-0.551118 0.62653 -0.551117 115.864";scale = "0.125 11.6908 78.0012";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.258 -423.605 200.75";rotation = "0.04524 0.706384 0.706382 185.18";scale = "0.125 0.166666 36.0142";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "834.932 -389.758 110.75";rotation = "0.626529 0.551116 -0.551119 115.863";scale = "0.608599 0.262745 0.608987";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "799.983 -426.257 201.25";rotation = "0.0637803 0.995924 0.0637795 90.234";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMedalSeal";position = "813.375 -412.926 154.891";rotation = "1 0 0 0";scale = "1 1 0.2";team = "2";ownerGUID = "2687806";powerFreq = "6.734";nametoset = "Medal Seal";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "842.94 -369.029 100";rotation = "0 0 1 106.803";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "7.5555";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "796.907 -432.148 196.872";rotation = "0 0 1 93.4282";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.821 -426.949 154.541";rotation = "-0.528162 0.600436 0.600434 124.318";scale = "5.475 0.166666 62.5552";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "842.149 -371.631 100";rotation = "0 0 1 106.803";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "7.5555";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "801.269 -413.678 159.753";rotation = "-0.0637828 -0.995924 0.0637751 90.234";scale = "2.4805 0.166666 44.1468";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "805.006 -417.576 198.746";rotation = "-0.528163 0.600436 0.600434 124.318";scale = "0.2 0.2 0.2";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "15.66674";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "808.407 -426.689 101.5";rotation = "0 0 1 7.32766";scale = "0.125 0.166666 17.944";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "841.105 -374.854 100";rotation = "0 0 1 106.803";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "7.5555";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "820.053 -400.777 177.476";rotation = "-0.528165 0.600432 0.600436 124.317";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "6.734";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.415 -402.495 154.78";rotation = "0 0 1 187.329";scale = "3.25307 0.166666 19.866";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "812.391 -411.216 180.833";rotation = "-0.995924 0.0637777 0.063777 90.2345";scale = "0.5 0.5 0.15";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "9.000001";isSwitchedOff = "1";switchRadius = "50";timed = "2";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "822.015 -405.722 105.564";rotation = "0.946448 0.322856 4.09249e-07 180";scale = "0.440937 0.166666 9.128";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.664 -426.757 164.964";rotation = "-0.528162 0.600436 0.600434 124.318";scale = "5.55993 0.166666 62.202";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "803.548 -429.906 165.964";rotation = "-0.307242 0.900669 -0.307241 95.9835";scale = "0.375 0.166666 8.00194";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.206 -405.604 118.252";rotation = "0.626528 0.55112 -0.551116 115.862";scale = "3.28685 0.166666 8.73538";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "794.783 -403.98 300.75";rotation = "0.0638881 0.997606 0.0264622 135.097";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "807.496 -428.1 111.722";rotation = "0.687394 0.234483 0.687392 153.607";scale = "0.375 0.166666 8.00476";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "808.74 -436.306 118.252";rotation = "0.995924 -0.063779 0.0637755 90.2334";scale = "9.7494 0.166667 45.304";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.479 -423.633 197.122";rotation = "0.0452348 0.70638 0.706386 185.18";scale = "0.125 0.166666 15.8031";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "812.835 -411.021 188.372";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "1.0894 0.166666 18.252";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.2 -407.732 154.842";rotation = "0 0 -1 105.172";scale = "2.00015 0.166666 19.744";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "804.62 -420.571 198.973";rotation = "-0.528163 0.600436 0.600434 124.318";scale = "0.2 0.2 0.2";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "15.66674";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "812.137 -397.422 183.7";rotation = "-0.55112 0.62653 -0.551114 115.863";scale = "2.3355 0.166666 77.999";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "818.964 -411.808 131.895";rotation = "-0.528159 0.600436 0.600437 124.318";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.866 -415.593 138.132";rotation = "0.0637753 0.995924 0.0637746 90.2339";scale = "8.0795 0.166666 7.94692";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "816.246 -409.099 204.554";rotation = "-0.52816 0.600433 0.600439 124.317";scale = "1.04527 0.166667 20.2898";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.316 -406.261 108.018";rotation = "0.687394 0.234488 0.68739 153.607";scale = "1.227 0.166666 14.5494";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "830.885 -416.985 173.98";rotation = "-0.528158 0.600438 0.600436 124.318";scale = "0.125 3.17733 72.5326";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "813.566 -406.142 203.512";rotation = "0.0452393 0.706384 0.706382 185.18";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = " N Tower Pinical (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.796 -421.165 200.5";rotation = "-0.660472 0.750851 -2.07417e-06 180";scale = "2.70685 0.166667 6.25602";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.453 -406.982 197.682";rotation = "0.0637748 0.995925 0.0637742 90.2339";scale = "0.125 0.166666 20.7636";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "810.735 -429.386 115.386";rotation = "0.600436 0.528162 0.600434 124.318";scale = "0.375 0.166666 16.0006";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine3";position = "819.289 -413.212 112.595";rotation = "-0.706381 0.0452375 0.706385 185.181";scale = "0.10969 0.0540316 0.0338659";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "819.494 -406.745 197.922";rotation = "-0.551118 0.626532 -0.551115 115.864";scale = "1.05699 10.4018 0.48";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "809.156 -405.658 197.182";rotation = "-0.626529 -0.551118 -0.551117 115.863";scale = "0.125 0.166666 21.7638";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "818.964 -411.808 145.194";rotation = "-0.528159 0.600436 0.600437 124.318";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.453 -406.982 199.734";rotation = "0.0637748 0.995925 0.0637742 90.2339";scale = "0.3825 0.166666 20.7636";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "800.199 -426.537 201.25";rotation = "-0.551115 0.626534 -0.551114 115.863";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.921 -400.785 168.09";rotation = "0.706384 -0.0452315 -0.706382 174.82";scale = "0.125 1.13525 8.65468";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.966 -405.032 201";rotation = "0 0 1 187.329";scale = "0.125 0.166666 200";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.775 -404.899 178.746";rotation = "0.0639028 0.997956 1.265e-06 180";scale = "0.125 4.29377 27.064";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "819.133 -400.525 188.872";rotation = "0 0 1 188.749";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "804.248 -423.47 198.979";rotation = "-0.528163 0.600436 0.600434 124.318";scale = "0.2 0.2 0.2";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "15.66674";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "826.225 -402.473 105.564";rotation = "0.946448 0.322856 4.09249e-07 180";scale = "0.539145 0.166666 9.128";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.255 -425.982 196.622";rotation = "-0.528159 0.600437 0.600436 124.318";scale = "5.66302 0.166666 53.2552";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "814.996 -411.299 180.708";rotation = "-0.0637787 -0.995924 0.063776 90.234";scale = "0.731252 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "0.731252 0.166666 0.00132001";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "799.496 -429.965 201.49";rotation = "0 0 1 97.3289";scale = "0.52 0.519998 40.02";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.672 -398.654 106";rotation = "0.706384 -0.0452357 0.706382 185.18";scale = "2.5 0.166666 18.9871";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "807.567 -431.83 115.386";rotation = "0.328151 0.667951 0.66795 216.335";scale = "0.125 0.5 8.0004";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "815.09 -414.953 169.214";rotation = "0.0639127 0.997956 1.265e-06 180";scale = "5.69605 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "807.181 -423.981 200.75";rotation = "0.04524 0.706384 0.706382 185.18";scale = "1.34925 0.166666 22.2396";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "803.998 -425.41 198.691";rotation = "-0.528163 0.600436 0.600434 124.318";scale = "0.2 0.2 0.2";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "15.66674";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "810.666 -425.655 111.722";rotation = "0.706384 -0.0452429 0.706381 185.181";scale = "0.375003 0.166666 8.0035";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.415 -424.129 197.122";rotation = "0.0452315 0.706384 -0.706382 174.82";scale = "0.125 0.166666 4.85152";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.567 -426.867 188.622";rotation = "-0.528157 0.600439 0.600436 124.318";scale = "5.49942 0.166666 62.0328";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "787.91 -443.447 204.577";rotation = "-0.350916 0.39893 -0.847179 92.1534";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.41 -409.382 101";rotation = "7.31663e-07 -7.10016e-06 1 232.328";scale = "2.0001 0.166667 18.944";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "816.255 -415.184 164.714";rotation = "0.998954 -0.0457185 -5.79524e-08 180";scale = "0.2 0.2 0.2";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "7.87";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "819.52 -402.042 196.372";rotation = "5.14543e-11 1 -5.38955e-06 180.001";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "807.405 -428.861 165.214";rotation = "0 0 -1 15.1718";scale = "2.00047 0.166666 3";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.235 -408.122 154.781";rotation = "0 0 -1 60.1715";scale = "2.00015 0.166666 19.864";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "812.56 -413.462 200.75";rotation = "0.995924 -0.0637818 0.063779 90.234";scale = "3.3448 0.166666 4.39182";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.189 -410.007 200.75";rotation = "-0.528164 0.600436 0.600432 124.317";scale = "1.05257 0.166667 33.5842";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "825.025 -401.93 166.813";rotation = "0.551116 -0.626528 -0.551121 115.863";scale = "0.7995 0.166666 5.652";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.128 -404.11 172.105";rotation = "-0.275152 -0.949337 -0.151822 91.3535";scale = "3.802 0.166666 8.64026";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.072 -426.783 197.372";rotation = "0 0 1 187.328";scale = "0.125 0.166666 6.25602";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "822.04 -407.221 156.854";rotation = "-0.773526 -0.44814 -0.448138 104.554";scale = "0.5 0.5 0.2";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "7.87";switchRadius = "100";nametoset = "Security Lockdown -> Kill Up List";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.96 -407.427 179.246";rotation = "0 0 1 187.328";scale = "2.52268 0.166666 18.252";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "817.508 -408.719 188.372";rotation = "0.105405 0.994429 1.26053e-06 180";scale = "0.1 0.1 0.1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "9.000001";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "806.397 -432.761 165.964";rotation = "-0.307241 0.90067 -0.30724 95.9836";scale = "0.375033 0.166666 9.08128";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.18 -412.099 157.359";rotation = "0.600439 0.528159 -0.600434 235.682";scale = "21.5705 0.166666 4.39186";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "811.516 -414.746 168.964";rotation = "0.0452394 0.706384 -0.706382 174.82";scale = "9.74912 0.166666 43.4772";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "AudioDep";position = "816.31 -411.72 186.25";rotation = "0.0452379 0.706384 -0.706382 174.82";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";powerFreq = "27.1991";pLogic = "1";pLogic = "1";lLogic = "1";audioBlock = "564";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "816.813 -411.784 183.352";rotation = "-0.995924 0.063779 0.063779 90.2341";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.964 -411.809 185.271";rotation = "0.706384 -0.0452365 -0.706381 174.82";scale = "1.55 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "806.236 -410.182 200.75";rotation = "-0.626534 -0.551116 -0.551114 115.863";scale = "0.125 0.166666 33.5864";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "828.66 -403.457 101";rotation = "0 0 1 232.328";scale = "2.74195 0.166666 18.944";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.495 -426.061 115.386";rotation = "0.600438 0.52816 0.600434 124.318";scale = "0.375 0.166666 22.7456";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "825.155 -404.129 154.781";rotation = "0 0 -1 15.1714";scale = "0.998528 0.166666 19.864";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "814.647 -415.028 200.75";rotation = "0.626532 0.551114 -0.551118 115.863";scale = "0.643 0.166666 7.12608";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.175 -412.093 200.5";rotation = "0.997956 -0.0639104 -8.10123e-08 180";scale = "1.1147 0.166666 179.056";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "811.142 -424.742 197.122";rotation = "-0.706381 0.0452327 0.706385 185.18";scale = "0.125 0.166666 14.0005";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "827.125 -399.351 166.659";rotation = "-0.865998 -0.295417 0.403456 101.212";scale = "1.06274 0.166666 5.65032";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "829.47 -427.99 178.996";rotation = "0.0637753 0.995924 0.0637743 90.2333";scale = "0.125 7.26193 77.9972";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "807.67 -424.296 200.5";rotation = "0.997956 -0.0639064 6.48877e-08 179.999";scale = "1.50002 0.166667 6.25602";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "847.36 -371.202 91";rotation = "0 0 1 187.328";scale = "9.9999 6.66667 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "822.953 -401.515 188.872";rotation = "0 0 1 192.183";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.875 -404.738 154.541";rotation = "-0.626531 -0.551115 -0.551118 115.863";scale = "3.1341 0.166666 24.9658";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "819.005 -411.572 182.181";rotation = "0.0452371 0.706385 -0.706381 174.82";scale = "4.02066 2.945 0.48";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "9.000001";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "824.576 -403.333 178.996";rotation = "0.626524 0.551115 -0.551126 115.863";scale = "2.13745 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "2.13745 0.166666 0.23046";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.64 -414.747 200.5";rotation = "0.997956 -0.0639104 -8.10123e-08 180";scale = "0.961738 0.166666 179.056";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "800.265 -426.04 251";rotation = "0.600438 0.52816 0.600434 124.318";scale = "25 0.166666 41.864";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "815.76 -416.011 188.372";rotation = "0.999645 -0.0266445 -3.37743e-08 180";scale = "0.1 0.1 0.1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "9.000001";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "826.987 -415.815 114.386";rotation = "0.995924 -0.0637757 0.0637866 90.234";scale = "2.00691 0.166666 32.693";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "810.766 -427.644 197.122";rotation = "-0.706381 0.0452327 0.706385 185.18";scale = "0.125 0.166666 13.9984";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "826.962 -415.812 118.252";rotation = "0.0452377 0.70638 0.706385 185.18";scale = "2.01849 0.166666 32.695";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.072 -429.331 111.722";rotation = "0.403468 0.821235 0.403467 101.212";scale = "0.375 0.166666 7.99912";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.701 -407.014 197.432";rotation = "0 0 1 7.32788";scale = "0.125 0.166666 6.13598";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "808.16 -426.657 101.25";rotation = "-0.0637737 -0.995925 0.0637702 90.234";scale = "0.125 0.166666 32.0012";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.534 -428.634 102.029";rotation = "0.0637727 0.995925 0.0637721 90.234";scale = "0.265 0.166666 30.0028";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.75 -409.772 178.996";rotation = "0.626524 0.551115 -0.551126 115.863";scale = "0.970208 0.166666 8.63034";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.534 -428.634 107.194";rotation = "-0.706382 0.0452385 0.706384 185.179";scale = "1.6385 0.166667 30.0028";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "AudioDep";position = "824.443 -404.357 181.845";rotation = "0.626526 0.551121 -0.551118 115.864";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";powerFreq = "27.1991";pLogic = "1";pLogic = "1";lLogic = "1";audioBlock = "564";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "827.53 -402.505 167.905";rotation = "0.997956 -0.0639044 -8.10047e-08 180";scale = "1.1534 0.166666 5.38198";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "811.339 -426.076 179.996";rotation = "0.654331 0.379086 0.654328 138.478";scale = "0.375 0.166666 7.00152";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.32 -426.814 198.936";rotation = "-0.0637781 -0.995924 0.0637728 90.2339";scale = "0.782003 0.166667 11.998";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.415 -406.667 178.746";rotation = "0.750849 0.660474 8.37211e-07 180";scale = "2.38775 0.166666 27.064";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine3";position = "812.364 -418.799 201.002";rotation = "0.997956 -0.0639038 1.10876e-06 180";scale = "0.120408 0.133813 0.0338659";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.849 -404.925 164.964";rotation = "-0.626531 -0.551115 -0.551118 115.863";scale = "3.22787 0.166666 24.966";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "807.905 -427.024 200.75";rotation = "0.0452357 0.706384 0.706382 185.18";scale = "3.72342 0.166666 4.85148";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.948 -414.781 114.386";rotation = "0.600439 0.528159 -0.600434 235.682";scale = "0.125 0.166666 45.3042";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.672 -398.135 192.54";rotation = "-0.55112 0.62653 -0.551114 115.863";scale = "1.91625 0.166666 77.997";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "9.000001";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.032 -410.899 204.461";rotation = "0.0452358 0.706384 0.706381 185.181";scale = "1.00016 0.166666 7.29748";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "826.781 -404.966 165.214";rotation = "0 0 1 9.66232";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "806.385 -432.767 165.964";rotation = "0.703993 0.0937531 0.703991 169.288";scale = "0.375 0.166666 15.9988";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "828.051 -439.042 151";rotation = "0.0637753 0.995924 0.0637746 90.2339";scale = "25 0.166666 78.0012";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "818.963 -411.809 192.622";rotation = "0.706384 -0.0452365 -0.706381 174.82";scale = "1.87501 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "1.87501 0.166666 -0.04868";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedGravityField0";position = "824.269 -411.782 154.301";rotation = "0.997956 -0.0639084 -8.10097e-08 180";scale = "4.27 4.27 35.809";team = "2";ownerGUID = "2687806";needsfit = "1";velocityMod = "1";gravityMod = "0";appliedForce = "0.000263571 0.00287851 500";powerFreq = "7.87";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "842.858 -386.006 100";rotation = "0 0 1 185.159";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";isSwitchedOff = "1";nametoset = "NE Tower Exterior (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "822.94 -413.926 200.5";rotation = "0.750849 0.660474 8.37211e-07 180";scale = "0.67655 0.166666 179.056";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.018 -396.849 300.75";rotation = "0.716977 0.630672 0.296979 150.719";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "807.248 -428.166 196.872";rotation = "0 0 1 95.7126";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.545 -405.526 179.246";rotation = "0 0 -1 82.6727";scale = "3.2271 0.166666 18.252";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.995 -411.147 204.21";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "0.999923 0.166666 6.422";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "803.399 -435.62 198.687";rotation = "0.0452357 0.706384 0.706382 185.18";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "15.66674";isSwitchedOff = "1";switchRadius = "25";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.296 -411.986 154.791";rotation = "0.319029 -0.362687 0.875602 104.793";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.164 -415.061 114.386";rotation = "0.528155 -0.600438 0.600439 124.317";scale = "0.125 0.166666 23.74";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "812.253 -429.453 179.996";rotation = "0.519247 0.678799 0.519244 111.663";scale = "0.375 0.166666 6.99998";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.981 -411.402 204.461";rotation = "0.706384 -0.0452379 -0.706382 174.82";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "811.163 -424.503 196.862";rotation = "-0.995924 0.0637768 0.0637809 90.234";scale = "4.01963 3.648 0.48";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "15.66674";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "813.078 -423.039 179.996";rotation = "0.706384 -0.0452429 0.706381 185.181";scale = "0.375 0.166666 7.0036";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "810.894 -424.71 197.372";rotation = "0 0 1 187.328";scale = "0.125 0.166666 6.25602";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.164 -413.006 154.791";rotation = "0.319029 -0.362687 0.875602 104.793";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "805.13 -416.743 290.44";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "0.125 4.60667 178.88";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "827.749 -412.755 116.169";rotation = "0.045235 0.706384 0.706382 185.18";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5.553";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "813.592 -423.244 200.75";rotation = "0.626532 0.551114 -0.551118 115.863";scale = "0.774328 0.166666 7.12608";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "816.726 -430.004 114.626";rotation = "0.600435 0.528157 0.60044 124.318";scale = "1.52 0.519998 4.01866";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "811.142 -424.742 198.686";rotation = "0.706384 -0.0452357 0.706382 185.18";scale = "0.907009 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "0.907009 0.166666 -0.000739986";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "818.732 -414.502 192.622";rotation = "0.706384 -0.0452365 -0.706381 174.82";scale = "1.87501 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "1.87501 0.166666 0.17732";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "819.949 -407.046 198.686";rotation = "0.706384 -0.045235 0.706382 185.18";scale = "0.907001 0.166666 8.22732";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";cankill = "1";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "3";moving = "open";prevscale = "0.907001 0.166666 8.22732";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.36 -416.427 118.925";rotation = "0 0 1 187.328";scale = "3.2722 0.166666 70.732";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "831.338 -413.469 116.354";rotation = "0.0637753 0.995924 0.0637743 90.2333";scale = "0.8235 0.166666 15.5188";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "810.862 -424.958 197.122";rotation = "0.0452315 0.706384 -0.706382 174.82";scale = "0.125 0.166666 4.85348";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "814.697 -425.135 179.246";rotation = "0 0 1 8.06248";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.772 -411.651 178.746";rotation = "0.750849 0.660474 8.37211e-07 180";scale = "0.125 0.166666 27.064";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.129 -426.027 200.75";rotation = "0.626531 0.551113 -0.55112 115.863";scale = "0.125 0.166666 40.8718";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "825.239 -402.21 173.326";rotation = "-0.0637763 -0.995924 0.0637727 90.234";scale = "2.7105 0.166666 14.9661";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "829.818 -402.799 166.567";rotation = "-0.0637763 -0.995925 0.0637727 90.2339";scale = "0.6765 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "0.6765 0.166666 0.1349";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.023 -414.102 154.791";rotation = "0.319029 -0.362687 0.875602 104.793";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "833.336 -399.896 101";rotation = "0 0 1 187.328";scale = "0.125 0.166666 200";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "810.552 -427.364 198.936";rotation = "0.551116 -0.626529 -0.551119 115.863";scale = "0.782003 0.166667 4.85154";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "792.048 -425.237 300.75";rotation = "0.0638881 0.997606 0.0264622 135.097";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "811.27 -427.811 165.964";rotation = "0.687393 0.234488 0.687391 153.607";scale = "0.375 0.166666 36.7412";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.26 -409.867 269.659";rotation = "0.0452407 0.706384 0.706382 185.18";scale = "0.825235 0.166666 8.76554";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.075 -429.332 111.722";rotation = "-0.551114 0.626537 -0.551112 115.863";scale = "0.375 0.166666 7.9988";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "810.787 -427.405 196.862";rotation = "-0.995924 0.0637768 0.0637809 90.234";scale = "4.02162 3.64801 0.48";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "15.66674";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "822.937 -415.548 154.791";rotation = "0.319029 -0.362687 0.875602 104.793";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "810.518 -427.612 197.372";rotation = "0 0 1 187.328";scale = "0.125 0.166666 6.25602";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.733 -407.45 201.25";rotation = "0.600438 0.52816 0.600434 124.318";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "810.765 -427.644 198.686";rotation = "0.706384 -0.0452357 0.706382 185.18";scale = "0.907001 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "0.907001 0.166666 0.00324";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "827.95 -399.457 198.81";rotation = "-0.995924 0.0637767 0.0637761 90.2339";scale = "0.2 0.2 0.2";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "6.554";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "807.4 -446.723 91";rotation = "0 0 1 187.328";scale = "24.9999 6.66667 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedJumpad";position = "821.684 -409.836 201.1";rotation = "1 0 0 0";scale = "1 1 0.2";team = "2";ownerGUID = "2687806";impulse = "7500";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "795.032 -404.012 301";rotation = "0 0 1 97.3289";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "829.845 -407.79 154.291";rotation = "-1.97636e-13 1 8.4077e-08 180";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "828.477 -414.476 154.541";rotation = "-0.528162 0.600436 0.600434 124.318";scale = "1.14665 0.166666 10.1025";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "7.87";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "close";powercontrol = "1";prevscale = "1.14665 0.166666 10.1";state = "closed";timeout = ".5";toggletype = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.835 -420.483 101";rotation = "0 0 -1 82.6721";scale = "4.00017 0.166666 18.944";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.281 -415.338 196.622";rotation = "0.995924 -0.0637757 0.0637866 90.234";scale = "0.125 0.166666 32.693";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "816.984 -430.027 115.386";rotation = "-0.551116 0.626536 -0.551112 115.863";scale = "0.375 0.166666 14.5612";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.325 -407.232 196.872";rotation = "0 0 -1 82.6715";scale = "4.08668 0.166666 7.25602";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "800.231 -426.289 201";rotation = "0 0 1 187.329";scale = "0.125 0.166666 200";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.261 -407.719 188.622";rotation = "0.600438 0.52816 -0.600434 235.682";scale = "0.125 0.166666 15.3655";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "810.305 -427.836 203.985";rotation = "-0.995924 0.0637803 0.0637795 90.234";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = " S Tower Pinical (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "829.087 -399.603 188.622";rotation = "0.0452382 0.706387 -0.706379 174.82";scale = "2.0001 0.166667 16.3293";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "828.161 -434.217 200.75";rotation = "0.626528 0.551116 -0.551121 115.863";scale = "2.27534 0.166666 76.9908";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "814.395 -432.223 179.996";rotation = "0.403464 0.82124 0.403462 101.212";scale = "0.375 0.166666 7.0023";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "825.653 -416.426 154.541";rotation = "0.0452363 0.706381 0.706385 185.181";scale = "1.25046 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "1.25046 0.166666 -0.02512";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.455 -407.666 251";rotation = "0.0637803 0.995924 0.0637795 90.234";scale = "25 0.166666 40.8114";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "834.546 -390.485 204.577";rotation = "0.362688 0.31903 0.875601 104.792";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.281 -415.339 192.622";rotation = "0.600434 0.528159 0.600439 124.317";scale = "1.875 0.166667 15.3655";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "826.892 -416.677 178.996";rotation = "0.0452386 0.706384 0.706382 185.179";scale = "1.99933 0.166666 34.4272";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "812.59 -425.174 204.554";rotation = "0.600436 0.528163 -0.600434 235.682";scale = "0.125 5.712 4.86366";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedGravityField0";position = "819.502 -411.183 110.962";rotation = "0 0 1 97.3278";scale = "4.27 4.27 179.488";team = "2";ownerGUID = "2687806";needsfit = "1";velocityMod = "1";gravityMod = "0";appliedForce = "0.00457196 0.00455151 -500";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "825.92 -416.965 154.541";rotation = "0.04524 0.706384 -0.706382 174.82";scale = "1.12116 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "1.12116 0.166666 0.26068";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "827.095 -416.063 115.386";rotation = "-0.551114 0.626537 -0.551112 115.863";scale = "0.375 0.166666 15.9986";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.276 -425.28 200.75";rotation = "0.04524 0.706384 0.706382 185.18";scale = "1.95824 0.166666 22.2396";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.943 -424.552 114.386";rotation = "0.528155 -0.600438 0.600439 124.317";scale = "4.65955 0.166666 23.7418";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "821.163 -415.066 198.587";rotation = "-0.995924 0.0637808 0.06378 90.234";scale = "0.5 0.5 0.2";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "6.554";switchRadius = "50";nametoset = "Lockdown";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'baseb');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "824.037 -411.414 196.622";rotation = "-0.626533 -0.551113 -0.551118 115.863";scale = "1.81812 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "1.81812 0.166666 0.2047";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "825.06 -403.458 196.622";rotation = "-0.626533 -0.551113 -0.551118 115.863";scale = "2.16771 0.166666 15.0026";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "823.37 -418.82 154.541";rotation = "-0.528156 0.600438 -0.600438 235.683";scale = "1.08283 0.166666 9.06994";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "7.87";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "close";powercontrol = "1";prevscale = "1.08283 0.166666 8.9";state = "closed";timeout = ".5";toggletype = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "830.838 -417.345 154.541";rotation = "-0.528162 0.600436 0.600434 124.318";scale = "0.125 0.166666 15.4362";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "824.436 -404.022 201.49";rotation = "0 0 -1 82.6715";scale = "0.52 0.519998 40.02";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.949 -407.73 201.25";rotation = "0.706384 -0.0452393 0.706382 185.18";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.198 -430.307 115.386";rotation = "-0.528157 0.600441 -0.600434 235.682";scale = "0.125 0.5 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "826.389 -416.406 167.214";rotation = "-0.0637838 -0.995923 0.0637811 90.2339";scale = "1 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "1 0.166666 0.08136";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.268 -415.589 196.372";rotation = "-0.660468 0.750855 9.51768e-07 180";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "815.17 -426.735 200.5";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "0.125 1.14182 7.25602";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "814.555 -411.241 201";rotation = "0 0 1 7.3283";scale = "4.19805 0.166666 178.88";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "833.368 -399.648 200.75";rotation = "0.499156 0.439071 0.747034 113.38";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.54 -416.625 179.246";rotation = "0 0 1 187.328";scale = "3.1704 0.166666 18.252";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "802.718 -405 304.75";rotation = "-0.706381 0.0452417 0.706384 185.181";scale = "0.228475 0.262745 0.455197";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "816.551 -423.485 179.996";rotation = "0.667949 -0.328161 0.667948 216.335";scale = "0.375 0.166666 15.9987";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "814.11 -430.673 165.964";rotation = "0.687394 0.234485 0.687391 153.607";scale = "0.375 0.166666 42.1226";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.782 -428.666 101.5";rotation = "0 0 1 7.32766";scale = "0.125 0.166666 17.944";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "830.113 -412.375 154.541";rotation = "-0.995924 0.0637808 0.0637752 90.234";scale = "0.677042 0.166666 9.17488";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.399 -416.64 154.541";rotation = "0.04524 0.706384 -0.706382 174.82";scale = "0.125 0.166666 42.7514";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedGravityField0";position = "804.776 -423.43 200.99";rotation = "0 0 1 7.32862";scale = "4.27 4.27 99.52";team = "2";ownerGUID = "2687806";needsfit = "1";velocityMod = "1";gravityMod = "0";appliedForce = "-0.0011072 -0.000367754 -500";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "831.994 -400.526 201";rotation = "0 0 1 7.84473";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";nametoset = " NE Tower Pinical";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "803.984 -397.097 301";rotation = "0 0 1 187.329";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.262 -411.185 230.011";rotation = "0.551115 -0.626531 -0.551118 115.863";scale = "12.631 0.166666 7.29754";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "815.85 -428.046 200.75";rotation = "0.0452357 0.706384 0.706382 185.18";scale = "0.28182 0.166666 4.85152";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.46 -416.143 159.753";rotation = "0.600437 0.528162 -0.600434 235.682";scale = "2.48075 0.166667 43.7512";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "AudioDep";position = "827.393 -416.284 171.447";rotation = "0.995923 -0.0637828 0.0637856 90.2339";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";powerFreq = "27.1991";pLogic = "1";pLogic = "1";lLogic = "1";audioBlock = "564";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "827.377 -408.433 201.49";rotation = "0 0 1 7.32841";scale = "0.52 0.519998 40.02";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "792.33 -425.021 304.75";rotation = "0.551112 -0.626534 -0.551118 115.863";scale = "0.228475 0.262745 1.27054";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.229 -411.434 255.273";rotation = "0.997956 -0.0639089 -8.10104e-08 180";scale = "0.125 0.166666 108.546";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "816.538 -428.134 200.25";rotation = "0.0452355 0.706381 0.706385 185.18";scale = "0.125 0.166666 4.84952";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "827.123 -427.858 115.386";rotation = "0.519251 0.678793 0.519247 111.663";scale = "0.375 0.166666 7.99844";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "795.28 -404.044 308.75";rotation = "0.706384 -0.0452401 0.706382 185.181";scale = "0.125 0.166666 14.9986";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "816.844 -428.174 199.825";rotation = "0.0452355 0.706381 0.706385 185.18";scale = "0.125 0.166666 4.85154";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.925 -411.427 192.658";rotation = "-0.419619 -0.85412 -0.307243 95.9824";scale = "2.80273 0.166666 15.2227";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.458 -423.895 283.801";rotation = "0.0590637 0.922267 0.382014 182.802";scale = "0.826267 0.166666 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "806.187 -407.788 269.665";rotation = "0.724238 0.637063 0.263875 213.398";scale = "1.03733 0.166666 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.187 -428.218 199.39";rotation = "0.0452355 0.706381 0.706385 185.18";scale = "0.125 0.166666 4.85146";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.365 -425.672 200.5";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "1.39314 0.166666 7.25602";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "830.218 -422.168 159.753";rotation = "-0.706381 0.0452417 0.706384 185.181";scale = "2.48075 0.166667 14.4381";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5.553";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedGravityField0";position = "827.464 -421.498 154.301";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "4.27 4.27 35.809";team = "2";ownerGUID = "2687806";needsfit = "1";velocityMod = "1";gravityMod = "0";appliedForce = "-0.00465217 0.00378667 -500";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.52 -428.261 198.913";rotation = "0.0452355 0.706381 0.706385 185.18";scale = "0.125 0.166666 4.85146";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "802.996 -404.783 304.75";rotation = "0.551112 -0.626535 -0.551116 115.863";scale = "0.228475 0.262745 0.455254";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.847 -428.303 198.416";rotation = "0.0452355 0.706381 0.706385 185.18";scale = "0.125 0.166666 4.85154";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "828.228 -408.237 196.622";rotation = "-0.995924 0.0637823 0.0637776 90.234";scale = "1.87533 0.166666 14.6456";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.554";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "close";powercontrol = "1";prevscale = "1.87533 0.166666 14.5";state = "closed";timeout = ".5";toggletype = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "792.33 -425.021 308.75";rotation = "0.600438 0.528158 0.600436 124.318";scale = "0.125 0.166666 41.864";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "822.42 -434.303 114.136";rotation = "-0.660468 0.750855 9.51767e-07 180";scale = "0.125 4.12337 6.328";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "833.493 -439.996 110.75";rotation = "0.0452366 0.706384 0.706382 185.18";scale = "0.303333 0.262745 3.64195";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "807.014 -406.768 290.94";rotation = "0 0 1 96.937";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "6.77899";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "829.476 -417.422 154.541";rotation = "0.0452357 0.706384 -0.706381 174.82";scale = "0.671498 0.166666 8.65862";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "817.149 -429.844 196.872";rotation = "0 0 -1 84.1119";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.267 -428.357 197.978";rotation = "0.0452355 0.706381 0.706385 185.18";scale = "0.125 0.166666 4.85152";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "829.65 -416.826 169.214";rotation = "0.0639127 0.997956 1.265e-06 180";scale = "0.623587 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.634 -428.404 197.621";rotation = "0.0452355 0.706381 0.706385 185.18";scale = "0.125 0.166666 4.85154";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.817 -434.949 112.522";rotation = "-0.320259 -0.651873 0.687383 153.607";scale = "1.31811 0.166666 6.02936";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "822.683 -417.781 203.326";rotation = "-0.626534 -0.551116 -0.551114 115.863";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = " E Tower Pinical (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "AudioDep";position = "828.167 -421.652 158.32";rotation = "0.995923 -0.0637878 0.0637886 90.234";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";powerFreq = "27.1991";pLogic = "1";pLogic = "1";lLogic = "1";audioBlock = "564";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "798.784 -404.242 300.75";rotation = "0.0452393 0.706384 -0.706382 174.82";scale = "2.00034 0.166666 43.8644";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.925 -428.441 197.122";rotation = "0.0452355 0.706381 0.706385 185.18";scale = "0.125 0.166666 4.84954";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "827.125 -427.859 115.386";rotation = "-0.448137 0.77353 -0.448135 104.554";scale = "0.375 0.166666 7.99902";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.02 -428.577 200.5";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "1.40219 0.166666 7.25602";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.165 -423.764 196.872";rotation = "0 0 -1 82.6721";scale = "0.999665 0.166666 7.25602";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "830.938 -416.575 192.622";rotation = "0.0637844 0.995924 0.0637735 90.234";scale = "1.875 0.166667 14.9664";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "803.952 -397.345 308.75";rotation = "-0.551115 0.626534 -0.551114 115.863";scale = "0.125 0.166666 15.0006";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "828.328 -438.826 151";rotation = "0.600437 0.528163 0.600433 124.317";scale = "25 0.166666 78.0012";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "827.494 -412.417 164.964";rotation = "-0.995924 0.0637808 0.0637752 90.234";scale = "1.97461 0.166666 52.172";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.966 -405.032 301";rotation = "0 0 1 187.329";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "804.325 -410.615 290.94";rotation = "0 0 -1 83.1448";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.236 -415.837 188.622";rotation = "0.600439 0.528157 -0.600436 235.682";scale = "0.125 0.166666 44.302";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.099 -418.806 188.622";rotation = "0.528156 -0.600436 0.60044 124.318";scale = "5.822 0.166666 14.9664";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "884.77 -315.517 100";rotation = "0 0 1 187.328";scale = "14.9998 6.66667 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "718.538 -558.435 100";rotation = "0 0 -1 0.676083";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.682 -423.394 290.69";rotation = "0.0452379 0.706384 0.706382 185.18";scale = "0.904908 0.166666 35.998";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "822.005 -429.42 154.541";rotation = "0.52816 -0.600434 0.600437 124.318";scale = "4.26127 0.166666 14.44";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.765 -429.192 200.75";rotation = "0.0452357 0.706384 0.706382 185.18";scale = "2.00463 0.166666 41.866";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "792.298 -425.269 301";rotation = "0 0 1 97.3289";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "812.62 -424.926 290.44";rotation = "0.0639077 0.997956 1.265e-06 180";scale = "4.28328 0.166666 178.88";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "803.65 -415.871 290.94";rotation = "0 0 -1 83.1448";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "801.845 -415.693 308.75";rotation = "-0.528163 0.600439 0.60043 124.318";scale = "5.23298 0.166667 15.9926";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.925 -433.812 188.372";rotation = "-0.660468 0.750855 9.51768e-07 180";scale = "2.01372 0.166666 18.252";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "817.254 -425.983 196.622";rotation = "0.528155 -0.600438 0.600439 124.317";scale = "5.66302 0.166666 24.7458";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "833.584 -399.928 200.75";rotation = "0.55522 -0.0355556 0.830943 186.092";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.638 -422.061 198.686";rotation = "-0.626532 -0.551116 -0.551116 115.864";scale = "0.125 1.20934 17.0472";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.748 -428.927 251";rotation = "0.0637803 0.995924 0.0637795 90.234";scale = "25 0.166666 40.8676";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "826.129 -435.001 114.386";rotation = "-0.995924 0.0637863 0.0637749 90.2346";scale = "1.20937 0.166666 7.02738";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "821.253 -433.218 188.622";rotation = "0.528156 -0.600436 0.60044 124.318";scale = "1.44253 0.166666 0.1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "27.1991";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";powercontrol = "1";prevscale = "1.44253 0.166666 0.1664";state = "opened";timeout = ".5";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "AudioDep";position = "826.45 -422.428 198.939";rotation = "0.995924 -0.0637772 0.0637762 90.2334";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";powerFreq = "27.1991";pLogic = "1";pLogic = "1";lLogic = "1";audioBlock = "564";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "802.459 -423.895 283.802";rotation = "-0.0452363 -0.706381 0.706385 185.181";scale = "0.825235 0.166666 4.81622";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.962 -429.207 201.25";rotation = "-0.551115 0.626534 -0.551114 115.863";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.701 -407.698 201";rotation = "0 0 1 187.329";scale = "0.125 0.166666 200";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "809.69 -413.286 290.69";rotation = "0.626532 0.551113 -0.55112 115.863";scale = "3.54012 0.166666 7.7048";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "820.259 -432.635 201.49";rotation = "0 0 1 97.3289";scale = "0.52 0.519998 40.02";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine3";position = "821.973 -409.567 255.271";rotation = "5.66614e-06 1.52804e-08 -1 82.6715";scale = "0.123266 0.0610384 0.0338659";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.242 -428.991 201.25";rotation = "0.706384 -0.0452393 0.706382 185.18";scale = "0.125 0.166666 8";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMedalSeal";position = "825.069 -428.267 196.972";rotation = "1 0 0 0";scale = "1 1 0.2";team = "2";ownerGUID = "2687806";powerFreq = "6.77899";nametoset = "Summit Seal";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "809.403 -406.111 300.75";rotation = "-0.551115 0.626534 -0.551114 115.863";scale = "0.125 4.18117 4.4886";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "829.232 -422.363 196.372";rotation = "-2.50526e-11 1 4.20655e-06 180.001";scale = "1 1 1";team = "2";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.449 -431.692 183.846";rotation = "-0.419627 -0.854117 -0.30724 95.9821";scale = "3.3775 0.166666 14.9661";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "827.829 -438.761 200.75";rotation = "0.600437 0.528163 0.600433 124.317";scale = "0.125 0.166666 77.997";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "799.982 -426.257 304.75";rotation = "-0.706381 0.0452417 0.706384 185.181";scale = "0.228475 0.262745 0.455123";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "718.618 -566.782 102.414";rotation = "0.0452357 0.706384 0.706382 185.18";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";frequency = "10";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "718.618 -566.782 102.414";rotation = "-0.0452345 -0.706381 0.706385 185.18";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "824.67 -429.694 201.49";rotation = "0 0 1 7.32841";scale = "0.52 0.519998 40.02";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "824.472 -399.733 304.75";rotation = "0.063781 0.995923 0.0637845 90.2339";scale = "0.228475 0.262745 1.23871";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.491 -403.515 300.75";rotation = "0.626532 0.551114 -0.551118 115.863";scale = "1.99982 0.166666 42.8152";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "792.546 -425.301 308.75";rotation = "0.706384 -0.0452401 0.706382 185.181";scale = "0.125 0.166666 14.9963";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "804.232 -397.129 308.75";rotation = "0.706384 -0.0452393 0.706382 185.18";scale = "0.125 0.166666 40.8154";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.025 -428.711 251";rotation = "0.600438 0.52816 0.600434 124.318";scale = "25 0.166666 41.866";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "828.298 -439.074 101";rotation = "0 0 1 187.328";scale = "0.125 0.166666 200";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.749 -437.134 188.622";rotation = "0.528156 -0.600436 0.60044 124.318";scale = "0.355675 0.166666 14.9664";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "808.798 -420.299 290.93";rotation = "-0.660473 0.750849 1.19537e-06 180";scale = "3.85941 3.87144 0.48";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.77899";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "AudioDep";position = "823.956 -438.263 192.401";rotation = "0.995924 -0.0637748 0.0637751 90.2339";scale = "0.4 0.4 0.1";team = "2";ownerGUID = "2687806";powerFreq = "27.1991";pLogic = "1";pLogic = "1";lLogic = "1";audioBlock = "564";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "800.231 -426.289 301";rotation = "0 0 1 187.329";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "912.26 -258.555 100";rotation = "0 0 1 187.328";scale = "34.999 6.66667 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.753 -399.515 300.75";rotation = "0.716977 0.630672 0.296979 150.719";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "815.575 -409.628 291.448";rotation = "0.0452429 0.706384 -0.706381 174.82";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "800.2 -426.537 304.75";rotation = "0.600438 0.528155 -0.600438 235.683";scale = "0.228475 0.262745 0.455257";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "822.788 -408.963 300.75";rotation = "-0.630672 0.716977 0.296979 150.719";scale = "0.560883 0.166666 28.247";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.734";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "815.734 -409.648 296.499";rotation = "0.0452429 0.706384 -0.706381 174.82";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "842.747 -401.106 204.577";rotation = "0.38257 -0.0245004 0.923602 186.769";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "814.477 -424.911 290.69";rotation = "0.0452379 0.706384 0.706382 185.18";scale = "3.11547 0.166666 35.9982";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "799.244 -433.976 308.75";rotation = "0.600436 0.528161 0.600436 124.318";scale = "0.125 0.166666 15.0007";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "799.178 -434.472 300.75";rotation = "-0.637059 0.724241 -0.263878 146.603";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.626 -425.954 290.69";rotation = "0.626532 0.551114 -0.551118 115.863";scale = "0.125 0.166666 39.8678";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "799.212 -434.224 301";rotation = "0 0 1 7.32862";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.994 -428.959 201";rotation = "0 0 1 187.329";scale = "0.125 0.166666 200";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "821.446 -419.343 300.75";rotation = "-0.528161 0.600436 0.600436 124.318";scale = "4.67193 0.166666 39.8092";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "818.68 -409.775 290.94";rotation = "0 0 1 187.329";scale = "2.24684 0.166666 19.12";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "852.175 -412.151 91";rotation = "0 0 1 187.328";scale = "5 19.9997 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "812.344 -425.165 287.246";rotation = "-0.182787 -0.686284 0.703991 169.288";scale = "4.49967 0.166666 4.8195";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "827.402 -437.31 201";rotation = "0 0 1 187.114";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";nametoset = " SE Tower Pinical";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "818.321 -411.77 290.94";rotation = "0 0 -1 81.3485";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "818.873 -410.052 296.33";rotation = "0.0452429 0.706384 -0.706381 174.82";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "837.582 -437.009 100";rotation = "0 0 1 7.67453";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";isSwitchedOff = "1";nametoset = "SE Tower Exterior (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "801.845 -415.693 308.75";rotation = "-0.62654 -0.551109 -0.551113 115.863";scale = "9.23318 0.166667 40.8154";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.721 -399.764 301";rotation = "0 0 1 187.329";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "819.544 -416.725 290.94";rotation = "0 0 1 96.9376";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "821.568 -410.398 296.046";rotation = "0.0452429 0.706384 -0.706381 174.82";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "828.266 -439.322 200.75";rotation = "-0.469726 0.534001 -0.702993 102.738";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "823.733 -407.45 304.75";rotation = "0.551112 -0.626535 -0.551116 115.863";scale = "0.228475 0.262745 0.455199";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.532 -428.647 290.69";rotation = "0.600438 0.52816 0.600434 124.318";scale = "0.125 0.166666 41.866";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "824.689 -400.012 308.75";rotation = "-0.551115 0.626534 -0.551114 115.863";scale = "0.125 0.166666 14.9987";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "799.442 -430.473 300.75";rotation = "-0.52816 0.600436 -0.600436 235.682";scale = "2.0001 0.166666 42.864";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.701 -407.698 301";rotation = "0 0 1 187.329";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "828.546 -439.106 200.75";rotation = "0.55522 -0.0355556 0.830943 186.092";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "821.286 -421.585 292.62";rotation = "-0.626532 -0.551115 -0.551116 115.862";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";frequency = "10";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "821.286 -421.585 292.62";rotation = "0.626538 0.551113 -0.551113 115.864";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "823.173 -407.882 300.75";rotation = "0.0452393 0.706384 -0.706382 174.82";scale = "0.125 0.166666 41.864";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "827.088 -448.485 204.577";rotation = "-0.350916 0.39893 -0.847179 92.1534";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "819.724 -436.862 304.75";rotation = "-0.706381 0.0452454 0.706384 185.181";scale = "0.228475 0.262745 1.24018";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "823.949 -407.731 304.75";rotation = "-0.0637834 -0.995924 0.0637797 90.234";scale = "0.228475 0.262745 0.456235";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.725 -436.863 308.75";rotation = "0.0637812 0.995924 0.0637805 90.2346";scale = "0.125 0.166666 40.8636";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "799.745 -506.235 100";rotation = "0 0 1 187.328";scale = "45.0003 6.66667 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "831.404 -408.689 308.75";rotation = "0.0637798 0.995924 0.0637791 90.234";scale = "0.125 0.166666 15.0329";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "825.166 -429.748 300.75";rotation = "0.995924 -0.0637813 0.0637773 90.2334";scale = "2.00036 0.166666 43.8652";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "831.652 -408.721 301";rotation = "0 0 -1 82.6715";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.994 -428.959 301";rotation = "0 0 1 187.329";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "837.709 -440.284 204.577";rotation = "0.38257 -0.0245004 0.923602 186.769";scale = "0.125 0.166666 20";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "822.085 -418.295 308.75";rotation = "-0.626535 -0.55111 -0.551118 115.863";scale = "5.233 0.166667 16.033";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "820.006 -436.647 304.75";rotation = "0.551112 -0.626535 -0.551116 115.863";scale = "0.228475 0.262745 0.455316";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "831.884 -408.75 300.75";rotation = "0.922267 -0.0590617 0.382014 182.802";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "831.62 -408.97 304.75";rotation = "-0.600435 -0.528157 0.60044 124.318";scale = "0.228475 0.262745 1.27054";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "820.005 -436.647 308.75";rotation = "0.600436 0.528161 0.600436 124.318";scale = "0.125 0.166666 15.0026";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.941 -437.142 300.75";rotation = "-0.637059 0.724241 -0.263878 146.603";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "819.973 -436.895 301";rotation = "0 0 1 7.32862";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "821.242 -428.99 304.75";rotation = "-0.0637834 -0.995924 0.0637797 90.234";scale = "0.228475 0.262745 0.454577";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "831.62 -408.969 308.75";rotation = "-0.551116 0.626534 -0.551114 115.863";scale = "0.125 0.166666 41.864";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "911.214 -333.556 100";rotation = "0 0 1 185.01";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";isSwitchedOff = "1";nametoset = "NE Interior (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "828.67 -429.946 308.75";rotation = "0.0637798 0.995924 0.0637791 90.234";scale = "0.125 0.166666 14.9782";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "828.918 -429.978 301";rotation = "0 0 -1 82.6715";scale = "0.125 0.166666 16";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "829.177 -430.011 300.75";rotation = "0.922267 -0.0590617 0.382014 182.802";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "932.27 -313.915 120";rotation = "0 0 1 5.92123";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";nametoset = "NE Interior";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "944.424 -303.81 100";rotation = "0 0 1 231.124";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = "NE Interior";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "792.09 -565.745 100";rotation = "0 0 1 187.328";scale = "85.0005 6.66667 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "911.685 -419.803 100";rotation = "0 0 1 187.328";scale = "5 73.334 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "972.09 -278.871 100";rotation = "0 0 -1 83.6341";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = "NE Exterior (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "894.06 -484.336 102.947";rotation = "0.750852 0.66047 8.37206e-07 180";scale = "0.125 0.166666 5.894";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "893.645 -487.559 103.197";rotation = "0.995924 -0.0637793 0.0637767 90.234";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "893.613 -487.807 102.947";rotation = "0.997956 -0.0639084 -8.10097e-08 180";scale = "0.125 0.166666 5.894";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "889.189 -501.532 100";rotation = "0 0 1 11.1893";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";isSwitchedOff = "1";nametoset = "SE Interior (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "903.698 -485.827 101.484";rotation = "0.995924 -0.0637751 0.0637773 90.2339";scale = "4.75005 0.997 1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "894.308 -484.367 103.197";rotation = "-0.626532 -0.551118 -0.551114 115.863";scale = "0.125 0.166666 38.0006";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "903.505 -487.315 103.447";rotation = "0.0639068 0.997956 3.72876e-06 180";scale = "4.75005 1.00018 1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "908.23 -478.484 100";rotation = "0 0 1 3.15735";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "1001.85 -260.506 120";rotation = "0 0 1 6.5524";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";nametoset = "NE Exterior";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "903.315 -488.802 101.598";rotation = "0.0452364 0.706384 -0.706381 174.82";scale = "4.75005 1.06567 1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "893.365 -487.775 103.197";rotation = "-0.626531 -0.551119 -0.551114 115.863";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "1004.69 -258.338 100";rotation = "0 0 1 236.513";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = "NE Exterior";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "913.401 -486.823 102.947";rotation = "0.750852 0.66047 8.37206e-07 180";scale = "0.125 0.166666 5.894";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "912.523 -488.543 101.455";rotation = "-0.626529 -0.551118 -0.551118 115.863";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";frequency = "11";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "912.523 -488.543 101.455";rotation = "0.626531 0.551116 -0.551117 115.864";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "912.986 -490.046 103.197";rotation = "0.995924 -0.0637793 0.0637767 90.234";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "913.425 -488.59 101.474";rotation = "0.62653 0.551122 -0.551113 115.863";scale = "0.749883 0.982332 1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "913.81 -488.733 101.56";rotation = "-0.528163 0.600435 0.600434 124.318";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";frequency = "11";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "913.81 -488.733 101.56";rotation = "0.528161 -0.600434 0.600437 124.317";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "912.954 -490.294 102.947";rotation = "0.997956 -0.0639084 -8.10097e-08 180";scale = "0.125 0.166666 5.894";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "905.026 -528.013 120";rotation = "0 0 1 185.548";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";nametoset = "SE Interior";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "972.475 -417.534 100";rotation = "0 0 1 187.328";scale = "5 106.67 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "909.418 -534.664 100";rotation = "0 0 -1 14.799";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = "SE Interior";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "952.597 -495.641 103.652";rotation = "0.0452357 0.706384 -0.706382 174.82";scale = "0.125 0.166666 7";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "952.182 -498.864 103.402";rotation = "-0.660475 0.750848 9.51768e-07 180";scale = "0.125 0.166666 6.804";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "962.11 -498.376 103.902";rotation = "0.063906 0.997956 7.16886e-06 180";scale = "4.76692 0.999809 1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "961.908 -499.863 101.783";rotation = "0.0452344 0.706387 -0.706379 174.82";scale = "4.76215 1.18833 1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "952.43 -498.896 103.652";rotation = "0.528161 -0.600434 0.600437 124.317";scale = "0.125 0.166666 40";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "971.148 -499.55 101.848";rotation = "-0.626528 -0.551116 -0.55112 115.863";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";frequency = "9";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "971.148 -499.55 101.848";rotation = "0.626531 0.551118 -0.551115 115.864";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "972.042 -499.654 101.701";rotation = "0.626528 0.551123 -0.551114 115.863";scale = "0.750133 1.134 1";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "971.622 -501.112 103.652";rotation = "0.995924 -0.0637718 0.0637797 90.2334";scale = "0.125 0.166666 5.99912";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "972.444 -499.667 101.742";rotation = "-0.528163 0.600437 0.600433 124.317";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "5";frequency = "9";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "972.444 -499.667 101.742";rotation = "0.528165 -0.600431 0.600437 124.318";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "971.571 -501.358 103.402";rotation = "0.997956 -0.0639054 -8.10059e-08 180";scale = "0.125 0.166666 6.804";team = "2";ownerGUID = "2687806";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "939.106 -571.015 100";rotation = "0 0 -1 83.1178";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = "SE Exterior (1)";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "958.829 -597.018 120";rotation = "0 0 1 186.992";scale = "1 1 1";team = "2";ownerGUID = "2687806";powerFreq = "1";nametoset = "SE Exterior";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "961.69 -599.217 100";rotation = "0 0 1 59.4512";scale = "1 1 1";team = "2";ownerGUID = "2687806";deployed = "1";powerFreq = "1";nametoset = "SE Exterior";};setTargetSensorGroup(%building.getTarget(),2);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2687806/Buildings/2.cs b/Univ/Data/2687806/Buildings/2.cs new file mode 100644 index 0000000..165f7ad --- /dev/null +++ b/Univ/Data/2687806/Buildings/2.cs @@ -0,0 +1,240 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Arctic_Winter" +// Created in mission "slapmydash" +// Construction v0.70 Development Version 1 + +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-43.491 -372.763 132.883";rotation = "0.000424725 -0.173648 0.984808 179.724";scale = "20.02 10.0201 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-43.4925 -372.438 138.368";rotation = "0.00172842 -0.707105 0.707106 179.802";scale = "20.0198 5.01998 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-63.5101 -372.86 138.834";rotation = "0.999997 0.00244314 0.0004293 200";scale = "20.0197 5.01998 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-73.4905 -372.909 132.883";rotation = "0.000423954 -0.173648 0.984808 179.724";scale = "20.0201 10.0201 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-73.4918 -372.584 138.368";rotation = "0.00172778 -0.707105 0.707106 179.802";scale = "20.02 5.01998 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedPulseSensor";position = "-43.2111 -382.114 128.938";rotation = "0 0 -1 42.7537";scale = "1 1 1";team = "1";ownerGUID = "2687806";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.703 -382.595 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.953 -382.596 130.188";rotation = "-0.00244139 0.999994 -0.00244139 90.0008";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.953 -382.596 133.188";rotation = "-0.00244139 0.999994 -0.00244139 90.0008";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-33.8736 -382.288 132.883";rotation = "-0.173648 -0.000424725 0.984808 179.724";scale = "10.02 20.0202 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-38.5907 -382.311 140.551";rotation = "0.984804 0.00240812 -0.173651 180.049";scale = "5.02 20.0202 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.2027 -382.691 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-63.4433 -382.536 138.368";rotation = "0.00172778 -0.707105 0.707106 179.802";scale = "10.02 5.01998 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.7025 -382.742 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-73.4614 -382.91 138.834";rotation = "0.999997 0.0024426 0.000429673 200";scale = "10.02 5.01998 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-93.5098 -373.007 138.834";rotation = "0.999997 0.00244303 0.000430247 200";scale = "20.0201 5.01998 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.2015 -382.941 130.188";rotation = "0.578288 -0.575472 0.578286 239.838";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.2015 -382.941 133.188";rotation = "0.578288 -0.575472 0.578286 239.838";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.9525 -382.743 130.188";rotation = "-0.00244139 0.999994 -0.00244139 90.0008";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.9525 -382.743 133.188";rotation = "-0.00244139 0.999994 -0.00244139 90.0008";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.7013 -382.992 130.188";rotation = "0.578288 -0.575472 0.578286 239.838";scale = "0.125 0.166666 18.9982";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.7013 -382.992 133.188";rotation = "0.578288 -0.575472 0.578286 239.838";scale = "0.125 0.166666 18.9982";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.6089 -401.845 130.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.7018 -382.845 133.188";rotation = "0.578288 -0.575472 0.578286 239.838";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "-53.4052 -392.393 128.438";rotation = "0 0 -1 0.279765";scale = "5 6.66666 3";team = "1";ownerGUID = "2687806";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.4053 -392.392 132.938";rotation = "8.46361e-06 8.54813e-06 -1 90.2798";scale = "4.75005 6.33333 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.404 -392.692 129.938";rotation = "0 0 -1 0.279765";scale = "0.249977 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.9036 -392.738 130.188";rotation = "0.707107 0.00172636 0.707104 179.802";scale = "0.125 0.166666 17.9996";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.9037 -392.738 133.188";rotation = "0.707107 0.00172637 0.707104 179.802";scale = "0.125 0.166666 17.9998";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedPulseSensor";position = "-93.5943 -382.44 128.938";rotation = "0 0 -1 97.2567";scale = "1 1 1";team = "1";ownerGUID = "2687806";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy(); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-93.6185 -382.578 129.455";rotation = "0.173648 0.000423954 0.984808 179.724";scale = "10.02 20.0202 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.2023 -382.837 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-73.4158 -392.325 129.455";rotation = "-0.999901 -0.00244121 -0.0138561 20.0019";scale = "10.02 10.0201 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.4035 -392.74 129.938";rotation = "0 0 -1 0.279765";scale = "0.249952 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-51.1246 -398.632 125.438";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.1257 -398.401 126.938";rotation = "-0.999994 -0.00244192 -0.00243688 90.0002";scale = "1.87495 0.999999 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.8745 -398.67 125.188";rotation = "0.575467 0.578295 0.578285 239.838";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-53.4165 -398.893 127.071";rotation = "-0.999994 -0.0024394 -0.00243941 90.0002";scale = "0.2 0.2 0.1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "8.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.6527 -392.943 133.188";rotation = "0.578288 -0.575472 0.578286 239.838";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.1243 -398.67 125.438";rotation = "0 0 -1 90.2798";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.6242 -398.673 137.438";rotation = "0.705378 0.708831 8.98508e-07 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "-83.4048 -392.539 128.438";rotation = "0 0 -1 0.279765";scale = "5 6.66666 3";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "-68.3806 -397.466 128.438";rotation = "0 0 -1 0.279765";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.4047 -392.539 133.438";rotation = "0.705378 0.708831 -3.94263e-06 180";scale = "4.75005 6.33343 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.8779 -397.988 133.191";rotation = "0.707107 0.00172637 0.707104 179.802";scale = "0.125 3.33337 18";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "-51.3668 -400.106 127.017";rotation = "-0.575475 -0.578285 0.578287 239.838";scale = "0.454545 0.486143 9.5238";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "9.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-56.8484 -401.924 126.847";rotation = "0.707104 0.00172643 0.707108 179.803";scale = "1.353 0.809591 0.912926";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "9.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-52.9121 -400.338 127.001";rotation = "-0.999994 -0.00243817 -0.00243819 90.0002";scale = "0.2 0.2 0.1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "9.14";switchRadius = "25";nametoset = "Turret Defense Grid";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-60.9119 -400.103 137.938";rotation = "0 0 1 40.3127";scale = "1 1 1";team = "1";ownerGUID = "2687806";powerFreq = "9.14";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.8742 -398.674 133.938";rotation = "-0.00244135 0.999994 -0.00244135 90.0008";scale = "0.25 0.166666 34.0016";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-58.8647 -400.646 127.117";rotation = "0.575476 0.57829 0.578281 239.838";scale = "0.2 0.2 0.1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "3.14";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.1524 -392.989 133.188";rotation = "0.578288 -0.575472 0.578286 239.838";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.8742 -398.674 136.938";rotation = "0.707107 0.00172592 -0.707105 180.198";scale = "0.25 0.166666 34.0016";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-103.034 -382.625 138.835";rotation = "0.984804 0.00240846 0.173651 179.951";scale = "5.02 20.0202 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.8577 -402.096 130.188";rotation = "-0.00244139 0.999994 -0.00244139 90.0008";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.6077 -402.095 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.8577 -402.096 133.188";rotation = "-0.00244139 0.999994 -0.00244139 90.0008";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.0962 -404.42 125.188";rotation = "0.999994 0.00244085 -0.00244533 90.0008";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.8597 -401.669 126.938";rotation = "-0.579226 0.576406 0.576414 119.839";scale = "1.37502 0.999999 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-43.7757 -402.336 132.883";rotation = "-0.173648 -0.000423954 0.984808 179.724";scale = "10.02 10.0201 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.6065 -402.394 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.333337 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "-51.6049 -402.635 129.438";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-48.4927 -402.359 140.55";rotation = "0.984804 0.00240846 -0.173651 180.049";scale = "5.02 10.0201 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "-50.4233 -403.226 128.938";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2687806";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "-53.3529 -403.143 132.56";rotation = "0.00488278 -0.999988 0 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2687806";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-33.4494 -402.306 133.348";rotation = "-0.00244391 0.999994 -0.00244308 90.0002";scale = "5.02 20.0202 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.8553 -402.645 133.188";rotation = "-0.00244139 0.999994 -0.00244138 90.0008";scale = "0.125 0.166666 18.9996";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-58.8544 -402.753 126.948";rotation = "0.575476 0.57829 0.578281 239.838";scale = "0.2 0.2 0.1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "3.14";isSwitchedOff = "1";switchRadius = "200";nametoset = "Deflector Shields";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-77.1244 -398.759 137.438";rotation = "-0.00244136 0.999997 1.26759e-06 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.6049 -402.692 128.938";rotation = "0.999997 0.00244144 3.09474e-09 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.605 -402.693 129.938";rotation = "0 0 -1 90.2798";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.2011 -383.087 130.188";rotation = "0.578288 -0.575472 0.578286 239.838";scale = "0.125 0.166666 37.9984";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.6063 -402.443 133.188";rotation = "0.57829 -0.575471 0.578285 239.838";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.2011 -383.087 133.188";rotation = "0.578288 -0.575472 0.578286 239.838";scale = "0.125 0.166666 37.9984";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.6011 -403.399 134.438";rotation = "0 0 1 89.72";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.598 -404.138 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.829337 6";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-59.8511 -403.4 134.688";rotation = "-0.579232 0.576408 0.576406 119.839";scale = "0.2 0.2 0.1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "3.14";switchRadius = "200";nametoset = "Deflector Shields";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.9521 -402.954 131.439";rotation = "-0.00172811 0.707104 0.707107 179.803";scale = "1.04916 1.001 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-76.0188 -399.873 137.938";rotation = "0 0 -1 45.0895";scale = "1 1 1";team = "1";ownerGUID = "2687806";powerFreq = "9.14";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.3561 -402.465 129.188";rotation = "-0.576407 -0.57923 0.576409 119.839";scale = "0.125 3.33333 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.3561 -402.465 127.188";rotation = "0.578288 -0.575473 0.578285 239.838";scale = "0.875 3.00003 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.3016 -402.715 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 6.00598";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.3549 -402.74 129.688";rotation = "0.575472 0.578288 0.578286 239.838";scale = "0.125 0.166666 18.9998";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.85 -403.7 127.188";rotation = "0.579232 -0.576409 0.576406 119.838";scale = "0.378507 1.16667 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.8551 -402.693 125.188";rotation = "0.707107 0.00172528 -0.707105 180.198";scale = "0.125 0.166666 19";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-74.8192 -401.054 133.438";rotation = "0 0 -1 46.6648";scale = "1 1 1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "6.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "-53.3431 -405.131 132.571";rotation = "0.575471 0.578288 0.578288 239.838";scale = "1 1 1";team = "1";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.7045 -402.478 131.439";rotation = "-0.999994 -0.00244149 -0.00243645 90.0002";scale = "1.07584 1.001 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.095 -404.68 125.438";rotation = "0 0 -1 0.279765";scale = "1.12504 0.166666 6";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.345 -404.691 125.188";rotation = "0.579232 -0.576408 0.576406 119.839";scale = "0.125 0.166666 9.0001";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.595 -404.706 125.438";rotation = "0 0 -1 90.2798";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.1049 -402.738 125.438";rotation = "0 0 1 179.72";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.1049 -402.739 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.3549 -402.74 133.188";rotation = "0.707107 0.00172641 0.707104 179.802";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-51.3313 -407.383 127.188";rotation = "0.575471 0.578289 0.578287 239.839";scale = "4.25005 1.16667 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-52.3316 -407.387 128.938";rotation = "-0.00243872 0.999997 -1.02723e-07 180";scale = "0.500155 3.33303 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-52.3564 -402.389 129.188";rotation = "0.578288 -0.575474 0.578285 239.838";scale = "0.125 0.66684 19.9982";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.5599 -411.894 133.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 18.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-82.8548 -402.786 133.188";rotation = "0.707107 0.00172636 0.707104 179.802";scale = "0.125 0.166666 19";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-37.7014 -407.225 130.638";rotation = "0.575472 0.578288 0.578287 239.838";scale = "1 1 1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "6.14";nametoset = "To Outside";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-37.7014 -407.225 130.638";rotation = "-0.575471 -0.578286 0.578289 239.838";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-37.0514 -407.222 130.138";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.0815 -407.4 124.938";rotation = "9.2049e-06 -1.4902e-06 1 89.72";scale = "4.25005 2.49999 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-36.1014 -407.219 130.638";rotation = "-0.57923 0.57641 0.576406 119.839";scale = "1 1 1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "6.14";nametoset = "To Base";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-36.1014 -407.219 130.638";rotation = "0.579229 -0.576406 0.576412 119.839";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "-58.3318 -407.417 128.438";rotation = "0 0 -1 0.279765";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "-58.829 -409.929 125.428";rotation = "-0.0024401 0.999994 -0.00243818 90.0008";scale = "3.02 5.02005 0.48";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.854 -402.919 133.191";rotation = "0.578289 -0.575471 0.578286 239.838";scale = "0.125 3.33337 17.9982";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.623 -398.923 133.938";rotation = "0.57829 -0.57547 0.578286 239.838";scale = "0.25 0.166666 33.9964";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.0693 -409.93 125.188";rotation = "0.999994 0.00243383 -0.00244671 90.0002";scale = "1.12509 0.166666 10.0001";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.54 -415.922 136.938";rotation = "-0.578287 0.575469 0.57829 239.838";scale = "0.25 0.166666 33.9984";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.5598 -411.942 129.688";rotation = "-0.00172612 0.707107 0.707104 179.802";scale = "0.125 0.166666 18.9982";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-64.2324 -407.326 130.938";rotation = "0.575471 0.578289 0.578286 239.838";scale = "1 1 1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "8.14";nametoset = "Power Station";frequency = "10";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-64.2324 -407.326 130.938";rotation = "-0.575471 -0.578285 0.57829 239.838";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.8318 -407.443 129.188";rotation = "0.00244291 -0.999994 -0.00244468 90.0002";scale = "0.125 3.00003 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-63.5938 -404.955 127.188";rotation = "0.578289 -0.575471 0.578286 239.838";scale = "0.875006 0.166666 9.96216";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "8.14";cankill = "0";canmove = 1;closedscale = "0.875006 0.166666 9.96216";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "3";moving = "open";openedscale = "0.875006 0.166666 0.1";prevscale = "0.875006 0.166666 9.96216";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.5815 -407.443 129.938";rotation = "0 0 -1 90.2798";scale = "2.24977 0.166666 6.00598";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.106 -402.537 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.333337 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-83.5211 -402.529 129.455";rotation = "0.173648 0.000423954 0.984808 179.724";scale = "10.02 10.0201 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "-66.9526 -407.327 128.747";rotation = "-0 -0 1 87.8453";scale = "15 20 24";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.0595 -411.964 125.188";rotation = "-0.578286 0.57547 0.57829 239.838";scale = "0.125 3.16664 18.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "-67.2875 -407.272 137.938";rotation = "0 0 -1 100.669";scale = "0.5 0.5 0.2";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "6.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.3318 -407.466 132.942";rotation = "8.42839e-06 8.51291e-06 -1 90.2798";scale = "2.24977 2.9999 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "8.14";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.2875 -416.464 137.688";rotation = "0.999994 0.00244008 -0.00244364 90.0008";scale = "4.50015 0.166666 35.9984";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "-53.3199 -409.857 132.542";rotation = "0.575471 0.578288 0.578288 239.838";scale = "1 1 1";team = "1";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.6373 -402.986 129.188";rotation = "-0.999994 -0.00244281 -0.00243985 90.0008";scale = "0.125 0.166666 18.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-72.4315 -407.46 127.133";rotation = "-0.579229 0.576409 0.576408 119.839";scale = "1 1 1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "8.14";frequency = "10";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-72.4315 -407.46 127.133";rotation = "0.579228 -0.576408 0.57641 119.839";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.8571 -402.335 130.188";rotation = "0.707107 0.00172637 0.707104 179.802";scale = "0.125 0.166666 19";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.8314 -407.487 127.188";rotation = "-0.0024401 0.999994 -0.00243818 90.0008";scale = "0.875 3.00037 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.8571 -402.335 133.188";rotation = "0.707107 0.00172637 0.707104 179.802";scale = "0.125 0.166666 19";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.0595 -411.988 125.188";rotation = "-0.00172442 0.707107 0.707104 179.802";scale = "0.125 0.166666 18.0022";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-73.3326 -407.247 126.522";rotation = "-0.579229 0.576409 0.576408 119.839";scale = "1 1 1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "3.14";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.5655 -410.751 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.761677 6";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.0573 -412.486 129.438";rotation = "0.999994 0.00244139 -0.00244139 90.0008";scale = "0.125 0.333333 18.9982";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.068 -410.18 125.438";rotation = "0 0 -1 0.279765";scale = "1.12509 0.166666 6";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "-50.5381 -411.083 128.938";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2687806";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.318 -410.191 125.188";rotation = "0.575475 0.578288 0.578283 239.838";scale = "0.125 0.166666 9.0001";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.5683 -410.187 125.438";rotation = "0 0 -1 90.2798";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "-53.3113 -411.607 132.458";rotation = "0.00488278 -0.999988 0 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2687806";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (BeaconObject) () {datablock = "DeployedBeacon";position = "-50.0873 -411.817 128.988";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2687806";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-77.123 -399.009 133.938";rotation = "0.57829 -0.57547 0.578286 239.838";scale = "0.25 0.166666 33.9944";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-77.123 -399.009 136.938";rotation = "-0.576406 -0.579232 0.576408 119.839";scale = "0.25 0.166666 33.9944";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-77.8535 -403.013 133.179";rotation = "0.578288 -0.575472 0.578286 239.838";scale = "0.125 3.33331 17.9962";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "-51.5589 -412.064 129.438";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2687806";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-76.4302 -407.765 135.438";rotation = "-0.579232 0.576408 0.576406 119.839";scale = "1 1 1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "8.14";frequency = "15";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-76.4302 -407.765 135.438";rotation = "0.579229 -0.576407 0.57641 119.838";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "-78.3316 -407.514 128.438";rotation = "0 0 -1 0.279765";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-77.0802 -407.768 134.438";rotation = "0 0 1 89.72";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "8.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.562 -411.421 134.438";rotation = "0 0 1 89.72";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-59.812 -411.422 134.688";rotation = "-0.579232 0.576408 0.576406 119.839";scale = "0.2 0.2 0.1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "9.14";switchRadius = "25";nametoset = "Turret Defense Grid";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.3134 -411.188 127.188";rotation = "0.575469 0.57829 -0.578287 120.161";scale = "0.376247 1.16667 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-43.4003 -412.354 133.348";rotation = "-0.00244302 0.999994 -0.0024437 90.0002";scale = "5.02 10.0201 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.5575 -412.394 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.333337 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.8065 -412.596 130.188";rotation = "-0.00244139 0.999994 -0.00244139 90.0008";scale = "0.125 0.166666 18.9998";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.5565 -412.595 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.8065 -412.596 133.188";rotation = "-0.00244139 0.999994 -0.00244139 90.0008";scale = "0.125 0.166666 18.9998";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.1071 -402.336 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.8087 -412.145 133.188";rotation = "-0.00244139 0.999994 -0.00244138 90.0008";scale = "0.125 0.166666 18.9998";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-33.7272 -412.287 132.883";rotation = "-0.173648 -0.000423954 0.984808 179.724";scale = "10.02 20.0202 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-38.4443 -412.31 140.551";rotation = "0.984804 0.00240846 -0.173651 180.049";scale = "5.02 20.0202 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-92.937 -402.576 138.834";rotation = "0.984804 0.00240846 0.173651 179.951";scale = "5.02 10.0201 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.5585 -412.192 128.938";rotation = "-0.00244136 0.999997 1.26759e-06 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.5585 -412.192 129.938";rotation = "0 0 1 179.72";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.5575 -412.442 133.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.0594 -412.037 130.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 18.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.1035 -403.037 133.188";rotation = "0.578288 -0.575472 0.578286 239.838";scale = "0.125 0.166666 18.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.8034 -413.169 126.938";rotation = "-0.579226 0.576407 0.576413 119.839";scale = "1.37502 0.999999 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-68.2983 -411.565 130.938";rotation = "-0.999994 -0.00244135 -0.00244135 90.0008";scale = "1 1 1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "8.14";nametoset = "Control Room";frequency = "15";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-68.2983 -411.565 130.938";rotation = "0.999994 0.00244137 -0.00244137 89.9996";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.0668 -410.42 125.188";rotation = "-0.999994 -0.00244669 -0.00243383 90.0008";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.3085 -412.191 129.438";rotation = "0.575472 0.578288 -0.578286 120.162";scale = "0.125 0.333333 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.3096 -411.966 127.188";rotation = "0.578288 -0.575473 0.578285 239.838";scale = "0.875 2.99996 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.3085 -412.215 129.938";rotation = "0 0 1 179.72";scale = "2.25008 0.166666 6.008";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-57.673 -414.116 126.892";rotation = "-0.00128734 0.707326 0.706886 179.853";scale = "0.2 0.2 0.1";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "6.14";switchRadius = "200";nametoset = "Emergency Shutdown";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.8085 -412.194 125.188";rotation = "-0.707103 -0.00172639 0.707108 179.802";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "-58.7976 -414.35 126.862";rotation = "0.579228 -0.57641 0.576408 119.88";scale = "0.454545 0.486142 7.61908";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-53.8231 -412.88 126.779";rotation = "-0.00242494 0.999994 -0.00244127 90.0002";scale = "1.353 0.809591 0.912926";team = "1";ownerGUID = "2687806";deployed = "1";powerFreq = "6.14";nametoset = "Primary Power";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.0583 -412.239 125.438";rotation = "0 0 1 179.72";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.0585 -412.236 129.938";rotation = "0 0 -1 90.2798";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.0572 -412.487 133.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-51.0386 -416.132 125.438";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-61.142 -414.738 137.938";rotation = "0 0 1 135.668";scale = "1 1 1";team = "1";ownerGUID = "2687806";powerFreq = "9.14";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.0399 -415.901 126.938";rotation = "-0.999994 -0.00243723 -0.0024322 89.9996";scale = "1.87505 0.999999 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.7885 -416.17 125.188";rotation = "0.57923 -0.576416 0.5764 119.839";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-82.8082 -412.286 133.188";rotation = "0.707107 0.00172636 0.707104 179.802";scale = "0.125 0.166666 18.9996";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.0387 -416.17 125.438";rotation = "0 0 1 89.7206";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.5387 -416.172 137.438";rotation = "0.705378 0.708831 8.98508e-07 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-103.262 -402.646 138.369";rotation = "0.00244302 -0.999994 -0.0024437 90.0002";scale = "5.02 20.0202 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.7888 -416.255 133.938";rotation = "0.707107 0.00172636 0.707104 179.802";scale = "0.25 0.166666 34.0016";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.5111 -421.942 133.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.057 -412.537 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.333337 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.7892 -416.256 136.938";rotation = "0.00244157 -0.999994 -0.00244411 90.0008";scale = "0.25 0.166666 34.001";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.7855 -416.943 133.192";rotation = "-0.00244135 0.999994 -0.00244135 90.0008";scale = "0.125 3.33337 18.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "-68.2829 -417.465 128.438";rotation = "0 0 -1 0.279765";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-76.1546 -415.233 137.938";rotation = "0 0 1 219.038";scale = "1 1 1";team = "1";ownerGUID = "2687806";powerFreq = "9.14";initialBarrel = "PlasmaCannonBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.0108 -421.988 133.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 19.0022";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.8058 -412.835 130.188";rotation = "0.707107 0.00172637 0.707104 179.802";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-77.039 -416.256 137.438";rotation = "0.708832 -0.705377 -8.9413e-07 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.8058 -412.835 133.188";rotation = "0.707107 0.00172637 0.707104 179.802";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-93.472 -412.577 129.455";rotation = "0.173648 0.000423954 0.984808 179.724";scale = "10.02 20.0202 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.0558 -412.836 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.4625 -431.844 130.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 37.9984";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.4625 -431.844 133.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 37.9984";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-93.214 -412.597 138.368";rotation = "0.00244302 -0.999994 -0.0024437 90.0002";scale = "5.02 10.0201 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "-53.2588 -422.392 128.438";rotation = "0 0 -1 0.279765";scale = "5 6.66666 3";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.2588 -422.392 132.938";rotation = "0.00246021 -2.68493e-05 -0.999997 0.250229";scale = "4.75 6.33306 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.26 -422.191 129.938";rotation = "0 0 -1 0.279765";scale = "0.249952 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.7599 -422.193 130.188";rotation = "-0.00244139 0.999994 -0.00244138 90.0008";scale = "0.125 0.166666 17.9996";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.7598 -422.193 133.188";rotation = "-0.00244139 0.999994 -0.00244139 90.0008";scale = "0.125 0.166666 18";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.2595 -422.239 129.938";rotation = "0 0 -1 0.279765";scale = "0.249952 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-102.888 -412.624 138.833";rotation = "0.984804 0.00240846 0.173651 179.951";scale = "5.02 20.0202 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "-83.2583 -422.538 128.438";rotation = "0 0 -1 0.279765";scale = "5 6.66666 3";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.2583 -422.539 132.938";rotation = "3.35379e-06 -5.5968e-06 1 89.72";scale = "4.74983 6.33333 1";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.9623 -431.939 130.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 18.9982";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.9623 -431.939 133.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 18.9982";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.462 -431.99 130.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.462 -431.99 133.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-73.245 -427.353 140.55";rotation = "0.999997 0.0024426 -0.000429673 160";scale = "10.0199 5.01998 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-93.0546 -413.086 130.188";rotation = "0.578288 -0.575472 0.578286 239.838";scale = "0.125 0.166666 37.9984";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.9618 -432.085 133.188";rotation = "0.57641 0.57923 0.576406 119.839";scale = "0.125 0.166666 37.9984";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.4613 -432.094 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.7111 -432.188 130.188";rotation = "0.707107 0.00172637 0.707104 179.802";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.7111 -432.188 133.188";rotation = "0.707107 0.00172637 0.707104 179.802";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-43.1992 -432.508 129.455";rotation = "-0.000423954 0.173648 0.984808 179.724";scale = "20.02 10.0201 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedPulseSensor";position = "-42.898 -432.688 128.938";rotation = "0 0 1 193.826";scale = "1 1 1";team = "1";ownerGUID = "2687806";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy(); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-33.303 -432.305 133.348";rotation = "-0.00244302 0.999994 -0.0024437 90.0002";scale = "5.02 20.0202 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.9611 -432.189 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-63.2004 -432.347 133.348";rotation = "-0.00172778 0.707105 0.707106 179.802";scale = "10.02 5.01998 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-73.2215 -432.07 132.883";rotation = "0.999901 0.00244121 -0.0138561 20.0019";scale = "10.02 10.0201 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.4608 -432.24 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.7108 -432.241 130.188";rotation = "-0.00244139 0.999994 -0.00244139 90.0008";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "6.14";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.7106 -432.334 133.188";rotation = "0.707107 0.00172637 0.707104 179.802";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-63.1795 -437.304 140.55";rotation = "0.999997 0.0024426 -0.000429673 160";scale = "20.003 5.01998 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.9606 -432.335 129.938";rotation = "0 0 -1 0.279765";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedPulseSensor";position = "-93.5684 -432.686 128.938";rotation = "0 0 -1 27.0651";scale = "1 1 1";team = "1";ownerGUID = "2687806";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy(); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-43.152 -442.249 133.348";rotation = "-0.00172778 0.707105 0.707106 179.802";scale = "20.0199 5.01998 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-103.116 -432.645 138.367";rotation = "0.00244302 -0.999994 -0.0024437 90.0002";scale = "5.02 20.0202 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-73.1514 -442.395 133.348";rotation = "-0.00172778 0.707105 0.707106 179.802";scale = "20.02 5.01998 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-93.1961 -437.451 140.55";rotation = "0.999997 0.0024426 -0.000429673 160";scale = "20.0202 5.01998 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "-93.1725 -442.167 132.883";rotation = "0.999901 0.00244121 -0.0138561 20.0019";scale = "20.02 10.021 0.52";team = "1";ownerGUID = "2687806";needsfit = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2687806/Ranks/CnC4/Saved.Rank b/Univ/Data/2687806/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..2d4792d --- /dev/null +++ b/Univ/Data/2687806/Ranks/CnC4/Saved.Rank @@ -0,0 +1,27 @@ +//Ranks File For GUID 2687806 +//Created On 2010-04-06, C&C 4 +$Rank::Name[2687806] = "Arctic_Winter"; +$Rank::Rank[2687806, 1] = "Corporal"; +$Rank::XP[2687806, 1] = 4199; +$Rank::Rank[2687806, 2] = "Initiate"; +$Rank::XP[2687806, 2] = 1813; +$Rank::Rank[2687806, 3] = "Raider"; +$Rank::XP[2687806, 3] = 0; +$CNC::UKills[2687806] = 9; +$CNC::KilledByObj[2687806, ObeliskTurretDeployedBase] = 1; +$CNC::TotalCrawlerKills[2687806] = 3; +$CNC::TotalBuilds[2687806] = 33; +$CNC::BuildingsBuilt[2687806, "PowerPlant"] = 10; +$CNC::BuildingsBuilt[2687806, "Bunker"] = 23; +$CNC::Kills[2687806, 2884678] = 2; +$CNC::KilledByObj[2687806, SkystrikeTurretDeployedBase] = 4; +$CNC::TotalBuildingKills[2687806] = 1; +$CNC::BuildingKills[2687806, "Skystrike"] = 2; +$CNC::Deaths[2687806] = 26; +$CNC::TotalKills[2687806] = 16; +$CNC::Kills[2687806, 2793850] = 1; +$CNC::CrawlerKills[2687806, 2793850] = 1; +$CNC::TotalCrawlerDecoms[2687806] = 2; +$CNC::Kills[2687806, 2886178] = 4; +$CNC::CrawlerKills[2687806, 2886178] = 1; +$CNC::Help[2687806, 1] = 1; \ No newline at end of file diff --git a/Univ/Data/2687806/Ranks/Powers/Saved.Dat b/Univ/Data/2687806/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..bcafac7 --- /dev/null +++ b/Univ/Data/2687806/Ranks/Powers/Saved.Dat @@ -0,0 +1,88 @@ +$PowerSave::Level[2687806, 1] = 56; +$PowerSave::SpendPoints[2687806, 1] = 37; +$PowerSave::EXP[2687806, 1] = 14250; +$PowerSave::TopPlPosition[2687806, 1] = 1; +$PowerSave::Class[2687806, 1] = "Star Lighter"; +$PowerSave::HasPower[2687806, 1, "LightStrike"] = 1; +$PowerSave::Level[2687806, 2] = 100; +$PowerSave::SpendPoints[2687806, 2] = 108; +$PowerSave::EXP[2687806, 2] = 150838; +$PowerSave::TopPlPosition[2687806, 2] = 1; +$PowerSave::Class[2687806, 2] = "Annihilator"; +$PowerSave::HasPower[2687806, 2, "FireBolt"] = 1; +$PowerSave::HasPower[2687806, 2, "EnergyBall1"] = 1; +$PowerSave::HasPower[2687806, 2, "BasicShock"] = 1; +$PowerSave::HasPower[2687806, 2, "FireBall2"] = 1; +$PowerSave::Level[2687806, 3] = 52; +$PowerSave::SpendPoints[2687806, 3] = 31; +$PowerSave::EXP[2687806, 3] = 4000; +$PowerSave::TopPlPosition[2687806, 3] = 1; +$PowerSave::Class[2687806, 3] = "Cryonic Embassador"; +$PowerSave::HasPower[2687806, 3, "ShadowStrike"] = 1; +$PowerSave::HasPower[2687806, 2, "EnergyBall2"] = 1; +$PowerSave::HasPower[2687806, 1, "5SecCamo"] = 1; +$PowerSave::HasPower[2687806, 2, "FireBall3"] = 1; +$PowerSave::HasPower[2687806, 2, "FireBall1"] = 1; +$PowerSave::HasPower[2687806, 2, "EleStrike"] = 1; +$PowerSave::HasPower[2687806, 2, "Lightning"] = 1; +$PowerSave::HasPower[2687806, 2, "EnergyGod"] = 1; +$PowerSave::HasPower[2687806, 2, "SplitFire"] = 1; +$PowerSave::HasPower[2687806, 2, "FireBall4"] = 1; +$PowerSave::Affinity[2687806, 2] = 2; +$PowerSave::HasPower[2687806, 2, "SunRay"] = 1; +$PowerSave::HasPower[2687806, 2, "Crisp"] = 1; +$PowerSave::HasPower[2687806, 2, "EnergyDrainer"] = 1; +$PowerSave::HasPower[2687806, 2, "BurnForce"] = 1; +$PowerSave::HasPower[2687806, 2, "FissureBurst"] = 1; +$PowerSave::HasPower[2687806, 2, "EnergyBoost1"] = 1; +$PowerSave::HasPower[2687806, 2, "Microwave"] = 1; +$PowerSave::HasPower[2687806, 2, "HPBoost1"] = 1; +$PowerSave::HasPower[2687806, 2, "EnergyBoost2"] = 1; +$PowerSave::HasPower[2687806, 1, "Dispell"] = 1; +$PowerSave::HasPower[2687806, 1, "LowHeal"] = 1; +$PowerSave::HasPower[2687806, 1, "BasicShield"] = 1; +$PowerSave::HasPower[2687806, 1, "EnemyRepel"] = 1; +$PowerSave::HasPower[2687806, 1, "Shift"] = 1; +$PowerSave::HasPower[2687806, 1, "BasicExplosion"] = 1; +$PowerSave::HasPower[2687806, 1, "MedHeal"] = 1; +$PowerSave::HasPower[2687806, 1, "10SecCamo"] = 1; +$PowerSave::HasPower[2687806, 1, "Vaporize"] = 1; +$PowerSave::Affinity[2687806, 1] = 1; +$PowerSave::HasPower[2687806, 1, "StarShard"] = 1; +$PowerSave::HasPower[2687806, 1, "RepelShift"] = 1; +$PowerSave::HasPower[2687806, 1, "ToTheHeavens"] = 1; +$PowerSave::HasPower[2687806, 1, "CatalystBurst"] = 1; +$PowerSave::HasPower[2687806, 1, "EnviousDownpour"] = 1; +$PowerSave::HasPower[2687806, 1, "ShardStorm"] = 1; +$PowerSave::HasPower[2687806, 1, "ShiningStar"] = 1; +$PowerSave::HasPower[2687806, 3, "ShadowArtillery"] = 1; +$PowerSave::HasPower[2687806, 3, "Nightmare"] = 1; +$PowerSave::HasPower[2687806, 3, "ShadowBombDrop"] = 1; +$PowerSave::HasPower[2687806, 3, "ShadowStorm"] = 1; +$PowerSave::HasPower[2687806, 3, "ShadowBomb"] = 1; +$PowerSave::Affinity[2687806, 3] = 1; +$PowerSave::HasPower[2687806, 3, "Blizzard"] = 1; +$PowerSave::HasPower[2687806, 3, "Avalanche"] = 1; +$PowerSave::HasPower[2687806, 3, "IceRush"] = 1; +$PowerSave::HasPower[2687806, 3, "IceBomb"] = 1; +$PowerSave::HasPower[2687806, 3, "FrozenTwister"] = 1; +$PowerSave::HasPower[2687806, 2, "HPBoost2"] = 1; +$PowerSave::HasPower[2687806, 2, "HPBoost3"] = 1; +$PowerSave::HasPower[2687806, 2, "EnergyBoost3"] = 1; +$PowerSave::HasPower[2687806, 1, "HPBoost1"] = 1; +$PowerSave::HasPower[2687806, 1, "EnergyBoost1"] = 1; +$PowerSave::HasPower[2687806, 2, "EnergyBoost4"] = 1; +$PowerSave::HasPower[2687806, 2, "HPBoost4"] = 1; +$PowerSave::HasPower[2687806, 3, "CrystalShock"] = 1; +$PowerSave::Level[2687806, 4] = 1; +$PowerSave::SpendPoints[2687806, 4] = 1; +$PowerSave::EXP[2687806, 4] = 0; +$PowerSave::TopPlPosition[2687806, 4] = 1; +$PowerSave::Class[2687806, 4] = "Phantom"; +$PowerSave::HasPower[2687806, 1, "EnergyBoost2"] = 1; +$PowerSave::Level[2687806, 5] = 6; +$PowerSave::SpendPoints[2687806, 5] = 8; +$PowerSave::EXP[2687806, 5] = 194; +$PowerSave::TopPlPosition[2687806, 5] = 1; +$PowerSave::Class[2687806, 5] = "Demon"; +$PowerSave::HasPower[2687806, 5, "FireBolt"] = 1; \ No newline at end of file diff --git a/Univ/Data/2687806/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2687806/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..ee92369 --- /dev/null +++ b/Univ/Data/2687806/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,71 @@ +//Ranks & Settings File For GUID 2687806 / Name: Arctic_Winter +//Created On 2010-11-02, Total Warfare Mod 2 3.4 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2687806) { + + new ScriptObject(CCD_2687806) { + + ZombieKillCount20110702_0_9 = "5"; + ZombieKillCount20110702__5 = "4"; + ZombieKillCount20110705__1 = "14"; + ZombieKillCount20110702__12 = "1"; + totalZombieKillCount20110705 = "21"; + ZombieKillCount20110702_S3RifleImage_15 = "1"; + ZombieKillCount20110702__4 = "8"; + ZombieKillCount20110702_0_12 = "1"; + ZombieKillCount20110702_0_4 = "8"; + expireDate = "20110731"; + ZombieKillCount20110702_PulsePhaserImage_11 = "1"; + ZombieKillCount20110706_0_1 = "1"; + ZombieKillCount20110702_0_5 = "4"; + ZombieKillCount20110702__1 = "3"; + ZombieKillCount20110705_0_1 = "15"; + ZombieKillCount20110702_PulsePhaserImage_1 = "1"; + totalZombieKillCount20110706 = "1"; + ZombieKillCount20110705_PulsePhaserImage_2 = "3"; + ZombieKillCount20110702__9 = "5"; + ZombieKillCount20110702_0_11 = "1"; + ZombieKillCount20110705_MiniColliderCannonImage_1 = "1"; + ZombieKillCount20110705__2 = "3"; + ZombieKillCount20110702_0_15 = "1"; + ZombieKillCount20110706__1 = "1"; + ZombieKillCount20110702_0_3 = "3"; + ZombieKillCount20110702_0_1 = "4"; + ZombieKillCount20110705_0_2 = "6"; + ZombieKillCount20110702__3 = "3"; + totalZombieKillCount20110702 = "27"; + }; + new ScriptObject(ClientStore2687806) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(TWM2Client_2687806) { + + challengeCompleteVard1 = "1"; + hasMedalGamerExcuisite = "1"; + weaponKillsSuperChaingunImage = "6"; + rank = "2 Star General"; + officer = "1"; + hasMedalTheSourceOfAllEvil = "1"; + noMoreEXP9ebf52d7849805989308bb86b0eed48fdf8f2b26 = "0"; + money = "2.23364e+06"; + noMoreEXP37d004e0f3d875d102d73bb0eb6faf2d05c69bdb = "0"; + bossDefeatCountVardison3 = "3"; + noMoreEXP2dbce9985bacac8a47437cb73c0443ee30ce6d06 = "0"; + noMoreEXPbfd3af5ac87c8ba425473a98c935ec3a04b4aa41 = "0"; + xp = "592000"; + millionxp = "0"; + hasMedalHonorsC = "1"; + challengeCompleteVard2 = "1"; + rankNumber = "50"; + xpGain3036b90eb1218d797775c8e553bff2027f8a2da7 = "592000"; + name = "Arctic_Winter"; + noMoreEXP3036b90eb1218d797775c8e553bff2027f8a2da7 = "0"; + gameTime = "6924"; + weaponKillsNuclearImage = "2"; + }; + new ScriptObject(ClientSettings2687806) { + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/1.cs b/Univ/Data/2703588/Buildings/1.cs new file mode 100644 index 0000000..3f755a3 --- /dev/null +++ b/Univ/Data/2703588/Buildings/1.cs @@ -0,0 +1,39 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "Flatland" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "25.046 -13.9264 100.4";rotation = "0.99971 -0.0240988 -3.05474e-08 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";ispersonal = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "StationInventory";position = "32.3034 -11.4721 100.222";rotation = "0 0 1 177.378";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "18.5359 -1.03595 81";rotation = "0 0 1 178.791";scale = "2.5 10 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "32.7246 -10.839 119.5";rotation = "0.645911 0.763412 9.67696e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "28.7446 -10.8228 119.5";rotation = "0 0 1 178.791";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "48.9512 -20.3988 81";rotation = "0 0 1 178.791";scale = "17.5 3.33333 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "25.5144 11.5578 100.4";rotation = "0.710125 -0.704075 -8.92479e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";frequency = "6";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "25.5144 11.5578 100.4";rotation = "-3.07884e-06 0 1 89.5098";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "StationInventory";position = "16.2898 -23.8384 121";rotation = "0 0 1 229.392";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "32.5777 11.4225 100.222";rotation = "0 0 -1 0.469805";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.3038 -25.6307 121.5";rotation = "0.573248 0.58547 0.573246 119.305";scale = "0.25 0.166666 98.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.3091 -25.8807 121";rotation = "0 0 1 178.791";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.2703 23.3585 124";rotation = "-0.57325 -0.585469 0.573245 119.305";scale = "0.25 0.166666 98.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.3038 -25.6308 124.75";rotation = "0.57325 0.585469 0.573245 119.305";scale = "0.125 0.166666 98.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "28.3228 9.1727 119.5";rotation = "0 0 1 178.791";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "28.4719 10.6841 121.4";rotation = "0.994695 -0.102868 -1.30394e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";frequency = "6";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "28.4719 10.6841 121.4";rotation = "-2.45796e-05 5.13867e-12 1 11.8087";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.5439 -24.4202 121.5";rotation = "-0.0105455 0.999889 -0.0105455 90.0065";scale = "0.25 0.166666 138.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.5593 -25.8755 124";rotation = "0.0105436 -0.999889 -0.0105461 90.0065";scale = "0.25 0.166666 137.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.559 -25.8754 124.75";rotation = "0.707089 0.00745742 0.707086 179.146";scale = "0.125 0.166666 138";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "53.528 -0.2978 119.5";rotation = "0 0 1 178.791";scale = "10 10 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "48.1076 19.5924 81";rotation = "0 0 1 178.791";scale = "17.5 3.33333 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "15.5215 21.5614 121";rotation = "0 0 -1 44.0189";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "68.9467 -19.977 100";rotation = "0 0 1 179.214";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.2651 23.6084 121";rotation = "0 0 1 178.791";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5148 23.6137 121.5";rotation = "0.707089 0.00745742 0.707086 179.146";scale = "0.25 0.166666 138.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.4998 25.0689 124";rotation = "0.707089 0.00745658 -0.707086 180.855";scale = "0.25 0.166666 138";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.515 23.6137 124.75";rotation = "0.707089 0.00745742 0.707086 179.146";scale = "0.125 0.166666 138";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "78.523 0.229449 81";rotation = "0 0 1 178.791";scale = "2.5 10 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "81.6221 -22.2842 121";rotation = "0 0 1 129.12";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.7552 24.8245 121.5";rotation = "0.581369 -0.569231 0.581366 239.3";scale = "0.25 0.166666 98.0006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.7937 -24.4148 121";rotation = "0 0 1 178.791";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.788 -24.1649 124";rotation = "-0.581365 0.569234 0.581367 239.3";scale = "0.25 0.166666 98.0006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.755 24.8244 124.75";rotation = "0.581367 -0.569233 0.581366 239.3";scale = "0.125 0.166666 98.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "80.3597 23.0234 121";rotation = "0 0 1 43.6849";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.7497 25.0743 121";rotation = "0 0 1 178.791";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/10.cs b/Univ/Data/2703588/Buildings/10.cs new file mode 100644 index 0000000..1cd65db --- /dev/null +++ b/Univ/Data/2703588/Buildings/10.cs @@ -0,0 +1,210 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "154.577 -16.1915 99.5";rotation = "0 0 -1 91.3014";scale = "9.99998 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.158 2.30366 111";rotation = "0.581673 -0.568609 -0.581671 120.754";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.505 -7.69105 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.77 -24.6895 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.997 -34.6868 111";rotation = "0.581671 -0.568609 0.581673 239.245";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.843 104.458 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 479.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "171.48 54.2105 111";rotation = "0.0113522 -0.999871 -0.0113544 90.0071";scale = "5 33.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.329 6.42092 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.347 5.67107 101.25";rotation = "-0.00803421 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.335 6.17101 101.75";rotation = "-0.00803138 0.707085 0.707083 179.08";scale = "0.125 0.166666 36.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.916 24.6661 102.25";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.324 6.67093 103.144";rotation = "0.572931 0.586092 0.572927 119.251";scale = "0.3225 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.323 6.67083 105.62";rotation = "0.572931 0.586092 0.572927 119.251";scale = "0.25 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.916 24.6661 106.25";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.605 6.47265 105.998";rotation = "0.999936 0.011357 1.4396e-08 180";scale = "1.01326 0.166666 6.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.46 22.6385 105.498";rotation = "-0.0113561 0.999936 1.26751e-06 180";scale = "0.125 1.35969 5.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.495 21.0993 105.748";rotation = "-0.00803014 0.707082 0.707086 179.08";scale = "0.125 0.166666 7.15824";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.91 24.916 101";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.91 24.916 102.5";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.573 20.9192 105.748";rotation = "0.707085 0.00803152 -0.707083 180.92";scale = "0.125 0.166666 6.6457";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.823 20.9249 105.998";rotation = "0.999936 0.011357 1.4396e-08 180";scale = "0.125 0.166666 6.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.72 6.58884 105.998";rotation = "0.999936 0.011357 1.4396e-08 180";scale = "0.125 0.166666 6.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "254.325 -3.92316 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 119.997";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.097 5.86975 101.25";rotation = "-0.586094 0.572929 0.572927 119.251";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.085 6.36961 101.75";rotation = "0.568609 0.581673 -0.581671 120.754";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.073 6.86946 102.25";rotation = "0.568609 0.581673 -0.581671 120.754";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.014 -34.597 100.75";rotation = "-0.00803361 0.707089 0.707079 179.08";scale = "5.00002 0.166666 39.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.651 25.3874 100.75";rotation = "0.00803349 -0.707078 0.70709 179.08";scale = "4.9998 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.358 16.3557 102.25";rotation = "-0.0113571 0.999871 -0.0113571 90.0077";scale = "0.125 6.16667 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.375 15.4241 106.248";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 6.1666 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "174.887 -95.7505 111";rotation = "0.707078 0.00803066 0.70709 179.079";scale = "5 40 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.152 22.4102 102.5";rotation = "0 0 1 178.699";scale = "0.1875 0.25 1.8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.234 22.3903 103.4";rotation = "0 0 1 178.699";scale = "0.25 0.333333 0.2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.969 6.5945 103.137";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.3185 0.166666 23.212";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.969 6.5945 105.44";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.2785 0.166666 23.212";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.154 25.3533 101.504";rotation = "0.707085 0.00803194 -0.707083 180.92";scale = "0.252 0.166666 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.154 25.3533 104.5";rotation = "-0.0113571 0.999871 -0.0113571 90.0077";scale = "1 0.166666 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.073 20.9306 103.014";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.257 0.166666 30.3538";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.073 20.9306 105.374";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.3115 0.166666 30.3538";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.823 6.86378 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.41 25.1091 101.25";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.41 25.1091 101.75";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 37";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.817 7.11372 102.25";rotation = "-0.00803138 0.707085 0.707083 179.08";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.409 25.1091 104.5";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "1 0.166666 36";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.404 25.359 101";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.404 25.359 102";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.788 -13.4149 100.75";rotation = "-0.00803254 0.707082 0.707086 179.08";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.788 -13.415 101.25";rotation = "-0.00803025 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.276 -12.9038 101.75";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.287 -13.4036 108.25";rotation = "-0.00802672 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.764 -12.3926 102.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "274.773 -23.4636 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.775 -12.8923 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "273.864 16.526 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.888 4.11447 107";rotation = "0.58167 -0.568613 0.581669 239.246";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.258 -12.1312 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.883 4.36438 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.478 -4.98012 102.838";rotation = "-0.548469 0.585082 0.597378 236.298";scale = "0.25017 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.865 -3.71194 103";rotation = "0.19509 0.00221463 0.980783 178.724";scale = "0.375 0.833333 2.5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "295.676 -62.9994 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 199.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "292.951 56.9697 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.032 -13.1594 101.75";rotation = "0.568609 0.581673 0.581671 239.245";scale = "0.125 0.166666 37.0016";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "264.127 4.80166 102.75";rotation = "-0.00802672 0.707085 -0.707083 180.92";scale = "4.25085 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.04 -13.2276 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.544 -13.6706 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.597 6.2672 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.52 -12.6482 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "274.32 -3.46904 108.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "5 0.166666 40.0084";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.125 4.84727 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.507 -11.7622 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.613 5.33574 101.75";rotation = "0.586094 -0.57293 0.572928 119.251";scale = "0.125 0.166666 38.0018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.101 5.82426 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 40.0022";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.019 -12.2507 107.75";rotation = "-0.58609 0.572931 0.572929 119.252";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.132 4.73336 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.531 -12.7392 108.25";rotation = "-0.0113562 0.999871 -0.0113562 90.0077";scale = "0.125 0.166666 36.0074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.62 5.24461 107.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.108 5.75584 108.25";rotation = "-0.0113509 0.999871 -0.0113509 90.0076";scale = "0.125 0.166666 36.0072";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.751 -11.5066 107";rotation = "0.572933 0.586088 0.57293 119.252";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.757 -11.7565 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.382 4.73907 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.877 5.0005 102.25";rotation = "0.581672 -0.568611 0.581669 239.246";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.273 -12.4949 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.364 5.51172 101.75";rotation = "-0.00803025 0.707085 -0.707083 180.92";scale = "0.125 0.166666 36.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.785 -12.9834 108.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.296 -13.4719 100.75";rotation = "-0.00803102 0.707085 0.707083 179.08";scale = "0.125 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.853 6.02297 101.25";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.125 0.166666 38.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "231.863 104.093 111";rotation = "0.572928 0.58609 0.572933 119.251";scale = "5 40 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "283.181 46.7453 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "332.034 97.8665 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "282.272 86.7347 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "285.905 -73.2241 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "337.028 -122.077 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "315.217 -42.55 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "313.4 37.4293 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "322.264 87.6415 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 399.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.323 106.216 115.582";rotation = "0.999936 0.0113593 1.4399e-08 180";scale = "0.250073 0.500137 4.074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.549 107.222 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.706 111.344 112.073";rotation = "0.586092 -0.57293 0.572929 119.251";scale = "0.749942 0.166667 5.63542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.483 113.158 110.911";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.941 5.63548";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.767 111.664 111.823";rotation = "0.699031 0.715092 9.06443e-07 180";scale = "0.87473 0.166666 4.646";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.807 109.915 112.073";rotation = "-0.0080311 0.707085 0.707083 179.08";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.112 126.467 113.5";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "2 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "300.04 110.76 111.75";rotation = "-0.586092 0.572928 0.572931 119.251";scale = "0.375107 0.166666 7.99408";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.018 111.67 111.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "301.81 107.184 107.273";rotation = "-0.572932 -0.586092 0.572927 119.251";scale = "3.1365 6.66707 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.007 112.17 110.75";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "277.692 -151.924 110.998";rotation = "-0.572939 -0.586092 0.572919 119.251";scale = "5 66.666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.995 112.67 110.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.824 106.659 118.291";rotation = "0.707085 0.00803308 -0.707083 180.92";scale = "1.3545 0.499453 40.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.984 113.169 109.75";rotation = "0.568608 0.581675 0.581669 239.246";scale = "0.125 0.166666 8.00002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 111.523";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "1.01175 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 116.291";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.35425 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 117.25";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.762 109.093 112.073";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.789537 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.106 126.717 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "305.518 107.265 117.342";rotation = "0.999871 0.0113564 -0.0113565 90.0071";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "302.075 117.191 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.541 107.7 117.25";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 6.49967 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.044 107.665 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "309.934 112.482 109.5";rotation = "0 0 1 86.2313";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.333 106.217 111";rotation = "0.715096 -0.699026 -8.86079e-07 180";scale = "0.125 1.66444 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.322 106.717 101";rotation = "0 0 1 88.6979";scale = "0.125 1.6641 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.31 107.217 101";rotation = "0 0 1 88.6979";scale = "0.125 1.66376 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.956 111.541 109.5";rotation = "0 0 -1 91.3014";scale = "1.81372 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.356 126.723 109.75";rotation = "0.707085 0.00803102 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.356 126.723 110.193";rotation = "0.707085 0.00803102 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.35 127.154 114.504";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "1.248 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.351 127.154 117.25";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "316.807 107.523 116";rotation = "-0.57293 -0.586094 0.572927 119.251";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.117 115.49 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.500133 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.815 106.774 108.568";rotation = "0.707085 0.00803745 0.707083 179.08";scale = "1.2165 0.50012 7.00384";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "316.805 107.274 103.568";rotation = "0.707085 0.00803632 0.707083 179.08";scale = "1.28376 0.166666 7.00384";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";cankill = "1";canmove = 1;closedscale = "1.28376 0.166666 7.00384";hasslided = "0";isdoor = "1";issliding = "0";moving = "open";openedscale = "1.28376 0.166666 0.1";prevscale = "1.28376 0.166666 7.00384";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.361 115.723 109.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.786 119.045 115.639";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.681 0.166666 7.756";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.626 115.729 107.43";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.608 115.729 108.27";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.673 115.73 106.716";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.793 107.774 100.75";rotation = "0.586094 -0.572929 0.572927 119.251";scale = "0.125 0.166666 7.00178";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.82 115.733 106.033";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.891 115.735 105.184";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.013 115.738 104.467";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.089 115.739 103.759";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.135 115.74 103.098";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.308 115.744 102.541";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.364 115.746 101.987";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.583 115.751 101.509";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "309.711 122.285 109.5";rotation = "0 0 1 89.115";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.689 115.753 100.819";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.861 115.757 100.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.047 118.442 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.502627 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "321.07 106.871 111";rotation = "0.715096 -0.699026 -8.86079e-07 180";scale = "0.375098 0.501797 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.374 115.291 100.25";rotation = "0.999871 0.0113551 -0.0113599 90.0071";scale = "0.625162 0.166666 6.9057";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.294 118.812 100.25";rotation = "-0.999871 -0.0113599 -0.0113552 90.0077";scale = "0.874985 0.166666 22.5018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.696 122.978 109.5";rotation = "0 0 -1 91.3014";scale = "1.96677 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "314.325 122.405 115.047";rotation = "-0.0819694 -0.6924 0.716843 189.701";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.801 86.4127 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.601 127.16 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "314.689 123.039 100";rotation = "0 0 1 33.8745";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "316.594 124.167 102";rotation = "0 0 1 132.232";scale = "0.125 0.125 0.125";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.799 86.6628 111.5";rotation = "0.57554 0.580958 0.575536 119.69";scale = "1 0.166666 21.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "317.107 124.09 102";rotation = "0 0 1 77.3115";scale = "0.125 0.125 0.125";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "336.782 88.4313 109.5";rotation = "0 0 1 222.622";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "317.142 124.216 100";rotation = "0 0 1 8.10927";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "324.697 110.6 100";rotation = "0 0 -1 2.85806";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.879 114.237 100";rotation = "0 0 -1 79.6606";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.914 114.267 102";rotation = "0 0 1 99.4168";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "317.834 123.932 102";rotation = "0 0 1 129.919";scale = "0.125 0.125 0.125";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.218 117.516 100";rotation = "0 0 -1 104.231";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "320.047 123.011 100";rotation = "0 0 1 25.0779";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.587 117.915 102";rotation = "0 0 1 76.5265";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.693 97.9121 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.051 86.5181 111.5";rotation = "-0.00468677 0.999978 -0.00468676 90.0013";scale = "1 0.166666 22.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "336.712 95.931 109.5";rotation = "0 0 -1 38.8259";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.446 120.274 100";rotation = "0 0 1 70.825";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.477 120.721 101.03";rotation = "0 0 1 71.4238";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.635 120.861 102.06";rotation = "0 0 1 74.28";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "321.264 121.539 100";rotation = "0 0 -1 11.8837";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.846 121.011 103.09";rotation = "0 0 -1 112.273";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "336.72 97.931 109.5";rotation = "0 0 1 89.4628";scale = "0.125 1.18472 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "340.497 92.2163 99.5";rotation = "0 0 -1 90.5371";scale = "3 4 20";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "345.995 92.5181 113.25";rotation = "-0.00468677 0.999978 -0.00468676 90.0013";scale = "0.125 3.83337 22.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.301 86.5205 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "336.802 107.979 111";rotation = "-0.572927 -0.586097 0.572927 119.251";scale = "5 9.9999 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.28 88.76 109.5";rotation = "0 0 1 179.464";scale = "0.125 1.32623 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "340.216 98.1977 109.25";rotation = "-0.00331448 0.707104 0.707102 179.621";scale = "1.11036 0.166666 16.7339";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.195 97.77 113.25";rotation = "0.579147 -0.573743 0.579144 239.689";scale = "0.125 0.166666 22";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.513 90.5105 109.5";rotation = "0.999989 0.0046862 5.94018e-09 180";scale = "0.500022 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "357.464 12.0547 100";rotation = "0 0 1 186.801";scale = "10 10 10";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.761 90.7533 109.25";rotation = "-0.579145 0.573741 0.579148 239.689";scale = "0.125 0.166666 5.50324";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.937 90.7551 107.84";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "343.94 97.999 109.5";rotation = "0 0 1 89.4628";scale = "0.125 1.33506 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.918 90.7549 108.516";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5034";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.985 90.7556 106.956";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.001 93.0074 106.134";rotation = "-0.575539 -0.580957 0.575538 119.691";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.147 93.0088 105.21";rotation = "-0.575539 -0.580957 0.575538 119.691";scale = "0.125 0.166666 4.50318";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.355 90.759 104.486";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50338";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.587 90.7612 103.524";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.763 90.7629 102.721";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50318";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.932 90.7645 101.975";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50318";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.218 95.3855 109.5";rotation = "0 0 1 179.464";scale = "0.125 1.5899 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "348.133 90.7663 101.035";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5034";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "348.261 90.7675 100.25";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50338";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.193 98.02 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "373.207 -19.719 110.999";rotation = "0.707078 0.00802819 0.70709 179.08";scale = "5 86.6663 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "350.292 108.293 111";rotation = "0.572924 0.586104 0.572923 119.252";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/11.cs b/Univ/Data/2703588/Buildings/11.cs new file mode 100644 index 0000000..4ca39b4 --- /dev/null +++ b/Univ/Data/2703588/Buildings/11.cs @@ -0,0 +1,54 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "Katabatic" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.646 -306.755 82.5861";rotation = "-0.586869 0.586872 -0.557822 238.307";scale = "0.125 0.166666 4.99844";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.396 -299.005 82.5988";rotation = "-0.999357 -0.0253573 0.0253622 90.0369";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "291.909 -306.755 82.8739";rotation = "0.0253671 -4.0887e-07 0.999678 180.001";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.312 -306.755 85.8573";rotation = "0.724818 -7.95496e-06 0.688941 180";scale = "1.49999 0.166666 7.00102";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.646 -302.755 82.5864";rotation = "-0.586869 0.586872 -0.557822 238.307";scale = "1.875 0.166666 4.99844";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.146 -306.755 82.6115";rotation = "-0.567333 0.567337 0.596877 118.336";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.392 -299.005 82.4467";rotation = "-0.999357 -0.0253573 0.0253622 90.0369";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "288.151 -306.505 82.8145";rotation = "0.0179397 0.706994 0.706992 177.945";scale = "2.00007 0.166666 14";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.904 -306.755 82.671";rotation = "-5.99399e-05 -1 5.49937e-05 2.90721";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "284.82 -306.755 86.2375";rotation = "0.724818 -7.95496e-06 0.688941 180";scale = "1.49997 0.166666 14";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "284.961 -303.005 88.9841";rotation = "-5.75431e-06 -1 1.06745e-05 92.908";scale = "0.125 2.33333 36.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "291.909 -299.255 82.8739";rotation = "0.0253671 -4.0887e-07 0.999678 180.001";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.642 -306.755 82.434";rotation = "-0.586869 0.586872 -0.557822 238.307";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.146 -299.255 82.6115";rotation = "-0.567333 0.567337 0.596877 118.336";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "284.718 -299.255 84.2051";rotation = "0.724818 -7.95496e-06 0.688941 180";scale = "0.125 0.166666 13.9981";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "299.637 -306.505 82.231";rotation = "0.999357 -0.0253613 -0.0253592 90.0363";scale = "2.00007 0.166666 14";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "303.298 -306.755 85.2995";rotation = "-1.2878e-07 1 2.99243e-06 87.093";scale = "1.50003 0.166666 14.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.904 -299.255 82.671";rotation = "-5.99399e-05 -1 5.49937e-05 2.90721";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "284.419 -306.755 83.2542";rotation = "0.0253671 -4.0887e-07 0.999678 180.001";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.896 -299.255 87.4402";rotation = "-1.2878e-07 1 2.99243e-06 87.093";scale = "0.368742 0.166666 7.00102";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "284.572 -306.505 86.2505";rotation = "0.596883 0.567328 0.567336 118.336";scale = "1.49999 0.166666 14";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.946 -299.255 88.4263";rotation = "-1.2878e-07 1 2.99243e-06 87.093";scale = "0.125 0.166666 7.00102";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "284.904 -299.255 87.8725";rotation = "0.724818 -7.95496e-06 0.688941 180";scale = "0.431462 0.166666 13.9981";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "284.96 -299.255 88.9841";rotation = "0.724818 -7.95496e-06 0.688941 180";scale = "0.125 0.166666 14";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.642 -299.255 82.434";rotation = "-0.586869 0.586872 -0.557822 238.307";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.189 -299.255 83.354";rotation = "0.724818 -2.88705e-06 0.688941 180";scale = "0.348228 0.166666 14";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "284.419 -299.255 83.2542";rotation = "0.0253671 -4.0887e-07 0.999678 180.001";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "293.589 -292.995 76.52";rotation = "-0.332745 -0.376174 0.864739 99.4878";scale = "0.125 1.1665 17.0012";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "303.381 -299.255 86.944";rotation = "-0.567338 0.567332 0.596877 118.336";scale = "0.125 0.568773 14.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "303.437 -299.255 88.0459";rotation = "-1.2878e-07 1 2.99243e-06 87.093";scale = "0.125 0.166666 14.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "303.395 -306.755 82.2906";rotation = "-5.99399e-05 -1 5.49937e-05 2.90721";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "303.547 -299.505 85.2865";rotation = "-0.596879 0.567336 -0.567332 118.336";scale = "1.50004 0.166666 14";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "303.395 -299.255 82.2906";rotation = "-5.99399e-05 -1 5.49937e-05 2.90721";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.796 -178.874 101.633";rotation = "0.707388 -0.706825 -8.95965e-07 180";scale = "0.125 0.166666 11.194";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.197 -178.872 100.365";rotation = "0.707108 0.000281046 -0.707105 180.032";scale = "0.634 0.166666 4.302";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "324.621 -178.867 101.633";rotation = "1 0.000396893 5.03097e-10 180";scale = "3.2125 0.166666 11.194";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.296 -178.861 101.633";rotation = "0.707388 -0.706825 -8.95965e-07 180";scale = "0.125 0.166666 11.194";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.783 -163.124 101.883";rotation = "-1 -0.000400066 -0.000395139 90.0002";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.039 -171.124 101.883";rotation = "0.577657 -0.577199 0.577195 119.974";scale = "4 0.166666 30";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.283 -163.111 101.883";rotation = "-1 -0.000400066 -0.000395139 90.0002";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.783 -162.874 101.633";rotation = "1 0.00039731 5.03627e-10 180";scale = "0.125 0.166666 11.194";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "324.868 -162.867 99.919";rotation = "1 0.00039731 5.03627e-10 180";scale = "3.0825 0.166666 7.766";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.033 -162.873 100.776";rotation = "0.000396042 -1 -0.000398576 90.0002";scale = "0.4285 0.166666 30";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.533 -162.874 101.883";rotation = "0.577657 -0.577198 0.577195 119.974";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.283 -162.861 101.633";rotation = "1 0.00039731 5.03627e-10 180";scale = "0.125 0.166666 11.194";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.254 -274.988 157.914";rotation = "0.820179 -0.561114 0.111611 161.469";scale = "0.87504 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.336 -140.045 96.6865";rotation = "-0.863104 0.357104 0.357111 98.4044";scale = "0.375125 0.166666 16.0019";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.832 -269.13 152.01";rotation = "0.494441 0.722724 -0.482906 143.435";scale = "0.624658 0.166666 22.751";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.336 -140.045 96.6866";rotation = "0.921372 -0.381214 0.0758236 159.23";scale = "0.374938 0.166666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/12.cs b/Univ/Data/2703588/Buildings/12.cs new file mode 100644 index 0000000..167097f --- /dev/null +++ b/Univ/Data/2703588/Buildings/12.cs @@ -0,0 +1,4 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 diff --git a/Univ/Data/2703588/Buildings/14.cs b/Univ/Data/2703588/Buildings/14.cs new file mode 100644 index 0000000..445a430 --- /dev/null +++ b/Univ/Data/2703588/Buildings/14.cs @@ -0,0 +1,57 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "387.676 -1.69268 101.007";rotation = "0 0 -1 86.1047";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "387.676 -1.69268 105.007";rotation = "0 0 -1 86.1047";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "387.693 -1.44335 103.008";rotation = "0.589998 0.551189 0.589994 122.274";scale = "0.9995 0.166666 44.7412";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "389.212 20.8758 105.507";rotation = "-0.563816 0.603512 -0.563813 117.777";scale = "0.25 0.166666 44.7414";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "389.214 20.8755 108.003";rotation = "0.589998 0.551189 -0.589994 237.726";scale = "0.25 0.166666 44.7408";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "387.693 -1.44326 108.757";rotation = "0.589998 0.551189 0.589994 122.274";scale = "0.125 0.166666 44.7412";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "389.807 0.16684 101.007";rotation = "0 0 -1 119.428";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "389.652 6.03362 105.406";rotation = "-0.233535 0.972348 1.23254e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3.5";ispersonal = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "389.23 21.125 101.008";rotation = "0 0 -1 86.1047";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "389.23 21.125 105.008";rotation = "0 0 -1 86.1047";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "390.905 20.7607 101.639";rotation = "0.0240377 0.706904 -0.706901 177.246";scale = "0.35 0.35 0.35";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "393.47 20.5861 104.756";rotation = "0.0240441 0.706904 -0.706901 177.246";scale = "2.00789 0.166666 8.86506";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "403.189 6.49152 104.756";rotation = "-0.551192 0.589998 0.589992 122.274";scale = "4.48457 0.166666 29.3418";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "399.254 20.4428 108.006";rotation = "-0.7069 0.0240377 0.706905 182.754";scale = "0.25 0.166666 19.5953";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "387.925 -1.70966 103.007";rotation = "0.706904 -0.0240404 0.706901 182.754";scale = "1 0.166666 39.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "387.925 -1.70965 105.507";rotation = "0.706904 -0.0240384 0.706901 182.755";scale = "0.25 0.166666 39.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "387.926 -1.70962 108.006";rotation = "-0.0339612 -0.998846 0.0339587 90.0661";scale = "0.25 0.166666 39.004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "407.383 -3.03425 108.756";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "0.125 0.166666 39.006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "398.355 0.901814 102.174";rotation = "0.589997 0.55119 -0.589994 237.726";scale = "0.583752 0.166666 6.128";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3.5";cankill = "1";canmove = 1;closedscale = "0.583752 0.166666 6.128";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";openedscale = "0.583752 0.166666 0.1";prevscale = "0.583752 0.166666 6.128";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "398.355 0.901805 103.924";rotation = "0.589997 0.55119 -0.589994 237.726";scale = "0.290747 0.166666 6.128";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "398.372 1.15124 104.506";rotation = "-0.682667 0.73073 9.26266e-07 180";scale = "0.125 0.166666 6.99798";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "397.387 -2.60445 100.757";rotation = "0.0240468 0.706892 0.706912 182.753";scale = "5.0003 0.166666 46.7412";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "398.369 1.4021 101.573";rotation = "0.563816 -0.603511 -0.563813 117.777";scale = "0.282935 0.166666 27.749";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "398.39 1.4007 103.857";rotation = "0.563816 -0.603511 -0.563813 117.777";scale = "0.3245 0.166666 27.749";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "397.868 15.5933 104.506";rotation = "0.0339847 0.999422 1.26686e-06 180";scale = "2.71377 0.166666 6.99598";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "397.921 -2.1395 108.756";rotation = "0.589995 0.551194 0.589992 122.274";scale = "0.125 6.66707 44.741";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "398.342 20.5049 104.507";rotation = "0.0339847 0.999422 1.26686e-06 180";scale = "4.44175 0.166666 6.99798";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "408.936 19.7835 104.756";rotation = "0.033967 0.998846 0.0339668 90.0667";scale = "0.125 0.166666 39.0042";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "389.478 21.1084 105.506";rotation = "0.7069 -0.0240412 0.706904 182.754";scale = "0.25 0.166666 39.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "408.936 19.7835 108.756";rotation = "0.033967 0.998846 0.0339668 90.0667";scale = "0.125 0.166666 39.0042";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "397.326 18.102 104.756";rotation = "0.551186 -0.589997 0.589998 122.274";scale = "1.10815 0.166666 12.5731";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3.5";cankill = "1";canmove = 1;closedscale = "1.10815 0.166666 12.5731";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "2";moving = "open";openedscale = "1.10815 0.166666 0.1";prevscale = "1.10815 0.166666 12.5731";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "403.951 17.6586 104.756";rotation = "-0.653393 0.699396 0.289695 149.713";scale = "1.10448 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "403.682 17.4187 104.514";rotation = "-0.682667 0.73073 9.26266e-07 180";scale = "1.23315 0.166666 6.99798";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "406.51 19.6982 104.756";rotation = "0.0240441 0.706904 -0.706901 177.246";scale = "1.20754 0.166666 44.7418";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "399.254 20.4428 108.006";rotation = "-0.0339658 -0.998846 0.0339651 90.0661";scale = "0.25 0.166666 19.4088";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "405.26 14.8391 101.862";rotation = "0.998846 -0.0339706 0.0339647 90.0667";scale = "0.749987 0.166666 3.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "407.632 -3.05123 101.006";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "407.632 -3.05123 105.006";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "408.294 6.67625 100.756";rotation = "0.0240268 0.706911 -0.706894 177.245";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "407.988 2.18667 101.006";rotation = "0 0 -1 86.1047";scale = "2.49998 0.166666 6.98002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "408.327 7.17508 102.238";rotation = "0.589998 0.551189 0.589994 122.274";scale = "0.616001 0.166666 0.1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;closedscale = "0.616001 0.166666 4.74118";hasslided = "0";isdoor = "1";issliding = "0";moving = "open";openedscale = "0.616001 0.166666 0.1";prevscale = "0.616001 0.166666 -0.05882";state = "opened";timeout = "0";toggletype = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "408.328 7.17511 103.983";rotation = "0.589998 0.551189 0.589994 122.274";scale = "0.2565 0.166666 4.74112";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "409.168 19.5171 104.746";rotation = "-0.563816 0.603512 -0.563813 117.777";scale = "0.125 0.166666 44.7412";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "407.649 -2.8017 105.496";rotation = "0.589997 0.55119 0.589994 122.274";scale = "0.25 0.166666 44.7408";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "407.648 -2.8017 107.996";rotation = "0.563816 -0.603506 -0.563819 117.777";scale = "0.25 0.166666 44.7408";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "410.154 8.23877 100.756";rotation = "0.6035 0.563821 -0.563821 117.776";scale = "0.84264 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "409.168 19.517 102.751";rotation = "0.589997 0.551189 -0.589996 237.726";scale = "0.872497 0.166667 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "408.523 10.039 100.756";rotation = "0.0240474 0.706892 0.706912 182.753";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "407.204 19.9014 101.525";rotation = "-0.0339663 -0.998846 0.0339638 90.0661";scale = "0.259248 0.166666 3.47004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "407.204 19.9014 103.995";rotation = "-0.0339663 -0.998846 0.0339638 90.0661";scale = "0.2555 0.166666 3.47004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "409.185 19.7665 101.006";rotation = "0 0 -1 86.1047";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "409.185 19.7665 105.006";rotation = "0 0 -1 86.1047";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/15.cs b/Univ/Data/2703588/Buildings/15.cs new file mode 100644 index 0000000..d069835 --- /dev/null +++ b/Univ/Data/2703588/Buildings/15.cs @@ -0,0 +1,387 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "slapmydashH" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.8091 -527.545 131.738";rotation = "0.999996 -0.00291196 -3.69117e-09 180";scale = "0.125 0.166666 5.6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.8535 -527.563 131.738";rotation = "0.999996 -0.00291196 -3.69117e-09 180";scale = "0.125 0.166666 5.6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.5089 -530.022 131.988";rotation = "0.707107 -0.00205948 0.707104 180.236";scale = "0.125 1.50002 19.4599";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.4916 -527.524 131.988";rotation = "0.707107 -0.00205948 0.707104 180.236";scale = "0.125 0.166666 19.3413";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-65.4396 -526.356 130.238";rotation = "0 0 1 26.9938";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.5995 -526.641 128.938";rotation = "0 0 -1 6.70831";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.57 -527.048 133.738";rotation = "-0.579592 -0.576228 -0.576224 119.808";scale = "0.125 1.33333 4.78608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.8098 -534.506 131.988";rotation = "0.999816 -0.013557 0.0135567 90.0105";scale = "1.05558 0.166666 4.46562";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-64.2224 -526.005 128.938";rotation = "0 0 -1 6.70831";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.7416 -527.522 131.738";rotation = "0.999996 -0.00291191 -3.69111e-09 180";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.8198 -527.045 132.238";rotation = "0 0 -1 89.6662";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.5708 -527.594 130.238";rotation = "0 0 -1 90.8745";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.2625 -525.108 131.238";rotation = "-0.058407 0.996583 -0.0584065 90.1962";scale = "0.5 0.166666 10.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.798 -523.295 131.738";rotation = "0.709164 0.705044 8.93707e-07 180";scale = "2.00004 0.166666 5.6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-71.1699 -534.431 131.988";rotation = "0.5825 0.566914 0.582497 120.901";scale = "0.125 0.166666 4.28758";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.9268 -527.06 132.238";rotation = "0 0 -1 89.6662";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.7431 -527.772 131.988";rotation = "-0.999992 0.00290944 0.00291434 90.0008";scale = "0.125 0.166666 8.00014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.905 -523.31 131.738";rotation = "0.709164 0.705044 8.93707e-07 180";scale = "2.00078 0.166666 5.6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.567 -527.844 131.988";rotation = "-0.00539343 0.707098 -0.707095 180.619";scale = "0.125 0.166666 8.00094";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-67.0126 -534.793 131.738";rotation = "0.999908 -0.013558 -1.7186e-08 180";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.7678 -532.022 131.738";rotation = "0.999996 -0.00291191 -3.69111e-09 180";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.0047 -529.765 128.938";rotation = "0 0 1 90.3337";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.8854 -524.473 131.238";rotation = "-0.058407 0.996583 -0.0584065 90.1962";scale = "0.5 0.166666 10.0007";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.8213 -527.295 131.988";rotation = "0.999992 -0.00291441 0.00290949 90.0008";scale = "0.125 0.166666 16.0003";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.5021 -532.094 131.738";rotation = "-0.0076313 0.999971 1.26755e-06 180";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.1876 -531.893 131.738";rotation = "0.918334 0.395807 5.01721e-07 180";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.8418 -534.799 130.238";rotation = "0 0 -1 38.1513";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.6451 -534.643 131.988";rotation = "0.325057 0.668709 0.668705 216.014";scale = "0.125 0.166666 8.43402";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.2866 -529.825 128.938";rotation = "0 0 -1 90.8745";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.9271 -534.687 131.988";rotation = "-0.587787 -0.572061 -0.57206 119.107";scale = "0.125 0.166666 8.52336";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-71.1767 -534.681 131.738";rotation = "0.716629 0.697455 8.84088e-07 180";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.3031 -532.019 130.238";rotation = "0 0 -1 38.1513";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.9283 -527.31 131.988";rotation = "0.999992 -0.00291441 0.00290949 90.0008";scale = "0.125 0.166666 16.0003";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.0057 -532.063 131.988";rotation = "-0.853881 -0.36803 -0.368024 99.0134";scale = "0.125 0.166666 8.10886";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-70.9163 -534.983 131.738";rotation = "0.918334 0.395807 5.01721e-07 180";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.9916 -527.509 131.988";rotation = "0.707107 -0.0020594 0.707104 180.236";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.3211 -527.56 131.988";rotation = "-0.00763159 0.999942 -0.00763156 90.0037";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-64.3003 -534.392 128.938";rotation = "0 0 -1 38.1513";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.9612 -535.989 128.938";rotation = "0 0 1 1.55365";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.4103 -534.347 128.938";rotation = "0 0 1 43.3674";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.2429 -527.765 131.988";rotation = "-0.576228 0.579592 -0.576224 119.808";scale = "0.125 0.833347 8.00014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.5698 -527.046 135.988";rotation = "0.707107 -0.00206128 0.707104 180.236";scale = "0.125 0.166666 4.78608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.0178 -532.009 131.988";rotation = "0.707107 -0.0020594 0.707104 180.236";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.067 -527.82 131.988";rotation = "0.580266 -0.571476 0.580264 239.493";scale = "0.125 0.83333 8.00094";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.2524 -532.06 131.988";rotation = "-0.00763159 0.999942 -0.00763156 90.0037";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.655 -523.311 133.988";rotation = "-0.707103 0.00205717 0.707108 180.236";scale = "0.875 2.33337 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.4519 -536.568 131.988";rotation = "0.400576 0.824062 0.400575 101.019";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.7326 -533.529 131.988";rotation = "0.676393 0.291529 0.67639 147.494";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.8184 -526.795 134.238";rotation = "0.57847 0.575108 0.578466 120.193";scale = "1 0.166666 14.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.7392 -537.05 131.988";rotation = "0.5825 0.566914 0.582497 120.901";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-71.2377 -536.93 131.988";rotation = "0.5825 0.566914 0.582497 120.901";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.9132 -533.788 131.988";rotation = "0.400576 0.824062 0.400575 101.019";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.5731 -533.354 131.988";rotation = "-0.310647 0.89833 -0.310646 96.1314";scale = "0.125 0.833633 8.00048";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.9687 -536.294 131.988";rotation = "0.0135565 0.999816 0.0135565 90.0105";scale = "0.125 0.832967 8.00012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.2416 -527.508 130.238";rotation = "0 0 1 90.3337";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.4613 -536.619 131.988";rotation = "0.676393 0.291529 0.67639 147.494";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.1273 -535.903 131.988";rotation = "0.346582 0.871643 0.346581 97.8459";scale = "0.125 0.833967 7.99886";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.0711 -527.556 130.238";rotation = "0 0 -1 90.8745";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-73.3007 -522.167 128.938";rotation = "0 0 1 171.886";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.2678 -532.008 130.238";rotation = "0 0 1 90.3337";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.0024 -532.056 130.238";rotation = "0 0 -1 90.8745";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.2975 -536.765 130.238";rotation = "0 0 -1 38.1513";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.9043 -533.711 130.238";rotation = "0 0 1 43.3674";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.746 -537.3 130.238";rotation = "0 0 1 1.55365";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-71.2445 -537.18 130.238";rotation = "0 0 1 1.55365";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.7588 -533.985 130.238";rotation = "0 0 -1 38.1513";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.0811 -519.805 135.988";rotation = "-0.576226 0.579594 -0.576224 119.808";scale = "0.125 0.964313 14.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-72.633 -536.801 130.238";rotation = "0 0 1 43.3674";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-68.1999 -520.206 130.688";rotation = "0.00205832 0.707107 0.707104 180.236";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-68.1999 -520.206 130.688";rotation = "-0.00205867 -0.707103 0.707108 180.236";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.526 -519.548 130.588";rotation = "-0.579592 -0.576228 -0.576224 119.808";scale = "0.125 1.1 4.78608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.5265 -519.548 134.238";rotation = "0.707107 -0.00206128 0.707104 180.236";scale = "1 0.166666 4.78608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.7762 -519.545 132.238";rotation = "0 0 -1 89.6662";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.8832 -519.56 132.238";rotation = "0 0 -1 89.6662";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.1768 -521.301 128.938";rotation = "0 0 1 91.5483";scale = "1.25 0.999999 10";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-77.7726 -522.36 128.938";rotation = "0 0 -1 95.06";scale = "1.25 0.999999 10";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.1941 -532.569 128.938";rotation = "0 0 -1 0.69323";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.4153 -542.034 128.938";rotation = "0 0 -1 2.95103";scale = "7.5 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-48.8756 -541.869 128.938";rotation = "0 0 -1 3.63752";scale = "7.5 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.168 -505.248 135.438";rotation = "-0.597854 0.533981 0.597858 236.203";scale = "0.5 6.66666 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.0103 -499.43 136.688";rotation = "-0.0562546 0.99683 -0.0562547 90.1824";scale = "0.125 0.166666 198.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-98.0064 -508.375 130.639";rotation = "0.620709 -0.554396 0.554406 116.343";scale = "0.125 0.46733 40.0016";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-98.0065 -508.374 133.188";rotation = "0.533982 0.597858 0.597854 236.203";scale = "0.125 0.166666 40.0018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.0695 -507.25 133.438";rotation = "0 0 -1 6.45996";scale = "5.00017 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-38.96 -527.641 128.938";rotation = "0 0 -1 31.0593";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-89.0301 -503.935 133.438";rotation = "0 0 1 174.221";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-38.3864 -501.625 130.568";rotation = "0.533982 0.597858 -0.597854 123.797";scale = "0.125 0.420333 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-38.3865 -501.624 133.188";rotation = "0.533982 0.597858 -0.597854 123.797";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-69.293 -495.311 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 12";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-48.3231 -502.75 133.438";rotation = "0 0 1 173.54";scale = "5 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-48.7146 -499.502 133.438";rotation = "0 0 1 174.704";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-89.166 -497.561 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-99.1312 -498.437 133.188";rotation = "0.533982 0.597858 0.597854 236.203";scale = "4.87495 0.166666 40.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-49.42 -493.061 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.3845 -493.937 133.188";rotation = "0.706546 0.0398747 0.706543 175.433";scale = "0.125 6.49993 39.9992";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-82.2509 -489.825 129.938";rotation = "0 0 1 34.4858";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-38.1381 -501.595 133.438";rotation = "0 0 -1 6.45996";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-111.876 -529.046 128.938";rotation = "0 0 1 81.5067";scale = "7.5 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-57.9108 -486.956 129.938";rotation = "0 0 -1 43.8798";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-98.0068 -508.373 134.063";rotation = "-0.0562546 0.99683 -0.0562547 90.1824";scale = "0.4375 0.166666 39.0006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.5825 -487.23 129.938";rotation = "0 0 -1 6.45996";scale = "2.14175 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-68.9928 -482.181 130.905";rotation = "-0.0562514 0.99683 -0.0562599 90.1818";scale = "1.353 0.809591 0.912926";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.6844 -521.885 128.938";rotation = "0 0 -1 95.5";scale = "7.5 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.3745 -484.035 129.938";rotation = "0 0 -1 6.45996";scale = "2.05244 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-76.7681 -481.682 129.938";rotation = "0 0 1 175.451";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-64.6876 -481.142 129.938";rotation = "0 0 1 178.879";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-95.9555 -488.517 129.938";rotation = "0 0 -1 6.45996";scale = "2.13573 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-37.8896 -501.569 134.142";rotation = "0.706546 0.0398747 0.706543 175.433";scale = "0.398003 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-109.04 -499.811 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 10";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-44.66 -482.711 129.938";rotation = "0 0 -1 6.45996";scale = "2.05281 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-117.631 -510.596 133.438";rotation = "0 0 -1 6.45996";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-29.547 -490.811 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 10";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-119.853 -490.971 134.188";rotation = "0.597857 -0.533983 0.597854 236.203";scale = "0.375 0.166666 39.0016";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-18.7619 -499.402 133.438";rotation = "0 0 -1 6.45996";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.1447 -561.697 137.507";rotation = "-0.666732 0.688565 0.285214 149.123";scale = "0.973252 0.166666 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-116.156 -490.301 133.188";rotation = "-0.620722 0.554395 0.554392 116.343";scale = "0.125 0.166666 6.99852";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-116.212 -489.804 132.688";rotation = "-0.0562633 0.996829 -0.0562668 90.1818";scale = "0.125 0.166666 6.99852";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-20.984 -479.778 133.987";rotation = "0.597857 -0.533983 0.597854 236.203";scale = "0.475502 0.166666 38.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.5975 -552.485 129.138";rotation = "0 0 1 181.846";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.5975 -552.485 133.138";rotation = "0 0 1 181.846";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-16.4789 -561.888 130.829";rotation = "-0.666733 0.688564 -0.285214 210.877";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-110.62 -480.272 129.938";rotation = "0 0 -1 93.6803";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.5975 -552.485 134.138";rotation = "-0.00314291 -0.195089 0.98078 181.81";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.6593 -554.4 137.257";rotation = "-0.695626 0.718404 9.10642e-07 180";scale = "0.125 0.166666 6.238";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-111.289 -479.938 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.6056 -552.734 129.655";rotation = "-0.57105 0.589751 -0.571048 118.94";scale = "0.2585 0.166666 27.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.6512 -554.15 137.507";rotation = "-0.57105 0.589751 -0.571048 118.94";scale = "0.125 0.166666 17.6067";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.6056 -552.734 132.101";rotation = "-0.57105 0.589751 -0.571048 118.94";scale = "0.268503 0.166666 27.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.0565 -566.727 132.888";rotation = "0.583453 0.56495 0.583449 121.071";scale = "0.125 0.166666 27.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.6056 -552.734 133.638";rotation = "-0.57105 0.589751 -0.571048 118.94";scale = "0.25 0.166666 27.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-24.7384 -479.951 133.188";rotation = "0.620714 -0.554399 0.554397 116.343";scale = "0.125 0.166666 6.99988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.0565 -566.727 136.581";rotation = "0.583453 0.56495 0.583449 121.071";scale = "0.338003 0.166666 24.1624";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-24.7946 -479.455 132.688";rotation = "0.706546 0.0398747 0.706543 175.433";scale = "0.125 0.166666 7.00012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-31.7972 -470.938 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.9348 -562.949 137.507";rotation = "-0.57105 0.58975 -0.571048 118.939";scale = "0.125 0.166666 7.55592";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-31.6216 -469.951 129.938";rotation = "0 0 1 84.4964";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-7.1439 -560.745 130.947";rotation = "-0.999741 0.0161035 0.0161035 90.0151";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "39";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.0646 -566.977 129.138";rotation = "0 0 1 181.846";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-120.117 -470.874 132.188";rotation = "-0.996829 -0.0562702 -0.0562682 90.1819";scale = "0.874568 0.166667 37.9994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.0646 -566.977 133.138";rotation = "0 0 1 181.846";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.0645 -566.975 134.138";rotation = "0 0 1 181.846";scale = "0.125 0.166666 7.20002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-8.2351 -565.149 129.538";rotation = "0.805128 -0.593101 -7.51809e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";frequency = "12";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-8.2351 -565.149 129.538";rotation = "-3.85797e-06 7.14229e-13 1 72.7548";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.103 -471.099 131.188";rotation = "-0.99683 -0.0562546 -0.0562547 90.1824";scale = "0.125 0.833333 39.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-120.978 -481.035 132.438";rotation = "0 0 1 83.5401";scale = "4.99975 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.2499 -567.035 132.638";rotation = "0.99987 -0.0161081 -2.04184e-08 180";scale = "0.782875 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-44.2614 -461.577 130.338";rotation = "0.00220628 0.999998 1.26759e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-44.2614 -461.577 130.338";rotation = "1.27039e-06 -1.68932e-12 1 180.253";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-39.9756 -461.8 131.63";rotation = "-0.99683 -0.0562546 -0.0562547 90.1824";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.2537 -560.62 132.638";rotation = "0.0161056 0.99987 1.26743e-06 180";scale = "3.17635 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-101.087 -461.171 130.188";rotation = "0.597857 -0.533978 0.597858 236.203";scale = "0.125 0.166666 7.96878";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-101.136 -465.186 130.688";rotation = "-0.597854 0.533983 0.597857 236.202";scale = "0.125 0.166667 7.96458";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-73.7935 -455.565 128.438";rotation = "0 0 -1 6.45996";scale = "15.0001 20.0003 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-101.633 -465.241 131.188";rotation = "0.99683 0.0562546 -0.0562547 90.1824";scale = "0.125 0.166666 7.96456";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-102.13 -465.297 131.688";rotation = "0.996831 0.0562536 -0.0562537 90.1818";scale = "0.125 0.166666 7.96456";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-24.1112 -449.94 136.688";rotation = "0.533984 0.597858 -0.597853 123.797";scale = "24.7501 0.166667 199.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-102.625 -465.364 132.188";rotation = "-0.0398712 0.706546 0.706543 175.433";scale = "0.125 0.166666 7.99902";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.3576 -469.869 132.188";rotation = "-0.620717 0.554394 0.554399 116.344";scale = "5 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "-6.7028 -567.325 132.648";rotation = "0.999741 -0.0161049 0.0161017 90.0151";scale = "2.9077 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "-74.6967 -454.947 130.338";rotation = "0.95348 0.301456 3.82123e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-0.2094 -560.473 132.888";rotation = "0.011389 0.707062 0.70706 181.306";scale = "4.6952 0.166666 14.8596";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-23.2342 -459.905 131.188";rotation = "-0.99683 -0.0562546 -0.0562547 90.1824";scale = "0.125 0.833333 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.1091 -469.842 132.438";rotation = "0 0 1 83.5401";scale = "4.99975 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-45.489 -458.895 130.188";rotation = "-0.0398737 0.706539 0.70655 175.433";scale = "0.125 0.166666 8.00072";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-44.9921 -458.839 130.688";rotation = "-0.0398732 0.706542 0.706547 175.433";scale = "0.125 0.166666 8.00074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-44.4952 -458.783 131.188";rotation = "-0.0398762 0.706545 0.706543 175.433";scale = "0.125 0.166666 8.00072";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-141.558 -506.825 128.938";rotation = "0 0 -1 1.69253";scale = "7.5 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.0369 -553.676 136.026";rotation = "0.0157976 0.980663 0.195068 180.36";scale = "1.4965 0.166666 4.08738";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.9984 -458.727 131.688";rotation = "-0.0398747 0.706546 0.706543 175.433";scale = "0.125 0.166666 8.0007";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.5017 -458.67 132.188";rotation = "0.554399 0.620714 0.554397 116.343";scale = "0.125 0.166666 7.99876";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "3.0196 -555.515 133.138";rotation = "0 0 1 2.13579";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "39";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-123.644 -474.349 128.938";rotation = "0 0 -1 6.0431";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-100.425 -460.227 130.493";rotation = "0.5544 0.620713 0.554398 116.343";scale = "1.353 0.809591 0.912926";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.3476 -552.493 129.656";rotation = "0.707062 -0.0113925 0.70706 181.305";scale = "0.259 0.166666 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.6373 -553.427 132.094";rotation = "0.0161059 0.999741 0.0161059 90.0153";scale = "0.2715 0.166666 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.6373 -553.427 132.888";rotation = "0.0161059 0.999741 0.0161059 90.0153";scale = "0.125 0.166666 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.6373 -553.427 133.638";rotation = "0.0161059 0.999741 0.0161059 90.0153";scale = "0.25 0.166666 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.548 -474.006 132.188";rotation = "0.62071 -0.554405 0.554396 116.343";scale = "1.00009 0.166666 7.00048";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.6032 -554.487 136.699";rotation = "-0.175409 0.962633 0.206325 92.5488";scale = "0.364295 0.166666 58";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.3939 -553.927 137.603";rotation = "0.69683 -0.150316 0.701308 165.435";scale = "0.125 0.166666 58";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.796 -474.034 131.938";rotation = "0.745824 -0.666143 -8.44396e-07 180";scale = "0.9996 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-126.021 -472.046 132.188";rotation = "-0.0398707 0.70655 -0.70654 184.567";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "3.078 -561.065 132.648";rotation = "0.999741 -0.0161024 0.0160992 90.0151";scale = "2.15142 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-124.31 -471.602 131.938";rotation = "-0.0563414 0.998412 1.26558e-06 180";scale = "0.99982 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.323 -471.376 132.188";rotation = "-0.620717 0.554394 0.554399 116.344";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "4.9113 -560.206 128.938";rotation = "0 0 1 181.846";scale = "7.5 4.99999 0.4";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "2.3923 -564.292 137.747";rotation = "0 0 1 185.218";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "39";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-47.1892 -450.662 130.518";rotation = "0.597854 -0.533983 0.597857 236.202";scale = "1.353 0.809591 0.912926";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "1.0816 -569.519 128.938";rotation = "0 0 1 4.37802";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "39";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.6121 -560.698 137.497";rotation = "0.707062 -0.0113925 0.70706 181.305";scale = "0.125 4.36027 57.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.2841 -564.387 132.888";rotation = "0.0161059 0.999741 0.0161059 90.0153";scale = "0.125 2.19047 58";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-2.89948 -479.933 128.938";rotation = "0 0 -1 92.2743";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-113.54 -460.065 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.79562 -473.249 128.938";rotation = "0 0 1 234.69";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.8147 -566.985 132.888";rotation = "0.707062 -0.0113925 0.70706 181.305";scale = "0.125 0.166666 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.8147 -566.983 133.638";rotation = "0.707062 -0.0113925 0.70706 181.305";scale = "0.25 0.166666 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.1702 -567.917 136.57";rotation = "0.0161059 0.999741 0.0161059 90.0153";scale = "0.3345 0.166666 57.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-107.965 -454.279 132.438";rotation = "0 0 1 84.4517";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.7021 -555.985 132.888";rotation = "0.589817 0.571035 -0.570994 118.945";scale = "1.25039 0.166666 8.73834";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-34.0474 -451.065 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5755 -559.919 132.888";rotation = "0.690327 0.668422 -0.276877 148.084";scale = "0.499512 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.6856 -567.55 132.638";rotation = "0.99987 -0.0161081 -2.04184e-08 180";scale = "5.7452 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.7913 -464.728 128.938";rotation = "0 0 -1 96.6196";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "6.5979 -570.077 128.938";rotation = "0 0 1 2.32899";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "39";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "13.5525 -560.925 133.128";rotation = "0.0161422 0.99987 -3.3233e-05 180.008";scale = "4.38918 2.68312 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "StationInventory";position = "-41.6047 -446.56 132.438";rotation = "0 0 -1 97.4326";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-124.354 -451.225 133.162";rotation = "0.597856 -0.533984 0.597854 236.203";scale = "0.388 0.166666 40.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.104 -471.1 135.687";rotation = "0.554399 0.620714 0.554397 116.343";scale = "0.3745 0.166666 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.3039 -561.125 132.638";rotation = "0.0161056 0.99987 1.26743e-06 180";scale = "3.54085 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "15.5006 -559.828 129.138";rotation = "0 0 1 92.8828";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-20.5796 -455.061 128.938";rotation = "0 0 1 91.8119";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "-4.41711 -467.04 128.938";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2703588";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-17.0005 -455.354 128.938";rotation = "0 0 -1 90.78";scale = "1.25 0.999999 6.8";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.663 -557.201 132.888";rotation = "-0.589749 -0.57105 -0.57105 118.935";scale = "1.85796 0.166666 11.6991";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-23.2342 -459.905 133.188";rotation = "0.554399 0.620714 0.554397 116.343";scale = "0.375 0.166666 40.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-25.4846 -440.031 135.688";rotation = "0.597856 -0.533984 0.597854 236.203";scale = "0.375 0.166666 40.004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-149.97 -488.106 128.938";rotation = "0 0 1 94.3398";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "12.4774 -570.046 128.938";rotation = "0 0 1 1.7467";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "39";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-141.753 -473.161 128.938";rotation = "0 0 1 98.2943";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.8872 -553.435 129.138";rotation = "0 0 1 181.846";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "16.1394 -564.465 129.138";rotation = "0 0 1 91.7248";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "39";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.8872 -553.435 133.138";rotation = "0 0 1 181.846";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.8872 -553.435 134.138";rotation = "-0.00314291 -0.195089 0.98078 181.81";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.8253 -555.348 137.257";rotation = "-0.695626 0.718404 9.10642e-07 180";scale = "0.125 0.166666 6.238";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.8791 -553.684 129.641";rotation = "-0.57105 0.589751 -0.571048 118.94";scale = "0.25125 0.166666 27.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.8791 -553.684 132.09";rotation = "-0.57105 0.589751 -0.571048 118.94";scale = "0.273497 0.166666 27.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.8791 -553.685 132.888";rotation = "-0.57105 0.589751 -0.571048 118.94";scale = "0.125 0.166666 27.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.8791 -553.684 133.638";rotation = "-0.57105 0.589751 -0.571048 118.94";scale = "0.25 0.166666 27.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "-150.394 -481.924 128.938";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2703588";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.4281 -567.673 136.568";rotation = "0.583453 0.56495 0.583449 121.071";scale = "0.34425 0.166666 24.1664";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.8334 -555.098 137.507";rotation = "-0.57105 0.589751 -0.571048 118.94";scale = "0.125 0.166666 25.163";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "17.2449 -568.108 131.043";rotation = "-0.999741 0.016106 0.016106 90.0153";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "39";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.4201 -567.927 129.138";rotation = "0 0 1 181.846";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.4201 -567.927 133.138";rotation = "0 0 1 181.846";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.4201 -567.925 134.138";rotation = "0 0 1 181.846";scale = "0.125 0.166666 7.20002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "39";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-25.7609 -439.811 132.188";rotation = "0.533984 0.597855 -0.597855 123.798";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-115.79 -440.192 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-153.735 -475.404 128.938";rotation = "0 0 1 89.1986";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.62219 -452.425 128.938";rotation = "0 0 -1 93.1423";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-115.02 -439.504 129.938";rotation = "0 0 -1 98.1843";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-36.2976 -431.192 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-37.668 -430.491 129.938";rotation = "0 0 1 83.8976";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.3199 -425.798 130.188";rotation = "-0.0562546 0.99683 -0.0562547 90.1824";scale = "0.125 0.166666 7.2606";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.23 -441.261 132.188";rotation = "0.533982 0.597858 0.597854 236.203";scale = "4.99975 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-141.668 -455.154 128.938";rotation = "0 0 1 81.7055";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-86.8849 -426.604 130.938";rotation = "0 0 -1 6.45996";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-124.353 -451.225 131.188";rotation = "0.99683 0.0562546 -0.0562547 90.1824";scale = "0.125 0.833333 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-125.479 -441.289 132.438";rotation = "0 0 -1 96.4597";scale = "5.00002 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-67.5087 -424.41 130.938";rotation = "0 0 -1 6.45996";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "-86.913 -426.356 132.688";rotation = "-0.0398729 0.706544 0.706545 175.433";scale = "1 1 1";team = "1";ownerGUID = "2703588";nametoset = "Tele Defender";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "-67.5368 -424.162 132.688";rotation = "-0.0398729 0.706544 0.706545 175.433";scale = "1 1 1";team = "1";ownerGUID = "2703588";nametoset = "Tele Defender";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-13.7241 -439.008 128.938";rotation = "0 0 -1 87.4293";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-164.593 -484.264 128.938";rotation = "0 0 1 90.12";scale = "7.5 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-27.5279 -439.759 132.188";rotation = "-0.0398778 0.706549 0.70654 175.433";scale = "0.875013 0.166666 38.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-25.4844 -440.031 131.188";rotation = "0.99683 0.0562546 -0.0562547 90.1824";scale = "0.125 0.833333 39.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.6094 -430.095 132.438";rotation = "0 0 -1 96.4597";scale = "4.99975 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-157.262 -465.867 128.938";rotation = "0 0 1 11.6897";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-110.655 -425.849 133.438";rotation = "0 0 1 135.978";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-47.7212 -419.184 129.551";rotation = "0.533982 0.597858 -0.597854 123.797";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.793 -431.677 132.688";rotation = "-0.0562532 0.996831 -0.0562518 90.1813";scale = "0.125 0.166666 7.00074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-122.85 -431.18 133.188";rotation = "0.533984 0.597856 -0.597854 123.797";scale = "0.125 0.166666 6.99852";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-161.779 -464.133 128.938";rotation = "0 0 1 46.9232";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-78.2938 -415.819 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 5";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.4055 -424.955 128.938";rotation = "0 0 -1 50.6968";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-43.1755 -417.491 133.438";rotation = "0 0 1 221.352";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-98.1668 -418.069 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.3767 -421.325 132.688";rotation = "0.706546 0.0398763 0.706543 175.433";scale = "0.125 0.166666 7.00072";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-147.371 -445.29 128.938";rotation = "0 0 1 91.4005";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-156.654 -455.051 128.938";rotation = "0 0 1 190.366";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-31.4328 -420.828 133.188";rotation = "0.533977 0.597859 0.597857 236.202";scale = "0.125 0.166666 7.0005";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-58.4208 -413.569 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-138.374 -436.151 128.938";rotation = "0 0 1 94.8285";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-48.2896 -414.164 129.653";rotation = "0.533982 0.597858 -0.597854 123.797";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-163.392 -460.106 128.938";rotation = "0 0 1 99.0094";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.3409 -428.104 128.938";rotation = "0 0 -1 96.6528";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-78.6368 -412.102 133.188";rotation = "-0.0398747 0.706546 0.706543 175.433";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-78.6368 -412.102 133.188";rotation = "0.0398724 -0.706542 0.706547 175.433";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-161.158 -455.93 128.938";rotation = "0 0 1 144.932";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-78.7099 -411.457 130.938";rotation = "0 0 -1 6.45996";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-78.7099 -411.457 132.438";rotation = "0 0 -1 6.45996";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-20.4669 -420.961 128.938";rotation = "0 0 -1 89.0176";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-118.04 -420.319 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 10";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-91.0697 -411.162 130.338";rotation = "0.99945 -0.03317 -4.20459e-08 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-91.0697 -411.162 130.338";rotation = "-7.6409e-05 2.57267e-12 1 3.80065";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "-144.593 -435.434 128.938";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2703588";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-79.2381 -408.126 130.938";rotation = "0 0 -1 5.15266";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-38.5478 -411.319 128.438";rotation = "0 0 -1 6.45996";scale = "5 6.66666 10";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-126.603 -431.352 134.174";rotation = "0.554401 0.620712 0.554397 116.343";scale = "0.382 0.166666 38.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-106.328 -411.939 129.938";rotation = "0 0 -1 46.9721";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-62.4156 -405.97 130.338";rotation = "-0.0545741 0.99851 1.2657e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.1";frequency = "6";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-62.4156 -405.97 130.338";rotation = "1.2002e-06 2.0596e-12 1 173.743";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.4545 -405.007 131.938";rotation = "-0.0562542 0.99683 -0.0562578 90.1812";scale = "0.5 0.166666 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-79.3905 -406.132 132.939";rotation = "0 0 1 173.54";scale = "14.9996 0.166666 6.99798";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-58.2046 -405.807 130.338";rotation = "0.119743 0.992805 1.25847e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.1";frequency = "12";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-58.2046 -405.807 130.338";rotation = "1.42966e-06 6.19956e-13 1 193.754";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-30.2051 -400.562 136.688";rotation = "-0.0562546 0.99683 -0.0562547 90.1824";scale = "0.125 0.166666 186.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-79.2658 -405.464 131.938";rotation = "-0.99683 -0.0562557 -0.0562563 90.1812";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-79.2658 -405.464 131.938";rotation = "0.99683 0.0562557 -0.0562552 90.1824";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-17.4047 -416.172 128.938";rotation = "0 0 -1 86.7326";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-89.3271 -407.257 131.438";rotation = "-0.0562546 0.99683 -0.0562547 90.1824";scale = "0.75 0.166666 39.9994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-51.5413 -405.443 129.938";rotation = "0 0 1 39.5617";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-27.7345 -420.158 134.188";rotation = "0.554401 0.620712 0.554397 116.343";scale = "0.375 0.166666 39.0016";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.4545 -405.006 131.438";rotation = "0.706546 0.0398747 0.706543 175.433";scale = "0.75 0.166666 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1.5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.1282 -411.282 128.938";rotation = "0 0 -1 88.3306";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-141.411 -423.34 128.938";rotation = "0 0 1 97.6847";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-109.2 -409.506 134.143";rotation = "-0.0562522 0.996831 -0.0562523 90.1819";scale = "0.3975 0.166666 39.0016";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-49.5815 -402.756 134.154";rotation = "0.706546 0.0398769 0.706543 175.433";scale = "0.39175 0.166666 39.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-128.577 -411.7 136.688";rotation = "0.706546 0.0398747 0.706543 175.433";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-20.5136 -406.617 128.938";rotation = "0 0 1 235.596";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-163.028 -437.25 128.938";rotation = "0 0 1 91.3507";scale = "7.82275 2.24907 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-128.825 -411.728 133.438";rotation = "0 0 -1 6.45996";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-98.0821 -399.884 128.938";rotation = "0 0 1 177.446";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.0236 -396.523 128.938";rotation = "0 0 1 174.04";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "-81.9697 -396.246 130.238";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2703588";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.9567 -400.534 133.438";rotation = "0 0 -1 6.45996";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.0341 -390.194 128.938";rotation = "0 0 1 176.984";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-149.761 -414.032 128.938";rotation = "0 0 1 180.285";scale = "7.5 0.377157 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-114.448 -394.376 128.938";rotation = "0 0 1 166.585";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-94.2811 -383.753 128.938";rotation = "0 0 1 181.543";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.0829 -381.871 128.938";rotation = "0 0 -1 0.653717";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-110.04 -386.741 128.938";rotation = "0 0 1 179.802";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-81.273 -377.706 128.938";rotation = "0 0 1 176.358";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "-98.3863 -378.114 128.938";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2703588";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-43.8394 -377.204 128.938";rotation = "0 0 1 177.671";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "-56.439 -371.361 128.938";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2703588";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-64.0197 -370.901 128.938";rotation = "0 0 1 183.516";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.2347 -370.369 130.238";rotation = "0 0 -1 93.9169";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-92.5642 -370.882 130.238";rotation = "0 0 1 100.59";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-77.6355 -368.21 128.938";rotation = "0 0 -1 93.9169";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.525 -366.129 131.988";rotation = "0.590065 -0.551044 0.590063 237.713";scale = "0.125 0.166666 8.00068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-90.922 -368.9 128.938";rotation = "0 0 1 100.59";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.7831 -366.705 131.988";rotation = "-0.538358 0.648341 -0.538354 114.086";scale = "0.125 0.166666 7.99824";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-105.523 -369.902 128.938";rotation = "0 0 1 184.35";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.5421 -365.88 130.238";rotation = "0 0 -1 93.9169";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.7372 -366.459 130.238";rotation = "0 0 1 100.59";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-77.413 -364.411 130.238";rotation = "0 0 1 214.024";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-79.9772 -364.188 128.938";rotation = "0 0 1 214.024";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.0389 -365.118 130.238";rotation = "0 0 1 138.998";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.5208 -364.585 128.938";rotation = "0 0 1 138.998";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-80.9354 -362.033 131.988";rotation = "0.691118 -0.211455 0.691117 203.879";scale = "0.125 0.166666 7.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-87.8316 -362.329 131.988";rotation = "-0.33054 0.884018 -0.330538 97.0459";scale = "0.125 0.166666 8.00126";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-84.2631 -362.814 128.938";rotation = "0 0 1 179.054";scale = "1.25 0.999999 2.6";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-81.1426 -361.893 130.238";rotation = "0 0 1 214.024";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-87.6429 -362.165 130.238";rotation = "0 0 1 138.998";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-82.034 -361.527 130.238";rotation = "0 0 1 179.054";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-86.2834 -361.597 131.988";rotation = "0.707096 0.00583811 0.707093 179.331";scale = "0.125 0.166666 7.9999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-86.5334 -361.601 130.238";rotation = "0 0 1 179.054";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-86.9823 -330.267 169.402";rotation = "0.279901 0.960029 1.21692e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-86.9823 -330.267 169.402";rotation = "1.68994e-06 4.00889e-12 1 212.508";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "16.947 -326.707 178.688";rotation = "-0.396656 0.649103 -0.649099 223.272";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "20.284 -328.418 178.938";rotation = "0 0 1 27.1431";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.966 -315.986 179.533";rotation = "0.697026 -0.168262 0.697024 199.102";scale = "0.125 0.166666 54.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.966 -315.986 181.745";rotation = "0.697026 -0.168262 0.697024 199.102";scale = "0.125 0.166666 54.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "18.435 -323.256 178.688";rotation = "-0.462353 0.756611 -0.462352 105.777";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "18.841 -327.397 178.688";rotation = "0.946371 -0.228457 0.228451 93.1567";scale = "1.00014 0.166666 7.00108";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.966 -315.986 182.688";rotation = "0.697026 -0.168262 0.697024 199.102";scale = "0.125 0.166666 54.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.392 -316.253 178.688";rotation = "-0.396656 0.649103 -0.649099 223.272";scale = "0.999907 0.166666 37.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.188 -315.872 178.938";rotation = "0 0 1 117.143";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "18.772 -323.147 178.688";rotation = "0.697026 -0.168263 0.697024 199.102";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.083 -314.36 178.688";rotation = "-0.462353 0.756611 -0.462352 105.777";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.167 -314.43 178.688";rotation = "-0.396654 0.649102 -0.649102 223.273";scale = "0.999907 0.166666 7.00104";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-2.477 -312.535 178.688";rotation = "0.168263 0.697026 -0.697024 160.898";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.974 -314.023 178.688";rotation = "0.228454 0.946371 0.228453 93.1566";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "2.206 -313.812 179.338";rotation = "-0.509524 0.860457 1.09071e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";frequency = "6";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-247.794 -298.812 179.338";rotation = "7.22547e-07 -3.11171e-12 1 118.736";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "StationInventory";position = "6.08 -314.393 178.938";rotation = "0 0 1 207.857";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.321 -309.909 128.938";rotation = "0 0 -1 62.8569";scale = "5 6.66666 100";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "29.334 -306.93 178.688";rotation = "-0.946371 0.228452 0.228455 93.1566";scale = "1.00013 0.166666 37.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "32.716 -304.168 179.551";rotation = "-0.462353 0.756611 -0.462352 105.777";scale = "0.125 0.166666 54.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "32.716 -304.168 181.788";rotation = "-0.462353 0.756611 -0.462352 105.777";scale = "0.125 0.166666 54.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "20.398 -328.196 182.688";rotation = "0.649103 0.396656 0.649099 136.728";scale = "0.125 0.166666 54.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "20.258 -297.782 182.688";rotation = "-0.462353 0.756612 -0.462351 105.777";scale = "0.125 9.16717 54.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-0.692 -312.889 178.688";rotation = "0.168263 0.697026 0.697024 199.102";scale = "1.00013 0.166666 37.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "8.244 -291.622 179.526";rotation = "-0.462353 0.756612 -0.462351 105.777";scale = "0.125 0.166666 54.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "8.244 -291.622 181.748";rotation = "-0.462353 0.756612 -0.462351 105.777";scale = "0.125 0.166666 54.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "22.431 -302.829 158.514";rotation = "0.168263 0.697026 0.697024 199.102";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "8.31 -299.715 176.264";rotation = "-0.396656 0.649103 0.649099 136.728";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "27.668 -305.795 178.688";rotation = "0.697026 -0.168263 0.697024 199.102";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "31.119 -307.283 178.688";rotation = "0.94637 -0.228456 0.228453 93.1559";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "31.809 -305.389 178.688";rotation = "0.756608 0.462357 -0.462352 105.777";scale = "0.999907 0.166666 7.00104";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "27.559 -305.458 178.688";rotation = "0.649103 0.396656 0.649099 136.728";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.87 -296.671 178.688";rotation = "0.228454 0.946371 0.228453 93.1566";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "11.342 -294.896 178.688";rotation = "-0.75661 -0.462355 -0.462352 105.777";scale = "1.00013 0.166666 37.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "32.83 -303.946 178.938";rotation = "0 0 -1 62.8569";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.207 -296.562 178.688";rotation = "0.649103 0.396656 0.649099 136.728";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.801 -292.42 178.688";rotation = "-0.168259 -0.697023 0.697028 199.102";scale = "1.00013 0.166666 7.00108";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "32.608 -303.832 179.528";rotation = "0.228454 0.946371 0.228453 93.1566";scale = "0.125 0.166666 54.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "32.608 -303.832 181.773";rotation = "0.228454 0.946371 0.228453 93.1566";scale = "0.125 0.166666 54.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "8.58 -291.514 182.688";rotation = "0.697026 -0.168264 0.697024 199.102";scale = "0.125 0.166666 54.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "11.695 -293.111 178.688";rotation = "0.756609 0.46235 -0.462358 105.777";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "8.358 -291.4 178.938";rotation = "0 0 1 207.143";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "187.571 -421.487 130.338";rotation = "-0.205184 0.978723 1.24062e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1.5";frequency = "6";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-62.4289 -406.487 130.338";rotation = "1.0294e-06 3.5605e-13 1 156.32";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/2.cs b/Univ/Data/2703588/Buildings/2.cs new file mode 100644 index 0000000..8ae6c7c --- /dev/null +++ b/Univ/Data/2703588/Buildings/2.cs @@ -0,0 +1,297 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBigH" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.93 43.9557 104.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.12 46.1206 105.25";rotation = "-0.645558 0.540026 0.540025 114.311";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 105.498";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.249001 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 103";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.032 46.6128 105.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02736";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 108.088";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25225 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.944 47.105 106.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "212.457 43.4069 99.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.637 40.0186 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 3.83327 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8953 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.857 47.5972 106.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 105.524";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.262 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.768 48.0894 107.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.088 44.9696 109";rotation = "0 0 -1 10.1729";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.842 44.9254 110.75";rotation = "-0.088313 0.99217 -0.0883122 90.4505";scale = "0.875 0.166666 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 103";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.68 48.5817 107.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02934";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.63 44.3489 109";rotation = "0 0 1 169.827";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.846 49.0644 109";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 108.495";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2525 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.372 48.6204 109";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.592 49.0738 108.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.0294";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.092 49.1086 108.75";rotation = "0.645557 -0.540027 0.540025 114.311";scale = "1.99997 0.166666 5.73618";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.126 48.5764 108.75";rotation = "-0.645557 0.540027 0.540025 114.311";scale = "2.00002 0.166666 6.23604";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.632 53.0899 110.75";rotation = "0.608607 -0.509116 0.608604 233.963";scale = "0.875 0.166666 15.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "215.706 33.8406 104.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "2.2206 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.131 34.3401 105";rotation = "0 0 -1 100.173";scale = "0.125 1.0004 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.174 52.4689 110.75";rotation = "0.608607 -0.509114 0.608606 233.962";scale = "0.875 0.166666 15.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "209.698 33.25 100.99";rotation = "-0.992171 -0.0883135 -0.0883088 90.4499";scale = "9.01948 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3413 104.75";rotation = "-0.0883149 0.99217 -0.0883112 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.222 51.139 108.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 1.23192 4.0314";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.854 34.6492 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.854 34.6492 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.619 33.3512 105";rotation = "0 0 -1 100.173";scale = "0.125 1.26591 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.049 49.3548 112.25";rotation = "-0.0883145 0.99217 -0.0883148 90.4506";scale = "0.125 2.83326 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.504 32.9713 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.504 32.9713 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.164 53.7983 107.007";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.9965 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.261 52.4548 104.763";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.333447 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.069 54.2893 106.757";rotation = "-0.705707 -0.0628074 0.705714 172.811";scale = "0.871747 0.166667 17.9766";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.41 53.8425 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 105.5";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.25 0.166666 13.8518";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.41 53.8425 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "206.17 52.9365 100.99";rotation = "-0.992171 -0.0883135 -0.0883088 90.4499";scale = "9.00729 3.533 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "222.119 34.7271 104.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.125 2.31845 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.8179 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.339 32.2543 101";rotation = "0 0 1 79.8268";scale = "0.125 1.0153 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.588 53.336 109";rotation = "0 0 -1 10.1732";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.06 52.1646 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.06 52.1646 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.13 52.715 109";rotation = "0 0 1 169.826";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.467 53.8224 109";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.533 54.7315 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66925 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.004 53.201 109";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.997 55.1736 109.485";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.24275 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.594 31.9414 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.102 31.853 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.25 53.2452 112.25";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 6.03688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.759 52.26 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66823 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.818 109.519";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25925 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.997 55.1736 111.999";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.2505 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.244 55.2178 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.788 35.3853 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "216.405 56.561 101";rotation = "0 0 1 171.826";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.818 112.02";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.24 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.244 55.2178 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "210.049 28.0189 101";rotation = "0 0 -1 101.941";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Generator Room";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "224.007 31.2569 101";rotation = "0 0 1 84.7536";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.701 54.2813 101";rotation = "0 0 1 170.678";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.05 51.7737 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.12 27.5912 104.5";rotation = "0.767012 -0.641633 -8.13328e-07 180";scale = "2.06122 0.33329 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.05 51.7737 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.989 33.3731 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 6.5002 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "217.913 24.0666 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.888 32.5326 105.5";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.25 0.166666 47.1938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "207.604 23.4999 104.51";rotation = "0.645556 -0.540028 0.540025 114.311";scale = "2.05502 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.146 31.6069 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4533 104.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4534 104.066";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25825 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "208.925 63.0925 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.232 65.0165 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.4999 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4533 101.518";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25875 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.832 35.1392 103";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.001 72.3991 112.25";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.5002 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "208.879 20.6229 100.845";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 106.174";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.163 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 101.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.844 74.1652 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 109.496";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.247999 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0199 106.009";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.2455 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 112.004";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.248249 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.007 52.0199 101.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.65 70.721 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0199 109.506";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25275 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "209.276 18.4096 102.397";rotation = "0.509119 0.608606 0.608602 233.963";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = " Teleport";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0198 111.787";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.218 24.2221 104.75";rotation = "-0.645555 0.540025 0.540029 114.311";scale = "3.72898 0.166666 37.9994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.978 17.2402 101";rotation = "0 0 1 79.8273";scale = "2.17945 0.333249 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.31 16.9159 104.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.59943 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "209.663 16.2514 100.68";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "215.156 15.9803 101.4";rotation = "0.872065 -0.48939 -6.20346e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = " Vehicle Pad";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "215.156 15.9803 101.4";rotation = "-4.84892e-06 5.32766e-13 1 58.601";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "198.227 20.5343 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "206.098 16.9423 104.51";rotation = "-0.062819 0.705712 -0.705708 187.188";scale = "2.21957 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "228.986 16.1476 104.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "218.477 14.506 104.51";rotation = "-0.0628162 0.705711 -0.70571 187.188";scale = "2.07631 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.747 15.2078 104.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "2.66108 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.385 13.3483 104.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "1.57501 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.303 69.9573 109";rotation = "0 0 -1 10.7996";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.038 12.7479 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.546 12.6595 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.194 11.9532 104.75";rotation = "-0.0628161 0.705712 0.705709 172.812";scale = "2.57118 0.166666 8.16828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.908 28.4092 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.744 35.6314 105.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 78.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.126 12.2557 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.232 16.1918 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.634 12.1674 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "202.512 72.0914 100.99";rotation = "-0.99217 -0.0883139 -0.0883107 90.45";scale = "9.0195 4.826 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.521 72.1027 107.153";rotation = "0.509115 0.608605 0.608607 233.963";scale = "0.249904 0.898 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.32 15.6996 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.988 73.9065 101";rotation = "0 0 1 79.8268";scale = "0.125 1.73766 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.581 73.9828 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.912 22.8177 104.008";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.246 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.914 73.714 112";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "1.84908 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.554 74.3671 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.912 22.8177 101.518";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.259 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.432 71.833 112";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "2.32658 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.231 72.3049 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.208 71.434 101";rotation = "0 0 1 79.8268";scale = "0.125 1.5961 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "200.986 13.4524 105";rotation = "0 0 -1 100.14";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.8 74.4113 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.581 73.9828 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.421 11.591 104.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "1.50719 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.231 72.3049 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.8 74.4113 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.878 15.0437 104.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "3.60037 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.606 70.9671 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.956 22.5716 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.859 15.3991 107";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "1 0.166666 11.1109";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.378 11.0891 107.005";rotation = "0.540026 0.645558 0.540025 114.311";scale = "1.00225 0.166666 8.1681";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.606 70.9671 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "208.018 9.84562 101";rotation = "0 0 1 40.8422";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "187.762 22.2929 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "2.51225 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "201.236 10.4169 104.51";rotation = "0.99217 0.0883117 -0.0883136 90.4505";scale = "2.30593 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.484 19.6263 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "200.914 10.8569 103.138";rotation = "0.98428 0.176615 0 89.9996";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " <- Safe / Inventory Station room";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.8 8.50219 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "1.78166 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.126 14.8342 101.25";rotation = "-0.0628161 0.705712 -0.705709 187.189";scale = "0.125 0.166666 9.16732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "199.144 11.0369 104.99";rotation = "-0.088656 0.996062 -5.35938e-07 180.001";scale = "4.57562 4.10405 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "200.397 10.7642 103.17";rotation = "0.98428 0.176615 0 89.9996";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " Office complex Roof ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.633 14.7458 101.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.308 9.46167 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.344 12.3694 104.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.333205 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.918 75.4721 101.25";rotation = "0.64556 -0.540026 0.540021 114.311";scale = "0.125 0.166666 8.9995";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.141 14.6574 102.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.922 14.618 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 1.68484 8.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.65 14.569 102.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.771 13.7123 105";rotation = "0 0 1 79.8268";scale = "0.250003 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.829 75.9641 101.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.157 14.4806 103.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16658";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.951 28.1629 105.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 44.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.981 21.0256 100.75";rotation = "0.571012 0.682589 -0.45609 138.232";scale = "0.885297 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.741 76.4561 102.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.665 14.3923 103.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16638";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "193.443 14.1831 104.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "3.02017 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.174 14.3039 104.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16616";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.458 76.619 108.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "0.125 2.75535 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.654 76.9486 102.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.9995";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.391 14.4176 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "194.093 13.2724 104.99";rotation = "-0.645553 0.540025 0.540032 114.311";scale = "2.09238 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.2 9.9061 107.003";rotation = "0.705711 0.0628183 0.705709 172.812";scale = "1 0.166666 11.1107";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.46 76.6 109";rotation = "0 0 1 79.8268";scale = "2.0569 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.566 77.4406 103.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.478 77.9326 103.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "194.557 10.7491 106.518";rotation = "0.176622 -0.984279 0 90.0002";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " 2 Layer Forcefields ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.192 13.8436 108.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.528 19.3802 103.997";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.25125 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.528 19.3802 101.504";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.252 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.314 10.6884 105";rotation = "0 0 -1 100.174";scale = "0.249978 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.945 9.71135 104.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "2.6715 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";nametoset = " Office complex Roof ->";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.88 13.8924 104.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 1.38645 8.1673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.39 78.4251 104.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.679 9.88718 108.75";rotation = "0.99217 0.088312 -0.0883182 90.45";scale = "0.750045 0.166667 8.16688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.301 78.9171 104.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "190.819 11.7623 106.991";rotation = "0.176623 -0.984279 0 89.9997";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = "Danger Zone ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.213 79.4096 105.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.426 79.807 105";rotation = "0.996062 0.0886644 1.1239e-07 180";scale = "1.12545 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "211.191 4.96234 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "1.92095 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.752 6.30482 104.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 6.49997 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.957 9.57819 107";rotation = "-0.0628183 0.705711 0.705709 172.812";scale = "0.125 1.33333 8.16686";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.905 11.7179 103.505";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 1.52799 2.99";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "221.445 4.38095 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.477 9.59704 109";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.875008 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.526 -6.69168 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.364 15.4535 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.72 -3.24777 104.047";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.24 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.72 -3.24777 101.498";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.249001 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.081 79.7784 110.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 7.00004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.352 9.2156 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.657 83.2893 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.525 80.3964 112.25";rotation = "-0.509113 -0.608605 0.608608 233.963";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.834 79.734 112";rotation = "-0.0886647 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.181 92.93 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.44 8.72346 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "205.184 82.7405 99.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.501 84.9743 105.25";rotation = "-0.992169 -0.088322 -0.0883161 90.4505";scale = "1.12494 0.166666 10.0006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "192.762 7.10813 101";rotation = "0 0 -1 52.0143";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.657 83.2893 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49997 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.537 74.229 110.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.875 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.831 91.2521 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.738 80.6483 105.25";rotation = "-0.0628184 0.705711 0.705709 172.811";scale = "0.125 0.166666 7.21832";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.101 84.2005 106";rotation = "0.608608 -0.509113 0.608606 233.962";scale = "0.25 0.166666 7.13828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "200.966 80.7197 105.01";rotation = "0.50911 0.60861 -0.608605 126.038";scale = "3.58894 4.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.187 72.551 112.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.728 80.687 108.249";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 0.166666 7.13808";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.513 80.289 108.75";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 1.33331 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "198.602 82.122 108.8";rotation = "0 0 -1 99.646";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.155 82.4658 100.75";rotation = "0.571008 0.682591 -0.456091 138.233";scale = "0.986067 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.513 80.289 112.25";rotation = "-0.0628162 0.705712 0.705709 172.811";scale = "0.999968 0.166666 7.04292";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.168 83.4461 110.5";rotation = "0.608607 -0.509115 0.608605 233.962";scale = "0.75 0.166667 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.683 -8.45781 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 6.50017 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "201.759 0.8487 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.552 6.68902 105.5";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.25 0.166666 7.00208";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.456 85.22 108.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "1.12596 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.645 -1.78393 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "2.49306 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.369 83.7364 110.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 7.00008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.815 84.3546 112.25";rotation = "-0.509113 -0.608605 0.608608 233.963";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.124 83.6922 112";rotation = "-0.0886647 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.539 6.58189 104.75";rotation = "-0.0628125 0.705712 -0.705709 187.189";scale = "0.99997 0.166666 9.0001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.611 1.84361 105.5";rotation = "0.540029 0.645554 0.540027 114.311";scale = "0.25 0.166666 8.99976";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.463 87.726 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.79133 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.472 87.6805 109";rotation = "0 0 1 79.8268";scale = "1.81436 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "193.798 -0.40379 101.4";rotation = "0.764272 -0.644894 -8.17462e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "StationInventory";position = "210.741 -5.32923 101";rotation = "0 0 1 125.843";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.484 8.47739 103";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.816 -6.8936 104.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.518 -3.53798 104.025";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.241001 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.518 -3.53798 101.478";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.238751 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.01 -3.44963 105.5";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.25 0.166666 79.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.57 -6.93775 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.078 -7.02606 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.764 -3.49381 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.332 2.15257 104.75";rotation = "-0.0819566 0.920772 -0.381394 183.889";scale = "0.99997 0.166666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.704 1.32162 105.28";rotation = "0.731006 -0.611512 0.302793 208.427";scale = "0.250062 0.166666 14.4158";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.137 93.1761 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.033 91.5424 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.99 91.7808 106.992";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.75351 0.333205 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.716 92.5622 110.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.875 0.166666 6.44958";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.787 91.4982 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.137 93.1761 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.861 92.2295 110.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.875 0.166666 7.78024";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.928 -10.7161 105.5";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25 0.166666 27.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "198.893 92.2691 100.99";rotation = "-0.992171 -0.0883135 -0.0883088 90.4499";scale = "9.01947 4.505 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.787 91.4982 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.669 92.8073 112.25";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.333264 3.76724";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.264 94.066 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66686 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.621 93.0529 110.75";rotation = "0.705712 0.0628147 0.705709 172.812";scale = "0.875 0.166666 16.4669";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.971 94.5514 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.484 91.593 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66688 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.767 92.72 110.75";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.875 0.166666 17.7673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.971 94.5514 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.777 91.1072 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.832 -7.07013 103";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "1 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.777 91.1072 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "209.601 95.9787 101";rotation = "0 0 1 171.287";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "196.432 93.6155 101";rotation = "0 0 1 169.568";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "195.5 -8.14822 101";rotation = "0 0 1 211.762";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.884 -10.47 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.345 100.502 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.50007 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "201.652 102.426 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.576 93.1193 112.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 6.50017 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 106.317";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.0915 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 101.547";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2735 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 109.522";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 111.776";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 106.282";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.109 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 101.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.262 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 109.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26225 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 112.007";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2465 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 106.293";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.1035 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 101.543";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.2715 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 109.52";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25975 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 112.01";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.245001 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.527 113.745 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.527 113.745 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.333 110.301 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.333 110.301 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "36.3775 0.371377 105.363";rotation = "-0.0236259 -0.030789 -0.999247 105.04";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.569 -0.034307 100.408";rotation = "0.0401026 -0.0307726 0.998722 75.073";scale = "1.25 1.66666 10";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "35.0427 1.39323 100.622";rotation = "0.303288 0.952899 1.20789e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "35.0427 1.39323 100.622";rotation = "1.73369e-06 -4.19433e-12 1 215.311";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/22.cs b/Univ/Data/2703588/Buildings/22.cs new file mode 100644 index 0000000..adbd42f --- /dev/null +++ b/Univ/Data/2703588/Buildings/22.cs @@ -0,0 +1,217 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.101 5.82426 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 40.0022";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.597 6.2672 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.382 4.73907 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.613 5.33574 101.75";rotation = "0.586094 -0.57293 0.572928 119.251";scale = "0.125 0.166666 38.0018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.125 4.84727 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.108 5.75584 108.25";rotation = "-0.0113509 0.999871 -0.0113509 90.0076";scale = "0.125 0.166666 36.0072";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "273.864 16.526 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.62 5.24461 107.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.132 4.73336 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.883 4.36438 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.877 5.0005 102.25";rotation = "0.581672 -0.568611 0.581669 239.246";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.296 -13.4719 100.75";rotation = "-0.00803102 0.707085 0.707083 179.08";scale = "0.125 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.364 5.51172 101.75";rotation = "-0.00803025 0.707085 -0.707083 180.92";scale = "0.125 0.166666 36.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.853 6.02297 101.25";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.125 0.166666 38.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.751 -11.5066 107";rotation = "0.572933 0.586088 0.57293 119.252";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.273 -12.4949 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.785 -12.9834 108.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "264.127 4.80166 102.75";rotation = "-0.00802672 0.707085 -0.707083 180.92";scale = "4.25085 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "274.32 -3.46904 108.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "5 0.166666 40.0084";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "283.181 46.7453 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.865 -3.71194 103";rotation = "0.19509 0.00221463 0.980783 178.724";scale = "0.375 0.833333 2.5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.478 -4.98012 102.838";rotation = "-0.548469 0.585082 0.597378 236.298";scale = "0.25017 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.764 -12.3926 102.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.276 -12.9038 101.75";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.888 4.11447 107";rotation = "0.58167 -0.568613 0.581669 239.246";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.788 -13.415 101.25";rotation = "-0.00803025 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.788 -13.4149 100.75";rotation = "-0.00803254 0.707082 0.707086 179.08";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.775 -12.8923 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.287 -13.4036 108.25";rotation = "-0.00802672 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.757 -11.7565 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.52 -12.6482 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.507 -11.7622 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.032 -13.1594 101.75";rotation = "0.568609 0.581673 0.581671 239.245";scale = "0.125 0.166666 37.0016";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.019 -12.2507 107.75";rotation = "-0.58609 0.572931 0.572929 119.252";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.544 -13.6706 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.04 -13.2276 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.531 -12.7392 108.25";rotation = "-0.0113562 0.999871 -0.0113562 90.0077";scale = "0.125 0.166666 36.0074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.258 -12.1312 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "313.4 37.4293 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.817 7.11372 102.25";rotation = "-0.00803138 0.707085 0.707083 179.08";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.41 25.1091 101.75";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 37";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.41 25.1091 101.25";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.409 25.1091 104.5";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "1 0.166666 36";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.404 25.359 101";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.404 25.359 102";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233 10.1365 103.11";rotation = "-0.00803541 0.707085 0.707083 179.08";scale = "0.249817 0.166666 21.7602";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "231.827 21.4824 103.278";rotation = "0.999871 0.0113539 -0.0113587 90.0071";scale = "1.3473 0.238094 1.74586";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.823 6.86378 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.295 16.6691 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.133 18.362 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.293 15.3509 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.473 13.9775 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "231.22 24.3091 104.591";rotation = "0.715092 -0.69903 -8.86084e-07 180";scale = "0.336364 0.359758 0.114286";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate3";position = "231.203 25.0589 104.841";rotation = "-0.00802925 0.707085 -0.707083 180.921";scale = "0.833332 0.83333 1.81818";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.969 6.5945 103.137";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.3185 0.166666 23.212";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.073 20.9306 103.014";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.257 0.166666 30.3538";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.969 6.5945 105.44";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.2785 0.166666 23.212";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "292.951 56.9697 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.073 20.9306 105.374";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.3115 0.166666 30.3538";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "274.773 -23.4636 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.358 16.3557 102.25";rotation = "-0.0113571 0.999871 -0.0113571 90.0077";scale = "0.125 6.16667 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.651 25.3874 100.75";rotation = "0.00803349 -0.707078 0.70709 179.08";scale = "4.9998 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.375 15.4241 106.248";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 6.1666 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.154 25.3533 101.504";rotation = "0.707085 0.00803194 -0.707083 180.92";scale = "0.252 0.166666 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.154 25.3533 104.5";rotation = "-0.0113571 0.999871 -0.0113571 90.0077";scale = "1 0.166666 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.073 6.86946 102.25";rotation = "0.568609 0.581673 -0.581671 120.754";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.085 6.36961 101.75";rotation = "0.568609 0.581673 -0.581671 120.754";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.097 5.86975 101.25";rotation = "-0.586094 0.572929 0.572927 119.251";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.72 6.58884 105.998";rotation = "0.999936 0.011357 1.4396e-08 180";scale = "0.125 0.166666 6.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "254.325 -3.92316 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 119.997";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.823 20.9249 105.998";rotation = "0.999936 0.011357 1.4396e-08 180";scale = "0.125 0.166666 6.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "217.573 20.9193 103.999";rotation = "0.707085 0.00803152 -0.707083 180.92";scale = "0.749502 0.166666 5.64544";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";cankill = "1";canmove = 1;closedscale = "0.749502 0.166666 5.64544";hasslided = "0";isdoor = "1";issliding = "0";moving = "open";openedscale = "0.749502 0.166666 0.1";prevscale = "0.749502 0.166666 5.64544";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.573 20.9192 105.748";rotation = "0.707085 0.00803152 -0.707083 180.92";scale = "0.125 0.166666 6.6457";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.605 6.47265 105.998";rotation = "0.999936 0.011357 1.4396e-08 180";scale = "1.01326 0.166666 6.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.46 22.6385 105.498";rotation = "-0.0113561 0.999936 1.26751e-06 180";scale = "0.125 1.35969 5.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.495 21.0993 105.748";rotation = "-0.00803014 0.707082 0.707086 179.08";scale = "0.125 0.166666 7.15824";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.916 24.6661 102.25";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.335 6.17101 101.75";rotation = "-0.00803138 0.707085 0.707083 179.08";scale = "0.125 0.166666 36.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.347 5.67107 101.25";rotation = "-0.00803421 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.324 6.67093 103.144";rotation = "0.572931 0.586092 0.572927 119.251";scale = "0.3225 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.323 6.67083 105.62";rotation = "0.572931 0.586092 0.572927 119.251";scale = "0.25 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.916 24.6661 106.25";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.91 24.916 101";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.91 24.916 102.5";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "282.272 86.7347 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.329 6.42092 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "322.264 87.6415 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 399.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.014 -34.597 100.75";rotation = "-0.00803361 0.707089 0.707079 179.08";scale = "5.00002 0.166666 39.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "315.217 -42.55 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "332.034 97.8665 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "295.676 -62.9994 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 199.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.323 106.216 115.582";rotation = "0.999936 0.0113593 1.4399e-08 180";scale = "0.250073 0.500137 4.074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.549 107.222 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "301.81 107.184 107.273";rotation = "-0.572932 -0.586092 0.572927 119.251";scale = "3.1365 6.66707 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.801 86.4127 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.824 106.659 118.291";rotation = "0.707085 0.00803308 -0.707083 180.92";scale = "1.3545 0.499453 40.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 111.523";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "1.01175 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.843 104.458 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 479.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "231.863 104.093 111";rotation = "0.572928 0.58609 0.572933 119.251";scale = "5 40 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 116.291";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.35425 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 117.25";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.762 109.093 112.073";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.789537 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.706 111.344 112.073";rotation = "0.586092 -0.57293 0.572929 119.251";scale = "0.749942 0.166667 5.63542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "300.04 110.76 111.75";rotation = "-0.586092 0.572928 0.572931 119.251";scale = "0.375107 0.166666 7.99408";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "336.782 88.4313 109.5";rotation = "0 0 1 222.622";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.767 111.664 111.823";rotation = "0.699031 0.715092 9.06443e-07 180";scale = "0.87473 0.166666 4.646";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.807 109.915 112.073";rotation = "-0.0080311 0.707085 0.707083 179.08";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "305.518 107.265 117.342";rotation = "0.999871 0.0113564 -0.0113565 90.0071";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.018 111.67 111.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.483 113.158 110.911";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.941 5.63548";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.007 112.17 110.75";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.333 106.217 111";rotation = "0.715096 -0.699026 -8.86079e-07 180";scale = "0.125 1.66444 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.051 86.5181 111.5";rotation = "-0.00468677 0.999978 -0.00468676 90.0013";scale = "1 0.166666 22.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.799 86.6628 111.5";rotation = "0.57554 0.580958 0.575536 119.69";scale = "1 0.166666 21.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.995 112.67 110.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.322 106.717 101";rotation = "0 0 1 88.6979";scale = "0.125 1.6641 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.984 113.169 109.75";rotation = "0.568608 0.581675 0.581669 239.246";scale = "0.125 0.166666 8.00002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.31 107.217 101";rotation = "0 0 1 88.6979";scale = "0.125 1.66376 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.044 107.665 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "316.807 107.523 116";rotation = "-0.57293 -0.586094 0.572927 119.251";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.815 106.774 108.568";rotation = "0.707085 0.00803745 0.707083 179.08";scale = "1.2165 0.50012 7.00384";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "316.805 107.274 103.568";rotation = "0.707085 0.00803632 0.707083 179.08";scale = "1.28376 0.166666 7.00384";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";cankill = "1";canmove = 1;closedscale = "1.28376 0.166666 7.00384";hasslided = "0";isdoor = "1";issliding = "0";moving = "open";openedscale = "1.28376 0.166666 0.1";prevscale = "1.28376 0.166666 7.00384";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.793 107.774 100.75";rotation = "0.586094 -0.572929 0.572927 119.251";scale = "0.125 0.166666 7.00178";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.112 126.467 113.5";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "2 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "340.497 92.2163 99.5";rotation = "0 0 -1 90.5371";scale = "3 4 20";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "321.07 106.871 111";rotation = "0.715096 -0.699026 -8.86079e-07 180";scale = "0.375098 0.501797 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "309.934 112.482 109.5";rotation = "0 0 1 86.2313";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "336.712 95.931 109.5";rotation = "0 0 -1 38.8259";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.301 86.5205 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.956 111.541 109.5";rotation = "0 0 -1 91.3014";scale = "1.81372 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "345.995 92.5181 113.25";rotation = "-0.00468677 0.999978 -0.00468676 90.0013";scale = "0.125 3.83337 22.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.693 97.9121 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "302.075 117.191 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.28 88.76 109.5";rotation = "0 0 1 179.464";scale = "0.125 1.32623 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "336.72 97.931 109.5";rotation = "0 0 1 89.4628";scale = "0.125 1.18472 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.541 107.7 117.25";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 6.49967 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.513 90.5105 109.5";rotation = "0.999989 0.0046862 5.94018e-09 180";scale = "0.500022 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.117 115.49 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.500133 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.294 118.812 100.25";rotation = "-0.999871 -0.0113599 -0.0113552 90.0077";scale = "0.874985 0.166666 22.5018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.001 93.0074 106.134";rotation = "-0.575539 -0.580957 0.575538 119.691";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.985 90.7556 106.956";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.937 90.7551 107.84";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.147 93.0088 105.21";rotation = "-0.575539 -0.580957 0.575538 119.691";scale = "0.125 0.166666 4.50318";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.918 90.7549 108.516";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5034";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.355 90.759 104.486";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50338";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.761 90.7533 109.25";rotation = "-0.579145 0.573741 0.579148 239.689";scale = "0.125 0.166666 5.50324";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.195 97.77 113.25";rotation = "0.579147 -0.573743 0.579144 239.689";scale = "0.125 0.166666 22";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.587 90.7612 103.524";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "171.48 54.2105 111";rotation = "0.0113522 -0.999871 -0.0113544 90.0071";scale = "19.6986 195.693 2.72727";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.763 90.7629 102.721";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50318";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.932 90.7645 101.975";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50318";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "348.133 90.7663 101.035";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5034";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "348.261 90.7675 100.25";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50338";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.673 115.73 106.716";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.891 115.735 105.184";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.626 115.729 107.43";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.82 115.733 106.033";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.361 115.723 109.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.013 115.738 104.467";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.089 115.739 103.759";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.135 115.74 103.098";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.608 115.729 108.27";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.308 115.744 102.541";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.364 115.746 101.987";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.583 115.751 101.509";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.689 115.753 100.819";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.861 115.757 100.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.786 119.045 115.639";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.681 0.166666 7.756";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.374 115.291 100.25";rotation = "0.999871 0.0113551 -0.0113599 90.0071";scale = "0.625162 0.166666 6.9057";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "324.697 110.6 100";rotation = "0 0 -1 2.85806";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.218 95.3855 109.5";rotation = "0 0 1 179.464";scale = "0.125 1.5899 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.047 118.442 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.502627 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "343.94 97.999 109.5";rotation = "0 0 1 89.4628";scale = "0.125 1.33506 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "340.216 98.1977 109.25";rotation = "-0.00331448 0.707104 0.707102 179.621";scale = "1.11036 0.166666 16.7339";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.879 114.237 100";rotation = "0 0 -1 79.6606";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.914 114.267 102";rotation = "0 0 1 99.4168";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.193 98.02 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.106 126.717 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "336.802 107.979 111";rotation = "-0.572927 -0.586097 0.572927 119.251";scale = "5 9.9999 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "309.711 122.285 109.5";rotation = "0 0 1 89.115";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.218 117.516 100";rotation = "0 0 -1 104.231";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "373.207 -19.719 110.999";rotation = "0.707078 0.00802819 0.70709 179.08";scale = "5 86.6663 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.587 117.915 102";rotation = "0 0 1 76.5265";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.696 122.978 109.5";rotation = "0 0 -1 91.3014";scale = "1.96677 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "314.325 122.405 115.047";rotation = "-0.0819694 -0.6924 0.716843 189.701";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.356 126.723 109.75";rotation = "0.707085 0.00803102 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.356 126.723 110.193";rotation = "0.707085 0.00803102 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.35 127.154 114.504";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "1.248 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.351 127.154 117.25";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.446 120.274 100";rotation = "0 0 1 70.825";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "314.689 123.039 100";rotation = "0 0 1 33.8745";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.477 120.721 101.03";rotation = "0 0 1 71.4238";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "317.107 124.09 102";rotation = "0 0 1 77.3115";scale = "0.125 0.125 0.125";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "316.594 124.167 102";rotation = "0 0 1 132.232";scale = "0.125 0.125 0.125";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.635 120.861 102.06";rotation = "0 0 1 74.28";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "317.834 123.932 102";rotation = "0 0 1 129.919";scale = "0.125 0.125 0.125";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "317.142 124.216 100";rotation = "0 0 1 8.10927";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.846 121.011 103.09";rotation = "0 0 -1 112.273";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "320.047 123.011 100";rotation = "0 0 1 25.0779";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "285.905 -73.2241 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.601 127.16 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "321.264 121.539 100";rotation = "0 0 -1 11.8837";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.158 2.30366 111";rotation = "0.581673 -0.568609 -0.581671 120.754";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "350.292 108.293 111";rotation = "0.572924 0.586104 0.572923 119.252";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "154.505 -7.69105 119.5";rotation = "0 0 -1 91.3014";scale = "19.6986 78.2765 2.72727";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "154.577 -16.1915 99.5";rotation = "0 0 -1 91.3014";scale = "9.99998 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "154.77 -24.6895 119.5";rotation = "0 0 -1 91.3014";scale = "19.6986 78.2765 2.72727";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "357.464 12.0547 100";rotation = "0 0 1 186.801";scale = "10 10 10";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "154.997 -34.6868 111";rotation = "0.581671 -0.568609 0.581673 239.245";scale = "19.6986 78.2765 2.72727";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "337.028 -122.077 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "174.887 -95.7505 111";rotation = "0.707078 0.00803066 0.70709 179.079";scale = "5 40 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "277.692 -151.924 110.998";rotation = "-0.572939 -0.586092 0.572919 119.251";scale = "5 66.666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/26.cs b/Univ/Data/2703588/Buildings/26.cs new file mode 100644 index 0000000..014fe59 --- /dev/null +++ b/Univ/Data/2703588/Buildings/26.cs @@ -0,0 +1,222 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.843 104.458 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 479.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.158 2.30366 111";rotation = "0.581673 -0.568609 -0.581671 120.754";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "174.571 -15.7372 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 13.3333 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.157 2.3039 120.75";rotation = "-0.00802685 0.707085 -0.707083 180.92";scale = "9.99982 0.166666 74.0006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "154.997 -34.6868 111";rotation = "0.581671 -0.568609 0.581673 239.245";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "134.582 -16.6458 100.749";rotation = "0.647901 -0.633354 -0.423186 226.817";scale = "10 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.329 6.42092 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.347 5.67107 101.25";rotation = "-0.00803421 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.605 6.47265 105.998";rotation = "0.999936 0.011357 1.4396e-08 180";scale = "1.01326 0.166666 6.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.335 6.17101 101.75";rotation = "-0.00803138 0.707085 0.707083 179.08";scale = "0.125 0.166666 36.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.916 24.6661 102.25";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.324 6.67093 103.144";rotation = "0.572931 0.586092 0.572927 119.251";scale = "0.3225 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.323 6.67083 105.62";rotation = "0.572931 0.586092 0.572927 119.251";scale = "0.25 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.916 24.6661 106.25";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.74 -23.9205 100.75";rotation = "0.272776 0.680292 0.680291 210.516";scale = "0.749945 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.241 -22.7205 100.75";rotation = "0.00802568 -0.707082 0.707086 179.08";scale = "0.749942 0.166666 15.6034";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.46 22.6385 105.498";rotation = "-0.0113561 0.999936 1.26751e-06 180";scale = "0.125 1.35969 5.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.495 21.0993 105.748";rotation = "-0.00803014 0.707082 0.707086 179.08";scale = "0.125 0.166666 7.15824";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.079 -26.5807 101";rotation = "0 0 -1 1.30144";scale = "0.125 2.60057 10";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.573 20.9192 105.748";rotation = "0.707085 0.00803152 -0.707083 180.92";scale = "0.125 0.166666 6.6457";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.91 24.916 101";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "217.573 20.9193 103.999";rotation = "0.707085 0.00803152 -0.707083 180.92";scale = "0.749502 0.166666 5.64544";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";prevscale = "0.749502 0.166666 5.64544";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.91 24.916 102.5";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.72 6.58884 105.998";rotation = "0.999936 0.011357 1.4396e-08 180";scale = "0.125 0.166666 6.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.823 20.9249 105.998";rotation = "0.999936 0.011357 1.4396e-08 180";scale = "0.125 0.166666 6.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.121 -14.6127 106.25";rotation = "-0.00803025 0.707085 0.707083 179.08";scale = "0.956497 0.166666 42.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "254.325 -3.92316 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 119.997";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.097 5.86975 101.25";rotation = "-0.586094 0.572929 0.572927 119.251";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.085 6.36961 101.75";rotation = "0.568609 0.581673 -0.581671 120.754";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.073 6.86946 102.25";rotation = "0.568609 0.581673 -0.581671 120.754";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.651 25.3874 100.75";rotation = "0.00803349 -0.707078 0.70709 179.08";scale = "4.9998 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.358 16.3557 102.25";rotation = "-0.0113571 0.999871 -0.0113571 90.0077";scale = "0.125 6.16667 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.375 15.4241 106.248";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 6.1666 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.969 6.5945 103.137";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.3185 0.166666 23.212";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.969 6.5945 105.44";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.2785 0.166666 23.212";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "171.48 54.2105 111";rotation = "0.0113522 -0.999871 -0.0113544 90.0071";scale = "5 33.333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.014 -34.597 100.75";rotation = "-0.00803361 0.707089 0.707079 179.08";scale = "5.00002 0.166666 39.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.56 -14.6028 106.25";rotation = "0.581672 -0.568609 0.581671 239.246";scale = "0.125 6.66707 39.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.154 25.3533 101.504";rotation = "0.707085 0.00803194 -0.707083 180.92";scale = "0.252 0.166666 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.154 25.3533 104.5";rotation = "-0.0113571 0.999871 -0.0113571 90.0077";scale = "1 0.166666 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.073 20.9306 103.014";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.257 0.166666 30.3538";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.073 20.9306 105.374";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.3115 0.166666 30.3538";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.473 13.9775 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.293 15.3509 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.295 16.6691 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.823 6.86378 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.133 18.362 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233 10.1365 103.11";rotation = "-0.00803541 0.707085 0.707083 179.08";scale = "0.249817 0.166666 21.7602";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.41 25.1091 101.25";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.41 25.1091 101.75";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 37";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.817 7.11372 102.25";rotation = "-0.00803138 0.707085 0.707083 179.08";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.409 25.1091 104.5";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "1 0.166666 36";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "231.22 24.3091 104.591";rotation = "0.715092 -0.69903 -8.86084e-07 180";scale = "0.336364 0.359758 0.114286";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "231.827 21.4824 103.278";rotation = "0.999871 0.0113539 -0.0113587 90.0071";scale = "1.3473 0.238094 1.74586";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate3";position = "231.203 25.0589 104.841";rotation = "-0.00802925 0.707085 -0.707083 180.921";scale = "0.833332 0.83333 1.81818";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.404 25.359 101";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.404 25.359 102";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.788 -13.415 101.25";rotation = "-0.00803025 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.788 -13.4149 100.75";rotation = "-0.00803254 0.707082 0.707086 179.08";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.276 -12.9038 101.75";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.287 -13.4036 108.25";rotation = "-0.00802672 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.764 -12.3926 102.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.775 -12.8923 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "273.864 16.526 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.883 4.36438 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.888 4.11447 107";rotation = "0.58167 -0.568613 0.581669 239.246";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.478 -4.98012 102.838";rotation = "-0.548469 0.585082 0.597378 236.298";scale = "0.25017 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.258 -12.1312 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.865 -3.71194 103";rotation = "0.19509 0.00221463 0.980783 178.724";scale = "0.375 0.833333 2.5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "274.773 -23.4636 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "292.951 56.9697 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.597 6.2672 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "264.127 4.80166 102.75";rotation = "-0.00802672 0.707085 -0.707083 180.92";scale = "4.25085 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.125 4.84727 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.613 5.33574 101.75";rotation = "0.586094 -0.57293 0.572928 119.251";scale = "0.125 0.166666 38.0018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.101 5.82426 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 40.0022";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.132 4.73336 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.62 5.24461 107.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "274.32 -3.46904 108.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "5 0.166666 40.0084";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.108 5.75584 108.25";rotation = "-0.0113509 0.999871 -0.0113509 90.0076";scale = "0.125 0.166666 36.0072";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.032 -13.1594 101.75";rotation = "0.568609 0.581673 0.581671 239.245";scale = "0.125 0.166666 37.0016";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.544 -13.6706 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.04 -13.2276 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.52 -12.6482 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.507 -11.7622 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.019 -12.2507 107.75";rotation = "-0.58609 0.572931 0.572929 119.252";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.531 -12.7392 108.25";rotation = "-0.0113562 0.999871 -0.0113562 90.0077";scale = "0.125 0.166666 36.0074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "174.887 -95.7505 111";rotation = "0.707078 0.00803066 0.70709 179.079";scale = "5 40 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "295.676 -62.9994 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 199.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.382 4.73907 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.751 -11.5066 107";rotation = "0.572933 0.586088 0.57293 119.252";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.877 5.0005 102.25";rotation = "0.581672 -0.568611 0.581669 239.246";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.757 -11.7565 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.273 -12.4949 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.364 5.51172 101.75";rotation = "-0.00803025 0.707085 -0.707083 180.92";scale = "0.125 0.166666 36.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.785 -12.9834 108.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.296 -13.4719 100.75";rotation = "-0.00803102 0.707085 0.707083 179.08";scale = "0.125 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.853 6.02297 101.25";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.125 0.166666 38.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "283.181 46.7453 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "231.863 104.093 111";rotation = "0.572928 0.58609 0.572933 119.251";scale = "5 40 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "332.034 97.8665 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "282.272 86.7347 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "313.4 37.4293 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "315.217 -42.55 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "285.905 -73.2241 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "322.264 87.6415 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 399.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "337.028 -122.077 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.323 106.216 115.582";rotation = "0.999936 0.0113593 1.4399e-08 180";scale = "0.250073 0.500137 4.074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.549 107.222 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.706 111.344 112.073";rotation = "0.586092 -0.57293 0.572929 119.251";scale = "0.749942 0.166667 5.63542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.483 113.158 110.911";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.941 5.63548";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.767 111.664 111.823";rotation = "0.699031 0.715092 9.06443e-07 180";scale = "0.87473 0.166666 4.646";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.807 109.915 112.073";rotation = "-0.0080311 0.707085 0.707083 179.08";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "301.81 107.184 107.273";rotation = "-0.572932 -0.586092 0.572927 119.251";scale = "3.1365 6.66707 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "300.04 110.76 111.75";rotation = "-0.586092 0.572928 0.572931 119.251";scale = "0.375107 0.166666 7.99408";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.112 126.467 113.5";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "2 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.824 106.659 118.291";rotation = "0.707085 0.00803308 -0.707083 180.92";scale = "1.3545 0.499453 40.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.018 111.67 111.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.007 112.17 110.75";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 111.523";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "1.01175 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.995 112.67 110.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 116.291";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.35425 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 117.25";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.984 113.169 109.75";rotation = "0.568608 0.581675 0.581669 239.246";scale = "0.125 0.166666 8.00002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.762 109.093 112.073";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.789537 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "305.518 107.265 117.342";rotation = "0.999871 0.0113564 -0.0113565 90.0071";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "302.075 117.191 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.106 126.717 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.541 107.7 117.25";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 6.49967 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.044 107.665 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.333 106.217 111";rotation = "0.715096 -0.699026 -8.86079e-07 180";scale = "0.125 1.66444 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.322 106.717 101";rotation = "0 0 1 88.6979";scale = "0.125 1.6641 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.31 107.217 101";rotation = "0 0 1 88.6979";scale = "0.125 1.66376 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "309.934 112.482 109.5";rotation = "0 0 1 86.2313";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.956 111.541 109.5";rotation = "0 0 -1 91.3014";scale = "1.81372 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "316.807 107.523 116";rotation = "-0.57293 -0.586094 0.572927 119.251";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.815 106.774 108.568";rotation = "0.707085 0.00803745 0.707083 179.08";scale = "1.2165 0.50012 7.00384";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "316.805 107.274 103.568";rotation = "0.707085 0.00803632 0.707083 179.08";scale = "1.28376 0.166666 7.00384";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";cankill = "1";canmove = 1;hasslided = "0";isdoor = "1";issliding = "0";moving = "open";prevscale = "1.28376 0.166666 7.00384";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.793 107.774 100.75";rotation = "0.586094 -0.572929 0.572927 119.251";scale = "0.125 0.166666 7.00178";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.356 126.723 109.75";rotation = "0.707085 0.00803102 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.356 126.723 110.193";rotation = "0.707085 0.00803102 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.35 127.154 114.504";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "1.248 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.117 115.49 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.500133 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.351 127.154 117.25";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "277.692 -151.924 110.998";rotation = "-0.572939 -0.586092 0.572919 119.251";scale = "5 66.666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.361 115.723 109.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.786 119.045 115.639";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.681 0.166666 7.756";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.626 115.729 107.43";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.673 115.73 106.716";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.608 115.729 108.27";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.82 115.733 106.033";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.891 115.735 105.184";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.013 115.738 104.467";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.089 115.739 103.759";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.135 115.74 103.098";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "321.07 106.871 111";rotation = "0.715096 -0.699026 -8.86079e-07 180";scale = "0.375098 0.501797 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.308 115.744 102.541";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.364 115.746 101.987";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.583 115.751 101.509";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.689 115.753 100.819";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.861 115.757 100.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.047 118.442 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.502627 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.801 86.4127 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "309.711 122.285 109.5";rotation = "0 0 1 89.115";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.294 118.812 100.25";rotation = "-0.999871 -0.0113599 -0.0113552 90.0077";scale = "0.874985 0.166666 22.5018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.374 115.291 100.25";rotation = "0.999871 0.0113551 -0.0113599 90.0071";scale = "0.625162 0.166666 6.9057";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.696 122.978 109.5";rotation = "0 0 -1 91.3014";scale = "1.96677 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "336.782 88.4313 109.5";rotation = "0 0 1 222.622";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.799 86.6628 111.5";rotation = "0.57554 0.580958 0.575536 119.69";scale = "1 0.166666 21.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "314.325 122.405 115.047";rotation = "-0.0819694 -0.6924 0.716843 189.701";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.601 127.16 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.051 86.5181 111.5";rotation = "-0.00468677 0.999978 -0.00468676 90.0013";scale = "1 0.166666 22.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "324.697 110.6 100";rotation = "0 0 -1 2.85806";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "314.689 123.039 100";rotation = "0 0 1 33.8745";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.693 97.9121 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.879 114.237 100";rotation = "0 0 -1 79.6606";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.914 114.267 102";rotation = "0 0 1 99.4168";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "316.594 124.167 102";rotation = "0 0 1 132.232";scale = "0.125 0.125 0.125";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "336.712 95.931 109.5";rotation = "0 0 -1 38.8259";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "317.107 124.09 102";rotation = "0 0 1 77.3115";scale = "0.125 0.125 0.125";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "317.142 124.216 100";rotation = "0 0 1 8.10927";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "317.834 123.932 102";rotation = "0 0 1 129.919";scale = "0.125 0.125 0.125";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.218 117.516 100";rotation = "0 0 -1 104.231";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "336.72 97.931 109.5";rotation = "0 0 1 89.4628";scale = "0.125 1.18472 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "340.497 92.2163 99.5";rotation = "0 0 -1 90.5371";scale = "3 4 20";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.587 117.915 102";rotation = "0 0 1 76.5265";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "345.995 92.5181 113.25";rotation = "-0.00468677 0.999978 -0.00468676 90.0013";scale = "0.125 3.83337 22.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "320.047 123.011 100";rotation = "0 0 1 25.0779";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.446 120.274 100";rotation = "0 0 1 70.825";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.477 120.721 101.03";rotation = "0 0 1 71.4238";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.635 120.861 102.06";rotation = "0 0 1 74.28";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.846 121.011 103.09";rotation = "0 0 -1 112.273";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "321.264 121.539 100";rotation = "0 0 -1 11.8837";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.301 86.5205 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.28 88.76 109.5";rotation = "0 0 1 179.464";scale = "0.125 1.32623 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "336.802 107.979 111";rotation = "-0.572927 -0.586097 0.572927 119.251";scale = "5 9.9999 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "340.216 98.1977 109.25";rotation = "-0.00331448 0.707104 0.707102 179.621";scale = "1.11036 0.166666 16.7339";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.513 90.5105 109.5";rotation = "0.999989 0.0046862 5.94018e-09 180";scale = "0.500022 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.195 97.77 113.25";rotation = "0.579147 -0.573743 0.579144 239.689";scale = "0.125 0.166666 22";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.937 90.7551 107.84";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.918 90.7549 108.516";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5034";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.761 90.7533 109.25";rotation = "-0.579145 0.573741 0.579148 239.689";scale = "0.125 0.166666 5.50324";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.985 90.7556 106.956";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.001 93.0074 106.134";rotation = "-0.575539 -0.580957 0.575538 119.691";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.147 93.0088 105.21";rotation = "-0.575539 -0.580957 0.575538 119.691";scale = "0.125 0.166666 4.50318";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.355 90.759 104.486";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50338";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.587 90.7612 103.524";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "343.94 97.999 109.5";rotation = "0 0 1 89.4628";scale = "0.125 1.33506 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.763 90.7629 102.721";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50318";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.932 90.7645 101.975";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50318";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "348.133 90.7663 101.035";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5034";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "348.261 90.7675 100.25";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50338";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.218 95.3855 109.5";rotation = "0 0 1 179.464";scale = "0.125 1.5899 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "357.464 12.0547 100";rotation = "0 0 1 186.801";scale = "10 10 10";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.193 98.02 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "373.207 -19.719 110.999";rotation = "0.707078 0.00802819 0.70709 179.08";scale = "5 86.6663 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "350.292 108.293 111";rotation = "0.572924 0.586104 0.572923 119.252";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/28.cs b/Univ/Data/2703588/Buildings/28.cs new file mode 100644 index 0000000..f71c57e --- /dev/null +++ b/Univ/Data/2703588/Buildings/28.cs @@ -0,0 +1,121 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 111.523";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "1.01175 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.762 109.093 112.073";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.789537 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.793 107.774 100.75";rotation = "0.586094 -0.572929 0.572927 119.251";scale = "0.125 0.166666 7.00178";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.044 107.665 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 116.291";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.35425 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "300.04 110.76 111.75";rotation = "-0.586092 0.572928 0.572931 119.251";scale = "0.375107 0.166666 7.99408";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 117.25";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.018 111.67 111.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.007 112.17 110.75";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.995 112.67 110.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.767 111.664 111.823";rotation = "0.699031 0.715092 9.06443e-07 180";scale = "0.87473 0.166666 4.646";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.549 107.222 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.984 113.169 109.75";rotation = "0.568608 0.581675 0.581669 239.246";scale = "0.125 0.166666 8.00002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.807 109.915 112.073";rotation = "-0.0080311 0.707085 0.707083 179.08";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.956 111.541 109.5";rotation = "0 0 -1 91.3014";scale = "1.81372 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.706 111.344 112.073";rotation = "0.586092 -0.57293 0.572929 119.251";scale = "0.749942 0.166667 5.63542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "302.075 117.191 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.117 115.49 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.500133 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.294 118.812 100.25";rotation = "-0.999871 -0.0113599 -0.0113552 90.0077";scale = "0.874985 0.166666 22.5018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.483 113.158 110.911";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.941 5.63548";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.135 115.74 103.098";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.364 115.746 101.987";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.308 115.744 102.541";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.089 115.739 103.759";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.583 115.751 101.509";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.013 115.738 104.467";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.689 115.753 100.819";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.891 115.735 105.184";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.861 115.757 100.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.82 115.733 106.033";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.673 115.73 106.716";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.626 115.729 107.43";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.608 115.729 108.27";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.374 115.291 100.25";rotation = "0.999871 0.0113551 -0.0113599 90.0071";scale = "0.625162 0.166666 6.9057";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.361 115.723 109.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.047 118.442 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.502627 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.879 114.237 100";rotation = "0 0 -1 79.6606";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.786 119.045 115.639";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.681 0.166666 7.756";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.914 114.267 102";rotation = "0 0 1 99.4168";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.541 107.7 117.25";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 6.49967 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.112 126.467 113.5";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "2 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "282.272 86.7347 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "324.697 110.6 100";rotation = "0 0 -1 2.85806";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.218 117.516 100";rotation = "0 0 -1 104.231";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.587 117.915 102";rotation = "0 0 1 76.5265";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.696 122.978 109.5";rotation = "0 0 -1 91.3014";scale = "1.96677 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "317.082 123.795 102";rotation = "0 0 1 8.10927";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.446 120.274 100";rotation = "0 0 1 70.825";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "319.89 122.676 102";rotation = "0 0 1 25.0779";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "317.142 124.216 100";rotation = "0 0 1 8.10927";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.477 120.721 101.03";rotation = "0 0 1 71.4238";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "320.047 123.011 100";rotation = "0 0 1 25.0779";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "314.325 122.405 115.047";rotation = "-0.0819694 -0.6924 0.716843 189.701";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.635 120.861 102.06";rotation = "0 0 1 74.28";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "318.371 122.443 100";rotation = "0 0 1 36.1541";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.846 121.011 103.09";rotation = "0 0 -1 112.273";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "314.689 123.039 100";rotation = "0 0 1 33.8745";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "294.151 124.763 109.5";rotation = "0 0 -1 38.5881";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.35 127.154 113.5";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "2 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "321.264 121.539 100";rotation = "0 0 -1 11.8837";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.601 127.16 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.106 126.717 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "332.034 97.8665 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "313.4 37.4293 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "292.951 56.9697 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "273.864 16.526 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.382 4.73907 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.101 5.82426 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 40.0022";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.597 6.2672 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.613 5.33574 101.75";rotation = "0.586094 -0.57293 0.572928 119.251";scale = "0.125 0.166666 38.0018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.108 5.75584 108.25";rotation = "-0.0113509 0.999871 -0.0113509 90.0076";scale = "0.125 0.166666 36.0072";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.125 4.84727 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.62 5.24461 107.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.132 4.73336 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "283.181 46.7453 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.883 4.36438 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.296 -13.4719 100.75";rotation = "-0.00803102 0.707085 0.707083 179.08";scale = "0.125 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.853 6.02297 101.25";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.125 0.166666 38.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.877 5.0005 102.25";rotation = "0.581672 -0.568611 0.581669 239.246";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.364 5.51172 101.75";rotation = "-0.00803025 0.707085 -0.707083 180.92";scale = "0.125 0.166666 36.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.785 -12.9834 108.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.273 -12.4949 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.751 -11.5066 107";rotation = "0.572933 0.586088 0.57293 119.252";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "264.127 4.80166 102.75";rotation = "-0.00802672 0.707085 -0.707083 180.92";scale = "4.25085 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "274.32 -3.46904 108.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "5 0.166666 40.0084";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "322.264 87.6415 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 399.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.865 -3.71194 103";rotation = "0.19509 0.00221463 0.980783 178.724";scale = "0.375 0.833333 2.5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.478 -4.98012 102.838";rotation = "-0.548469 0.585082 0.597378 236.298";scale = "0.25017 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.888 4.11447 107";rotation = "0.58167 -0.568613 0.581669 239.246";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.764 -12.3926 102.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.775 -12.8923 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.276 -12.9038 101.75";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.788 -13.415 101.25";rotation = "-0.00803025 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.788 -13.4149 100.75";rotation = "-0.00803254 0.707082 0.707086 179.08";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.287 -13.4036 108.25";rotation = "-0.00802672 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.757 -11.7565 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.507 -11.7622 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.52 -12.6482 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.019 -12.2507 107.75";rotation = "-0.58609 0.572931 0.572929 119.252";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.032 -13.1594 101.75";rotation = "0.568609 0.581673 0.581671 239.245";scale = "0.125 0.166666 37.0016";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.531 -12.7392 108.25";rotation = "-0.0113562 0.999871 -0.0113562 90.0077";scale = "0.125 0.166666 36.0074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.04 -13.2276 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.544 -13.6706 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.258 -12.1312 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "254.325 -3.92316 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 119.997";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "274.773 -23.4636 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "315.217 -42.55 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.843 104.458 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 479.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "295.676 -62.9994 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 199.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.158 2.30366 111";rotation = "0.581673 -0.568609 -0.581671 120.754";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.505 -7.69105 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "154.577 -16.1915 99.5";rotation = "0 0 -1 91.3014";scale = "9.99998 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "285.905 -73.2241 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.77 -24.6895 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.997 -34.6868 111";rotation = "0.581671 -0.568609 0.581673 239.245";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "337.028 -122.077 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/29.cs b/Univ/Data/2703588/Buildings/29.cs new file mode 100644 index 0000000..2c09e37 --- /dev/null +++ b/Univ/Data/2703588/Buildings/29.cs @@ -0,0 +1,104 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.788 -13.415 101.25";rotation = "-0.00803025 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.788 -13.4149 100.75";rotation = "-0.00803254 0.707082 0.707086 179.08";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.276 -12.9038 101.75";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.764 -12.3926 102.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.478 -4.98012 102.838";rotation = "-0.548469 0.585082 0.597378 236.298";scale = "0.25017 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.865 -3.71194 103";rotation = "0.19509 0.00221463 0.980783 178.724";scale = "0.375 0.833332 2.5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "264.127 4.80166 102.75";rotation = "-0.00802672 0.707085 -0.707083 180.92";scale = "4.25085 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.52 -12.6482 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.032 -13.1594 101.75";rotation = "0.568609 0.581673 0.581671 239.245";scale = "0.125 0.166666 37.0016";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.125 4.84727 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.613 5.33574 101.75";rotation = "0.586094 -0.572929 0.572927 119.251";scale = "0.125 0.166666 38.0018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.544 -13.6706 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.04 -13.2276 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.597 6.2672 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.101 5.82426 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 40.0022";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "254.779 -23.9179 99.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "253.87 16.0717 99.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "272.877 5.0005 102.25";rotation = "0.581672 -0.568611 0.581669 239.246";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.364 5.51172 101.75";rotation = "-0.00803025 0.707085 -0.707083 180.92";scale = "0.125 0.166666 36.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "224.333 -4.60454 99.5";rotation = "0 0 -1 91.3014";scale = "5 19.9995 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.296 -13.4719 100.75";rotation = "-0.00803102 0.707085 0.707083 179.08";scale = "0.125 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.853 6.02297 101.25";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.125 0.166666 38.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "284.317 -3.24175 99.5";rotation = "0 0 -1 91.3014";scale = "25 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "245.689 -64.135 99.5";rotation = "0 0 -1 91.3014";scale = "5 33.3329 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "242.964 55.834 99.5";rotation = "0 0 -1 91.3014";scale = "5 33.3333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "184.568 -15.5105 99.5";rotation = "0 0 -1 91.3014";scale = "59.9997 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "305.22 -42.7771 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "303.403 37.2022 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "324.535 -12.3322 99.5";rotation = "0 0 -1 91.3014";scale = "49.9997 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "282.499 76.7373 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.577 -16.1915 99.5";rotation = "0 0 -1 91.3014";scale = "9.99998 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.158 2.30366 111";rotation = "0.581673 -0.568609 -0.581671 120.754";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.505 -7.69105 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "286.359 -93.2185 99.5";rotation = "0 0 -1 91.3014";scale = "9.99982 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.77 -24.6895 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.997 -34.6868 111";rotation = "0.581671 -0.568609 0.581673 239.245";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "262.052 96.2765 99.5";rotation = "0 0 -1 91.3014";scale = "5 46.6667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.549 107.222 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "267.046 -123.667 99.5";rotation = "0 0 -1 91.3014";scale = "5 46.6667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 111.523";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "1.01175 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.706 111.344 112.073";rotation = "0.586092 -0.57293 0.572929 119.251";scale = "0.749942 0.166667 5.63542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 116.291";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.35425 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 117.25";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.767 111.664 111.823";rotation = "0.699031 0.715092 9.06443e-07 180";scale = "0.87473 0.166666 4.646";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "300.04 110.76 111.75";rotation = "-0.586092 0.572928 0.572931 119.251";scale = "0.375107 0.166666 7.99408";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.807 109.915 112.073";rotation = "-0.0080311 0.707085 0.707083 179.08";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.762 109.093 112.073";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.789537 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.483 113.158 110.911";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.941 5.63548";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.018 111.67 111.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.007 112.17 110.75";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.995 112.67 110.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.984 113.169 109.75";rotation = "0.568608 0.581675 0.581669 239.246";scale = "0.125 0.166666 8.00002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.044 107.665 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.112 126.467 113.5";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "2 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.793 107.774 100.75";rotation = "0.586094 -0.572929 0.572927 119.251";scale = "0.125 0.166666 7.00178";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.956 111.541 109.5";rotation = "0 0 -1 91.3014";scale = "1.81372 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "302.075 117.191 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.541 107.7 117.25";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 6.49967 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.117 115.49 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.500133 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.294 118.812 100.25";rotation = "-0.999871 -0.0113599 -0.0113552 90.0077";scale = "0.874985 0.166666 22.5018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.361 115.723 109.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.673 115.73 106.716";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.626 115.729 107.43";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "294.151 124.763 109.5";rotation = "0 0 -1 38.5881";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.608 115.729 108.27";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.82 115.733 106.033";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.891 115.735 105.184";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.013 115.738 104.467";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.089 115.739 103.759";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.135 115.74 103.098";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.308 115.744 102.541";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.364 115.746 101.987";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.583 115.751 101.509";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.689 115.753 100.819";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.786 119.045 115.639";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.681 0.166666 7.756";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.861 115.757 100.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.374 115.291 100.25";rotation = "0.999871 0.0113551 -0.0113599 90.0071";scale = "0.625162 0.166666 6.9057";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.106 126.717 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.047 118.442 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.502627 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "324.697 110.6 100";rotation = "0 0 -1 2.85806";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.879 114.237 100";rotation = "0 0 -1 79.6606";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.914 114.267 102";rotation = "0 0 1 99.4168";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.35 127.154 113.5";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "2 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.696 122.978 109.5";rotation = "0 0 -1 91.3014";scale = "1.96677 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "314.325 122.405 115.047";rotation = "-0.0819694 -0.6924 0.716843 189.701";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.218 117.516 100";rotation = "0 0 -1 104.231";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.587 117.915 102";rotation = "0 0 1 76.5265";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "314.689 123.039 100";rotation = "0 0 1 33.8745";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "318.371 122.443 100";rotation = "0 0 1 36.1541";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "317.082 123.795 102";rotation = "0 0 1 8.10927";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.446 120.274 100";rotation = "0 0 1 70.825";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "319.89 122.676 102";rotation = "0 0 1 25.0779";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "317.142 124.216 100";rotation = "0 0 1 8.10927";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.477 120.721 101.03";rotation = "0 0 1 71.4238";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.635 120.861 102.06";rotation = "0 0 1 74.28";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "320.047 123.011 100";rotation = "0 0 1 25.0779";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.846 121.011 103.09";rotation = "0 0 -1 112.273";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.601 127.16 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "321.264 121.539 100";rotation = "0 0 -1 11.8837";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/3.cs b/Univ/Data/2703588/Buildings/3.cs new file mode 100644 index 0000000..d334993 --- /dev/null +++ b/Univ/Data/2703588/Buildings/3.cs @@ -0,0 +1,353 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 101.494";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.247249 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 106.065";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.2175 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "160.872 130.669 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.553 138.544 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.223 132.347 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.66677 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.799 138.588 101.509";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.2545 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.997 119.35 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.799 138.588 106.068";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.2155 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 101.504";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.252 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 106.076";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.2115 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "167.414 138.092 101";rotation = "0 0 1 78.9645";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "169.425 126.885 101";rotation = "0 0 1 78.9645";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "170.035 133.449 105.202";rotation = "0.645561 -0.540024 0.540023 114.311";scale = "2.26324 4.21201 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.972 135.157 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.851405 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.628 137.079 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.97 129.6 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.84984 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.669 131.273 106.846";rotation = "-0.608605 0.509113 0.608608 233.963";scale = "0.827 0.166666 4.48648";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.122 137.154 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.792 141.742 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 8.97526";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.314 127.681 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.672 136.833 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 18.0964";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.8 127.804 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.166 136.908 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.747 141.988 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.147 123.04 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 8.93052";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.191 122.794 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.046 127.848 105";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "2 0.166666 39.005";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "185.479 135.084 99.5";rotation = "0 0 -1 100.173";scale = "2.5 9.99983 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.368 137.198 104.75";rotation = "0.0883095 -0.99217 -0.0883151 90.4505";scale = "1.875 0.166667 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.163 132.77 108.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.125 3.16613 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "191.21 131.53 100.99";rotation = "0.509117 0.608606 0.608604 233.963";scale = "9.02055 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.488 131.336 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.574 130.843 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.974 111.897 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 37.9976";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.333 110.301 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "200.73 132.243 100.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "9.01938 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.333 110.301 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.59 132.97 108.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 17.9949";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.678 132.477 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.965 110.775 101";rotation = "0 0 1 79.8268";scale = "0.125 1.61639 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "197.543 140.043 101";rotation = "0 0 1 33.9485";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "197.971 122.086 99.5";rotation = "0 0 -1 100.173";scale = "4.99985 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "193.323 108.805 101";rotation = "0 0 -1 9.23363";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.018 111.651 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.586 121.045 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.49953 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.792 133.26 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.158 142.364 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.836 133.014 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.924 132.521 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 101.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.262 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 106.282";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.109 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 109.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26225 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 112.007";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2465 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.968 132.275 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 37.9976";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "204.262 112.559 100.99";rotation = "-0.0628166 0.705709 0.705712 172.812";scale = "9.02056 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 109.52";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25975 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 112.01";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.245001 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.368 113.329 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "201.652 102.426 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.745 113.248 101";rotation = "0 0 1 79.8268";scale = "0.125 1.71733 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.777 91.1072 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.345 100.502 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.50007 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "196.432 93.6155 101";rotation = "0 0 1 169.568";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "206.915 111.244 101";rotation = "0 0 -1 9.23363";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.777 91.1072 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.576 93.1193 112.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 6.50017 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.484 91.593 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66688 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.527 113.745 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.527 113.745 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.787 91.4982 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.767 92.72 110.75";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.875 0.166666 17.7673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.787 91.4982 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.861 92.2295 110.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.875 0.166666 7.78024";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "198.893 92.2691 100.99";rotation = "-0.992171 -0.0883135 -0.0883088 90.45";scale = "9.01947 4.505 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.463 87.726 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.79133 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.99 91.7808 106.992";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.75351 0.333205 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.033 91.5424 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.472 87.6805 109";rotation = "0 0 1 79.8268";scale = "1.81436 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 101.547";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2735 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.124 83.6922 112";rotation = "-0.0886647 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 106.317";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.0915 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.669 92.8073 112.25";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.333264 3.76724";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 109.522";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 111.776";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "202.562 88.1824 101";rotation = "0 0 -1 100.694";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.369 83.7364 110.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 7.00008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.815 84.3546 112.25";rotation = "-0.509113 -0.608605 0.608608 233.963";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.168 83.4461 110.5";rotation = "0.608607 -0.509115 0.608605 233.962";scale = "0.75 0.166667 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.716 92.5622 110.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.875 0.166666 6.44958";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.155 82.4658 100.75";rotation = "0.571008 0.682591 -0.456091 138.233";scale = "0.986067 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "209.601 95.9787 101";rotation = "0 0 1 171.287";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.513 80.289 108.75";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 1.33331 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.137 93.1761 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "198.602 82.122 108.8";rotation = "0 0 -1 99.646";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.456 85.22 108.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "1.12596 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.513 80.289 112.25";rotation = "-0.0628162 0.705712 0.705709 172.811";scale = "0.999968 0.166666 7.04292";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.137 93.1761 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.621 93.0529 110.75";rotation = "0.705712 0.0628147 0.705709 172.812";scale = "0.875 0.166666 16.4669";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "200.966 80.7197 105.01";rotation = "0.50911 0.60861 -0.608605 126.038";scale = "3.58894 4.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.834 79.734 112";rotation = "-0.0886647 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.738 80.6483 105.25";rotation = "-0.0628184 0.705711 0.705709 172.811";scale = "0.125 0.166666 7.21832";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.101 84.2005 106";rotation = "0.608608 -0.509113 0.608606 233.962";scale = "0.25 0.166666 7.13828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.728 80.687 108.249";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 0.166666 7.13808";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.264 94.066 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66686 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.831 91.2521 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.081 79.7784 110.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 7.00004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.525 80.3964 112.25";rotation = "-0.509113 -0.608605 0.608608 233.963";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.187 72.551 112.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.501 84.9743 105.25";rotation = "-0.992169 -0.088322 -0.0883161 90.4505";scale = "1.12494 0.166666 10.0006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.971 94.5514 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.971 94.5514 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "205.184 82.7405 99.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.657 83.2893 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.426 79.807 105";rotation = "0.996062 0.0886644 1.1239e-07 180";scale = "1.12545 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.213 79.4096 105.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.657 83.2893 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49997 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.301 78.9171 104.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.39 78.4251 104.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.458 76.619 108.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "0.125 2.75535 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.478 77.9326 103.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.46 76.6 109";rotation = "0 0 1 79.8268";scale = "2.0569 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.566 77.4406 103.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.654 76.9486 102.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.9995";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "206.302 78.801 101";rotation = "0 0 1 78.8167";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.181 92.93 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.741 76.4561 102.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.829 75.9641 101.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.606 70.9671 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.537 74.229 110.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.875 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.918 75.4721 101.25";rotation = "0.64556 -0.540026 0.540021 114.311";scale = "0.125 0.166666 8.9995";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.606 70.9671 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.208 71.434 101";rotation = "0 0 1 79.8268";scale = "0.125 1.5961 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.231 72.3049 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.231 72.3049 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.432 71.833 112";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "2.32658 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "200.785 69.2852 101";rotation = "0 0 -1 7.90411";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.521 72.1027 107.153";rotation = "0.509115 0.608605 0.608607 233.963";scale = "0.249904 0.898 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "202.512 72.0914 100.99";rotation = "-0.99217 -0.0883139 -0.0883107 90.45";scale = "9.0195 4.826 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.303 69.9573 109";rotation = "0 0 -1 10.7996";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.554 74.3671 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.581 73.9828 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.581 73.9828 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.007 52.0199 101.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.914 73.714 112";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "1.84908 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0199 106.009";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.2455 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.988 73.9065 101";rotation = "0 0 1 79.8268";scale = "0.125 1.73766 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.65 70.721 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0199 109.506";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25275 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0198 111.787";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.8 74.4113 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "214.539 71.6225 101";rotation = "0 0 -1 10.7441";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.8 74.4113 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "208.925 63.0925 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.232 65.0165 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.4999 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.001 72.3991 112.25";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.5002 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.701 54.2813 101";rotation = "0 0 1 170.678";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.05 51.7737 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.05 51.7737 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 101.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 106.174";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.163 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.844 74.1652 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 109.496";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.247999 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.759 52.26 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66823 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 112.004";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.248249 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.818 109.519";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25925 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.818 112.02";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.24 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.06 52.1646 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.06 52.1646 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.004 53.201 109";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "206.17 52.9365 100.99";rotation = "-0.992171 -0.0883135 -0.0883088 90.45";scale = "9.00729 3.533 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.069 54.2893 106.757";rotation = "-0.705707 -0.0628074 0.705714 172.811";scale = "0.871747 0.166667 17.9766";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.13 52.715 109";rotation = "0 0 1 169.826";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.261 52.4548 104.763";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.333447 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.8179 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.164 53.7983 107.007";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.9965 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.25 53.2452 112.25";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 6.03688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "216.405 56.561 101";rotation = "0 0 1 171.826";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.467 53.8224 109";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.588 53.336 109";rotation = "0 0 -1 10.1732";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.222 51.139 108.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 1.23192 4.0314";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.41 53.8425 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.41 53.8425 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.997 55.1736 109.485";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.24275 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.126 48.5764 108.75";rotation = "-0.645557 0.540027 0.540025 114.311";scale = "2.00002 0.166666 6.23604";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.997 55.1736 111.999";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.2505 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.533 54.7315 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66925 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.372 48.6204 109";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.174 52.4689 110.75";rotation = "0.608607 -0.509114 0.608606 233.962";scale = "0.875 0.166666 15.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.592 49.0738 108.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.0294";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.049 49.3548 112.25";rotation = "-0.0883145 0.99217 -0.0883148 90.4506";scale = "0.125 2.83326 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.244 55.2178 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.68 48.5817 107.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02934";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.846 49.0644 109";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.244 55.2178 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.768 48.0894 107.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.632 53.0899 110.75";rotation = "0.608607 -0.509116 0.608604 233.963";scale = "0.875 0.166666 15.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.857 47.5972 106.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.092 49.1086 108.75";rotation = "0.645557 -0.540027 0.540025 114.311";scale = "1.99997 0.166666 5.73618";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.944 47.105 106.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.032 46.6128 105.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02736";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.12 46.1206 105.25";rotation = "-0.645558 0.540026 0.540025 114.311";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 103";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 105.524";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.262 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 108.495";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2525 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.63 44.3489 109";rotation = "0 0 1 169.827";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.842 44.9254 110.75";rotation = "-0.088313 0.99217 -0.0883122 90.4505";scale = "0.875 0.166666 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "212.457 43.4069 99.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.088 44.9696 109";rotation = "0 0 -1 10.1729";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.93 43.9557 104.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.908 28.4092 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 103";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 105.498";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.249001 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 108.088";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25225 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8953 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4533 101.518";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25875 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4534 104.066";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25825 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4533 104.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.637 40.0186 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 3.83327 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.888 32.5326 105.5";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.25 0.166666 47.1938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.912 22.8177 101.518";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.259 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.912 22.8177 104.008";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.246 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.102 31.853 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.594 31.9414 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.504 32.9713 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.339 32.2543 101";rotation = "0 0 1 79.8268";scale = "0.125 1.0153 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.504 32.9713 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.956 22.5716 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.619 33.3512 105";rotation = "0 0 -1 100.173";scale = "0.125 1.26591 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "209.698 33.25 100.99";rotation = "-0.992171 -0.0883135 -0.0883088 90.45";scale = "9.01948 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.981 21.0256 100.75";rotation = "0.571012 0.682589 -0.45609 138.232";scale = "0.885297 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "215.706 33.8406 104.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "2.2206 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "187.762 22.2929 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "2.51225 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3413 104.75";rotation = "-0.0883149 0.99217 -0.0883112 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.131 34.3401 105";rotation = "0 0 -1 100.173";scale = "0.125 1.0004 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.484 19.6263 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.12 27.5912 104.5";rotation = "0.767012 -0.641633 -8.13328e-07 180";scale = "2.06122 0.33329 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.854 34.6492 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.854 34.6492 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.218 24.2221 104.75";rotation = "-0.645555 0.540025 0.540029 114.311";scale = "3.72898 0.166666 37.9994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.308 9.46167 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "210.049 28.0189 101";rotation = "0 0 -1 101.941";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Generator Room";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "222.119 34.7271 104.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.125 2.31845 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 105.5";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.25 0.166666 13.8518";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.951 28.1629 105.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 44.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "198.227 20.5343 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.788 35.3853 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "207.604 23.4999 104.51";rotation = "0.645556 -0.540028 0.540025 114.311";scale = "2.05502 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.146 31.6069 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.528 19.3802 101.504";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.252 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.528 19.3802 103.997";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.25125 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "224.007 31.2569 101";rotation = "0 0 1 84.7536";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.192 13.8436 108.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "193.443 14.1831 104.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "3.02017 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.391 14.4176 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.859 15.3991 107";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "1 0.166666 11.1109";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.878 15.0437 104.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "3.60037 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.771 13.7123 105";rotation = "0 0 1 79.8268";scale = "0.250003 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "208.879 20.6229 100.845";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.905 11.7179 103.505";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 1.52799 2.99";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "190.819 11.7623 106.991";rotation = "0.176623 -0.984279 0 89.9997";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = "Danger Zone ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.989 33.3731 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 6.5002 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.957 9.57819 107";rotation = "-0.0628183 0.705711 0.705709 172.812";scale = "0.125 1.33333 8.16686";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "217.913 24.0666 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.88 13.8924 104.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 1.38645 8.1673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.679 9.88718 108.75";rotation = "0.99217 0.088312 -0.0883182 90.45";scale = "0.750045 0.166667 8.16688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "194.093 13.2724 104.99";rotation = "-0.645553 0.540025 0.540032 114.311";scale = "2.09238 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "206.098 16.9423 104.51";rotation = "-0.062819 0.705712 -0.705708 187.188";scale = "2.21957 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.174 14.3039 104.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16616";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.665 14.3923 103.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16638";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "199.144 11.0369 104.99";rotation = "-0.088656 0.996062 -5.35938e-07 180.001";scale = "4.57562 4.10405 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.157 14.4806 103.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16658";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.65 14.569 102.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "209.276 18.4096 102.397";rotation = "0.509119 0.608606 0.608602 233.963";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = " Teleport";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.922 14.618 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 1.68484 8.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.141 14.6574 102.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.633 14.7458 101.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.31 16.9159 104.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.59943 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.126 14.8342 101.25";rotation = "-0.0628161 0.705712 -0.705709 187.189";scale = "0.125 0.166666 9.16732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.378 11.0891 107.005";rotation = "0.540026 0.645558 0.540025 114.311";scale = "1.00225 0.166666 8.1681";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.978 17.2402 101";rotation = "0 0 1 79.8273";scale = "2.17945 0.333249 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "200.986 13.4524 105";rotation = "0 0 -1 100.14";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.314 10.6884 105";rotation = "0 0 -1 100.174";scale = "0.249978 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "194.557 10.7491 106.518";rotation = "0.176622 -0.984279 0 90.0002";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " 2 Layer Forcefields ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.352 9.2156 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.194 11.9532 104.75";rotation = "-0.0628161 0.705712 0.705709 172.812";scale = "2.57118 0.166666 8.16828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.477 9.59704 109";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.875008 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.44 8.72346 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.2 9.9061 107.003";rotation = "0.705711 0.0628183 0.705709 172.812";scale = "1 0.166666 11.1107";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.945 9.71135 104.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "2.6715 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";nametoset = " Office complex Roof ->";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "209.663 16.2514 100.68";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.832 35.1392 103";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.344 12.3694 104.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.333205 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "200.397 10.7642 103.17";rotation = "0.98428 0.176615 0 89.9996";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " Office complex Roof ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "200.914 10.8569 103.138";rotation = "0.98428 0.176615 0 89.9996";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " <- Safe / Inventory Station room";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.552 6.68902 105.5";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.25 0.166666 7.00208";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "201.236 10.4169 104.51";rotation = "0.99217 0.0883117 -0.0883136 90.4505";scale = "2.30593 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "StationInventory";position = "192.762 7.10813 101";rotation = "0 0 -1 52.0143";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "215.156 15.9803 101.4";rotation = "0.872065 -0.48939 -6.20346e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = " Vehicle Pad";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "215.156 15.9803 101.4";rotation = "-4.84892e-06 5.32766e-13 1 58.601";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.421 11.591 104.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "1.50719 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.546 12.6595 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.038 12.7479 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.611 1.84361 105.5";rotation = "0.540029 0.645554 0.540027 114.311";scale = "0.25 0.166666 8.99976";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.539 6.58189 104.75";rotation = "-0.0628125 0.705712 -0.705709 187.189";scale = "0.99997 0.166666 9.0001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.634 12.1674 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.126 12.2557 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.385 13.3483 104.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "1.57501 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "208.018 9.84562 101";rotation = "0 0 1 40.8422";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "218.477 14.506 104.51";rotation = "-0.0628162 0.705711 -0.70571 187.188";scale = "2.07631 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "StationInventory";position = "223.662 17.2244 101";rotation = "0 0 1 168.295";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "228.986 16.1476 104.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.8 8.50219 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "1.78166 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.747 15.2078 104.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "2.66108 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.704 1.32162 105.28";rotation = "0.731006 -0.611512 0.302793 208.427";scale = "0.250062 0.166666 14.4158";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.332 2.15257 104.75";rotation = "-0.0819566 0.920772 -0.381394 183.889";scale = "0.99997 0.166666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.484 8.47739 103";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "193.798 -0.40379 101.4";rotation = "0.764272 -0.644894 -8.17462e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.232 16.1918 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.744 35.6314 105.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 78.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.32 15.6996 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "201.759 0.8487 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.683 -8.45781 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 6.50017 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "211.191 4.96234 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "1.92095 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.928 -10.7161 105.5";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25 0.166666 27.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.526 -6.69168 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.752 6.30482 104.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 6.49997 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "221.445 4.38095 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "195.5 -8.14822 101";rotation = "0 0 1 211.762";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.645 -1.78393 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "2.49306 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.884 -10.47 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.72 -3.24777 101.498";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.249001 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.72 -3.24777 104.047";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.24 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.364 15.4535 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "210.741 -5.32923 101";rotation = "0 0 1 125.843";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.832 -7.07013 103";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "1 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.078 -7.02606 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.57 -6.93775 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.01 -3.44963 105.5";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.25 0.166666 79.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.518 -3.53798 101.478";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.238751 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.518 -3.53798 104.025";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.241001 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.816 -6.8936 104.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.764 -3.49381 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "35.0427 1.39323 100.622";rotation = "0.303288 0.952899 1.20789e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "35.0427 1.39323 100.622";rotation = "1.73369e-06 -4.19433e-12 1 215.311";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "36.3775 0.371377 105.363";rotation = "-0.0236259 -0.030789 -0.999247 105.04";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.569 -0.034307 100.408";rotation = "0.0401026 -0.0307726 0.998722 75.073";scale = "1.25 1.66666 10";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/30.cs b/Univ/Data/2703588/Buildings/30.cs new file mode 100644 index 0000000..9aafeca --- /dev/null +++ b/Univ/Data/2703588/Buildings/30.cs @@ -0,0 +1,24 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.158 2.30366 111";rotation = "0.581673 -0.568609 -0.581671 120.754";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.577 -16.1915 99.5";rotation = "0 0 -1 91.3014";scale = "9.99998 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.505 -7.69105 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.77 -24.6895 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.997 -34.6868 111";rotation = "0.581671 -0.568609 0.581673 239.245";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "184.568 -15.5105 99.5";rotation = "0 0 -1 91.3014";scale = "59.9997 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "224.331 -4.60444 99.5";rotation = "0 0 -1 91.3014";scale = "5 19.9995 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "242.964 55.834 99.5";rotation = "0 0 -1 91.3014";scale = "5 33.3333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "253.87 16.0717 99.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "254.779 -23.9179 99.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "245.689 -64.135 99.5";rotation = "0 0 -1 91.3014";scale = "5 33.3329 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "284.317 -3.24175 99.5";rotation = "0 0 -1 91.3014";scale = "25 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "262.052 96.2765 99.5";rotation = "0 0 -1 91.3014";scale = "5 46.6667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "282.499 76.7373 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "303.403 37.2022 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "286.359 -93.2185 99.5";rotation = "0 0 -1 91.3014";scale = "9.99982 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "305.22 -42.7771 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "267.046 -123.667 99.5";rotation = "0 0 -1 91.3014";scale = "5 46.6667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "324.535 -12.3322 99.5";rotation = "0 0 -1 91.3014";scale = "49.9997 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/31.cs b/Univ/Data/2703588/Buildings/31.cs new file mode 100644 index 0000000..9cb07a7 --- /dev/null +++ b/Univ/Data/2703588/Buildings/31.cs @@ -0,0 +1,210 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.757 -11.7565 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.544 -13.6706 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.04 -13.2276 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.032 -13.1594 101.75";rotation = "0.568609 0.581673 0.581671 239.245";scale = "0.125 0.166666 37.0016";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.52 -12.6482 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.507 -11.7622 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.019 -12.2507 107.75";rotation = "-0.58609 0.572931 0.572929 119.252";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.531 -12.7392 108.25";rotation = "-0.0113562 0.999871 -0.0113562 90.0077";scale = "0.125 0.166666 36.0074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.853 6.02297 101.25";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.125 0.166666 38.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.364 5.51172 101.75";rotation = "-0.00803025 0.707085 -0.707083 180.92";scale = "0.125 0.166666 36.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.296 -13.4719 100.75";rotation = "-0.00803102 0.707085 0.707083 179.08";scale = "0.125 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.877 5.0005 102.25";rotation = "0.581672 -0.568611 0.581669 239.246";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.751 -11.5066 107";rotation = "0.572933 0.586088 0.57293 119.252";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.273 -12.4949 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.785 -12.9834 108.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "283.181 46.7453 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "264.127 4.80166 102.75";rotation = "-0.00802672 0.707085 -0.707083 180.92";scale = "4.25085 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "274.32 -3.46904 108.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "5 0.166666 40.0084";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.258 -12.1312 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "274.773 -23.4636 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.865 -3.71194 103";rotation = "0.19509 0.00221463 0.980783 178.724";scale = "0.375 0.833333 2.5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.478 -4.98012 102.838";rotation = "-0.548469 0.585082 0.597378 236.298";scale = "0.25017 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.382 4.73907 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.764 -12.3926 102.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.888 4.11447 107";rotation = "0.58167 -0.568613 0.581669 239.246";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.276 -12.9038 101.75";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.788 -13.415 101.25";rotation = "-0.00803025 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.788 -13.4149 100.75";rotation = "-0.00803254 0.707082 0.707086 179.08";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.775 -12.8923 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.287 -13.4036 108.25";rotation = "-0.00802672 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.125 4.84727 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.132 4.73336 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.613 5.33574 101.75";rotation = "0.586094 -0.57293 0.572928 119.251";scale = "0.125 0.166666 38.0018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.62 5.24461 107.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.101 5.82426 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 40.0022";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.597 6.2672 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.108 5.75584 108.25";rotation = "-0.0113509 0.999871 -0.0113509 90.0076";scale = "0.125 0.166666 36.0072";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.883 4.36438 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "315.217 -42.55 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "273.864 16.526 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.823 6.86378 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "322.264 87.6415 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 399.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.014 -34.597 100.75";rotation = "-0.00803361 0.707089 0.707079 179.08";scale = "5.00002 0.166666 39.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "254.325 -3.92316 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 119.997";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.969 6.5945 103.137";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.3185 0.166666 23.212";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "295.676 -62.9994 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 199.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.41 25.1091 101.25";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.969 6.5945 105.44";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.2785 0.166666 23.212";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.41 25.1091 101.75";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 37";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.817 7.11372 102.25";rotation = "-0.00803138 0.707085 0.707083 179.08";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.409 25.1091 104.5";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "1 0.166666 36";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.097 5.86975 101.25";rotation = "-0.586094 0.572929 0.572927 119.251";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.085 6.36961 101.75";rotation = "0.568609 0.581673 -0.581671 120.754";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.073 6.86946 102.25";rotation = "0.568609 0.581673 -0.581671 120.754";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.72 6.58884 105.998";rotation = "0.999936 0.011357 1.4396e-08 180";scale = "0.125 0.166666 6.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.404 25.359 101";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.404 25.359 102";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.651 25.3874 100.75";rotation = "0.00803349 -0.707078 0.70709 179.08";scale = "4.9998 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.375 15.4241 106.248";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 6.1666 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.358 16.3557 102.25";rotation = "-0.0113571 0.999871 -0.0113571 90.0077";scale = "0.125 6.16667 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "313.4 37.4293 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.073 20.9306 103.014";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.257 0.166666 30.3538";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.073 20.9305 105.228";rotation = "0.011355 -0.999871 -0.0113575 90.0077";scale = "0.47075 0.166666 30.3538";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.605 6.47265 105.998";rotation = "0.999936 0.011357 1.4396e-08 180";scale = "1.01326 0.166666 6.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.329 6.42092 102.5";rotation = "0 0 1 178.699";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.234 22.3903 103.4";rotation = "0 0 1 178.699";scale = "0.25 0.333333 0.2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.152 22.4102 102.5";rotation = "0 0 1 178.699";scale = "0.1875 0.25 1.8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.154 25.3533 101.504";rotation = "0.707085 0.00803194 -0.707083 180.92";scale = "0.252 0.166666 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.154 25.3533 104.5";rotation = "-0.0113571 0.999871 -0.0113571 90.0077";scale = "1 0.166666 37.9978";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.347 5.67107 101.25";rotation = "-0.00803421 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.823 20.9249 105.998";rotation = "0.999936 0.011357 1.4396e-08 180";scale = "0.125 0.166666 6.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.335 6.17101 101.75";rotation = "-0.00803138 0.707085 0.707083 179.08";scale = "0.125 0.166666 36.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.916 24.6661 102.25";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.324 6.67093 103.144";rotation = "0.572931 0.586092 0.572927 119.251";scale = "0.3225 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.323 6.67083 105.62";rotation = "0.572931 0.586092 0.572927 119.251";scale = "0.25 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.916 24.6661 106.25";rotation = "0.581674 -0.568607 0.581671 239.245";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.573 20.9192 105.748";rotation = "0.707085 0.00803152 -0.707083 180.92";scale = "0.125 0.166666 6.6457";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.46 22.6385 105.498";rotation = "-0.0113561 0.999936 1.26751e-06 180";scale = "0.125 1.35969 5.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.495 21.0993 105.748";rotation = "-0.00803014 0.707082 0.707086 179.08";scale = "0.125 0.166666 7.15824";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "285.905 -73.2241 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.91 24.916 101";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.91 24.916 102.5";rotation = "0 0 1 88.6985";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "292.951 56.9697 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.843 104.458 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 479.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "282.272 86.7347 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "373.207 -19.719 110.999";rotation = "0.707078 0.00802819 0.70709 179.08";scale = "5 86.6663 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "337.028 -122.077 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "332.034 97.8665 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "154.577 -16.1915 99.5";rotation = "0 0 -1 91.3014";scale = "9.99998 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.997 -34.6868 111";rotation = "0.581671 -0.568609 0.581673 239.245";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.801 86.4127 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.77 -24.6895 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.505 -7.69105 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.158 2.30366 111";rotation = "0.581673 -0.568609 -0.581671 120.754";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "336.782 88.4313 109.5";rotation = "0 0 1 222.622";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.051 86.5181 111.5";rotation = "-0.00468677 0.999978 -0.00468676 90.0013";scale = "1 0.166666 22.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "357.464 12.0547 100";rotation = "0 0 1 186.801";scale = "10 10 10";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "174.887 -95.7505 111";rotation = "0.707078 0.00803066 0.70709 179.079";scale = "5 40 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "171.48 54.2105 111";rotation = "0.0113522 -0.999871 -0.0113544 90.0071";scale = "5 33.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.799 86.6628 111.5";rotation = "0.57554 0.580958 0.575536 119.69";scale = "1 0.166666 21.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.323 106.216 115.582";rotation = "0.999936 0.0113593 1.4399e-08 180";scale = "0.250073 0.500137 4.074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.301 86.5205 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.549 107.222 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "301.81 107.184 107.273";rotation = "-0.572932 -0.586092 0.572927 119.251";scale = "3.1365 6.66707 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "340.497 92.2163 99.5";rotation = "0 0 -1 90.5371";scale = "3 4 20";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.824 106.659 118.291";rotation = "0.707085 0.00803308 -0.707083 180.92";scale = "1.3545 0.499453 40.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.28 88.76 109.5";rotation = "0 0 1 179.464";scale = "0.125 1.32623 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 111.523";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "1.01175 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "345.995 92.5181 113.25";rotation = "-0.00468677 0.999978 -0.00468676 90.0013";scale = "0.125 3.83337 22.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 116.291";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.35425 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 117.25";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "336.712 95.931 109.5";rotation = "0 0 -1 38.8259";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.762 109.093 112.073";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.789537 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.333 106.217 111";rotation = "0.715096 -0.699026 -8.86079e-07 180";scale = "0.125 1.66444 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.513 90.5105 109.5";rotation = "0.999989 0.0046862 5.94018e-09 180";scale = "0.500022 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "305.518 107.265 117.342";rotation = "0.999871 0.0113564 -0.0113565 90.0071";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "231.863 104.093 111";rotation = "0.572928 0.58609 0.572933 119.251";scale = "5 40 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.693 97.9121 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.322 106.717 101";rotation = "0 0 1 88.6979";scale = "0.125 1.6641 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "300.04 110.76 111.75";rotation = "-0.586092 0.572928 0.572931 119.251";scale = "0.375107 0.166666 7.99408";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.706 111.344 112.073";rotation = "0.586092 -0.57293 0.572929 119.251";scale = "0.749942 0.166667 5.63542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.31 107.217 101";rotation = "0 0 1 88.6979";scale = "0.125 1.66376 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.001 93.0074 106.134";rotation = "-0.575539 -0.580957 0.575538 119.691";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.985 90.7556 106.956";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.937 90.7551 107.84";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.147 93.0088 105.21";rotation = "-0.575539 -0.580957 0.575538 119.691";scale = "0.125 0.166666 4.50318";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.918 90.7549 108.516";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5034";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.355 90.759 104.486";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50338";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.761 90.7533 109.25";rotation = "-0.579145 0.573741 0.579148 239.689";scale = "0.125 0.166666 5.50324";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.587 90.7612 103.524";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.044 107.665 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "336.72 97.931 109.5";rotation = "0 0 1 89.4628";scale = "0.125 1.18472 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.763 90.7629 102.721";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50318";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.767 111.664 111.823";rotation = "0.699031 0.715092 9.06443e-07 180";scale = "0.87473 0.166666 4.646";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.195 97.77 113.25";rotation = "0.579147 -0.573743 0.579144 239.689";scale = "0.125 0.166666 22";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "347.932 90.7645 101.975";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50318";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.807 109.915 112.073";rotation = "-0.0080311 0.707085 0.707083 179.08";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "348.133 90.7663 101.035";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.5034";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "348.261 90.7675 100.25";rotation = "-0.579144 0.573742 0.579148 239.689";scale = "0.125 0.166666 4.50338";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.018 111.67 111.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.815 106.774 108.568";rotation = "0.707085 0.00803745 0.707083 179.08";scale = "1.2165 0.50012 7.00384";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "316.807 107.523 116";rotation = "-0.57293 -0.586094 0.572927 119.251";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.007 112.17 110.75";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "316.805 107.274 103.568";rotation = "0.707085 0.00803632 0.707083 179.08";scale = "1.28376 0.166666 7.00384";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;closedscale = "1.28376 0.166666 7.00384";hasslided = "0";isdoor = "1";issliding = "0";moving = "close";openedscale = "1.28376 0.166666 0.1";prevscale = "1.28376 0.166666 6.9";state = "closed";timeout = "0";toggletype = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.483 113.158 110.911";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.941 5.63548";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.995 112.67 110.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.793 107.774 100.75";rotation = "0.586094 -0.572929 0.572927 119.251";scale = "0.125 0.166666 7.00178";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "277.692 -151.924 110.998";rotation = "-0.572939 -0.586092 0.572919 119.251";scale = "5 66.666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "321.07 106.871 111";rotation = "0.715096 -0.699026 -8.86079e-07 180";scale = "0.375098 0.501797 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.984 113.169 109.75";rotation = "0.568608 0.581675 0.581669 239.246";scale = "0.125 0.166666 8.00002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.218 95.3855 109.5";rotation = "0 0 1 179.464";scale = "0.125 1.5899 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "343.94 97.999 109.5";rotation = "0 0 1 89.4628";scale = "0.125 1.33506 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.956 111.541 109.5";rotation = "0 0 -1 91.3014";scale = "1.81372 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "309.934 112.482 109.5";rotation = "0 0 1 86.2313";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.193 98.02 109.5";rotation = "0 0 -1 90.5371";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.112 126.467 113.5";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "2 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "340.216 98.1977 109.25";rotation = "-0.00331448 0.707104 0.707102 179.621";scale = "1.11036 0.166666 16.7339";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "302.075 117.191 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.294 118.812 100.25";rotation = "-0.999871 -0.0113599 -0.0113552 90.0077";scale = "0.874985 0.166666 22.5018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.117 115.49 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.500133 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";issliding = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.541 107.7 117.25";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 6.49967 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "324.697 110.6 100";rotation = "0 0 -1 2.85806";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "336.802 107.979 111";rotation = "-0.572927 -0.586097 0.572927 119.251";scale = "5 9.9999 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.673 115.73 106.716";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.891 115.735 105.184";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.82 115.733 106.033";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.626 115.729 107.43";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.013 115.738 104.467";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.089 115.739 103.759";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.135 115.74 103.098";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.361 115.723 109.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.608 115.729 108.27";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.308 115.744 102.541";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.364 115.746 101.987";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.583 115.751 101.509";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.689 115.753 100.819";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.861 115.757 100.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.786 119.045 115.639";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.681 0.166666 7.756";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.374 115.291 100.25";rotation = "0.999871 0.0113551 -0.0113599 90.0071";scale = "0.625162 0.166666 6.9057";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.879 114.237 100";rotation = "0 0 -1 79.6606";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.914 114.267 102";rotation = "0 0 1 99.4168";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.047 118.442 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.502627 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.218 117.516 100";rotation = "0 0 -1 104.231";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.587 117.915 102";rotation = "0 0 1 76.5265";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "309.711 122.285 109.5";rotation = "0 0 1 89.115";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "314.325 122.405 115.047";rotation = "-0.0819694 -0.6924 0.716843 189.701";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.696 122.978 109.5";rotation = "0 0 -1 91.3014";scale = "1.96677 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.106 126.717 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.446 120.274 100";rotation = "0 0 1 70.825";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.477 120.721 101.03";rotation = "0 0 1 71.4238";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.635 120.861 102.06";rotation = "0 0 1 74.28";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.846 121.011 103.09";rotation = "0 0 -1 112.273";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "314.689 123.039 100";rotation = "0 0 1 33.8745";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.356 126.723 109.75";rotation = "0.707085 0.00803102 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.356 126.723 110.193";rotation = "0.707085 0.00803102 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "350.292 108.293 111";rotation = "0.572924 0.586104 0.572923 119.252";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "317.107 124.09 102";rotation = "0 0 1 77.3115";scale = "0.125 0.125 0.125";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "320.047 123.011 100";rotation = "0 0 1 25.0779";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.35 127.154 114.504";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "1.248 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "316.594 124.167 102";rotation = "0 0 1 132.232";scale = "0.125 0.125 0.125";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "317.834 123.932 102";rotation = "0 0 1 129.919";scale = "0.125 0.125 0.125";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.351 127.154 117.25";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "317.142 124.216 100";rotation = "0 0 1 8.10927";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "321.264 121.539 100";rotation = "0 0 -1 11.8837";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.601 127.16 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/39.cs b/Univ/Data/2703588/Buildings/39.cs new file mode 100644 index 0000000..47929f1 --- /dev/null +++ b/Univ/Data/2703588/Buildings/39.cs @@ -0,0 +1,158 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "341.801 108.092 111";rotation = "-0.572927 -0.586097 0.572927 119.251";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "340.294 108.065 111";rotation = "0.572924 0.586104 0.572923 119.252";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "326.805 107.751 111";rotation = "-0.572928 -0.586096 0.572927 119.251";scale = "5 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.793 107.774 100.75";rotation = "0.586094 -0.572929 0.572927 119.251";scale = "0.125 0.166666 7.00178";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "324.697 110.6 100";rotation = "0 0 -1 2.85806";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.879 114.237 100";rotation = "0 0 -1 79.6606";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.914 114.267 102";rotation = "0 0 1 99.4168";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "360.289 108.52 111";rotation = "0.572921 0.586104 0.572925 119.252";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.294 118.812 100.25";rotation = "-0.999871 -0.0113599 -0.0113552 90.0077";scale = "0.874985 0.166666 22.5018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "370.935 80.255 111";rotation = "0.707078 0.00803781 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "316.807 107.523 116";rotation = "-0.57293 -0.586094 0.572927 119.251";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.218 117.516 100";rotation = "0 0 -1 104.231";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.587 117.915 102";rotation = "0 0 1 76.5265";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "370.48 100.25 111";rotation = "0.707078 0.00803901 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.044 107.665 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.446 120.274 100";rotation = "0 0 1 70.825";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.477 120.721 101.03";rotation = "0 0 1 71.4238";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.635 120.861 102.06";rotation = "0 0 1 74.28";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.846 121.011 103.09";rotation = "0 0 -1 112.273";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.374 115.291 100.25";rotation = "0.999871 0.0113551 -0.0113599 90.0071";scale = "0.625162 0.166666 6.9057";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.117 115.49 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.500133 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.956 111.541 109.5";rotation = "0 0 -1 91.3014";scale = "1.81372 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.861 115.757 100.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.689 115.753 100.819";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.583 115.751 101.509";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.364 115.746 101.987";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.308 115.744 102.541";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.135 115.74 103.098";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.089 115.739 103.759";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.013 115.738 104.467";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.891 115.735 105.184";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.82 115.733 106.033";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.673 115.73 106.716";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "319.89 122.676 102";rotation = "0 0 1 25.0779";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.626 115.729 107.43";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "320.047 123.011 100";rotation = "0 0 1 25.0779";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.608 115.729 108.27";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "318.371 122.443 100";rotation = "0 0 1 36.1541";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.047 118.442 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.502627 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "321.264 121.539 100";rotation = "0 0 -1 11.8837";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.361 115.723 109.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "371.39 60.2602 111";rotation = "0.707078 0.0080366 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "301.811 107.183 106";rotation = "-0.572932 -0.586092 0.572927 119.251";scale = "2.5 6.66707 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "317.082 123.795 102";rotation = "0 0 1 8.10927";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "317.142 124.216 100";rotation = "0 0 1 8.10927";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.786 119.045 115.639";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.681 0.166666 7.756";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 111.523";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "1.01175 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.762 109.093 112.073";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.789537 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 116.291";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.35425 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "314.689 123.039 100";rotation = "0 0 1 33.8745";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 117.25";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "314.325 122.405 115.047";rotation = "-0.0819694 -0.6924 0.716843 189.701";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.696 122.978 109.5";rotation = "0 0 -1 91.3014";scale = "1.96677 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "302.075 117.191 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "300.04 110.76 111.75";rotation = "-0.586092 0.572928 0.572931 119.251";scale = "0.375107 0.166666 7.99408";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.018 111.67 111.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.007 112.17 110.75";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.995 112.67 110.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.984 113.169 109.75";rotation = "0.568608 0.581675 0.581669 239.246";scale = "0.125 0.166666 8.00002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.601 127.16 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.541 107.7 117.25";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 6.49967 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.767 111.664 111.823";rotation = "0.699031 0.715092 9.06443e-07 180";scale = "0.87473 0.166666 4.646";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.807 109.915 112.073";rotation = "-0.0080311 0.707085 0.707083 179.08";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.549 107.222 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.706 111.344 112.073";rotation = "0.586092 -0.57293 0.572929 119.251";scale = "0.749942 0.166667 5.63542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.483 113.158 110.911";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.941 5.63548";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.35 127.154 113.5";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "2 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "371.845 40.2654 111";rotation = "0.707078 0.0080354 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "282.272 86.7347 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.112 126.467 113.5";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "2 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "294.151 124.763 109.5";rotation = "0 0 -1 38.5881";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "313.4 37.4293 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.106 126.717 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "372.3 20.2706 111";rotation = "0.707078 0.0080342 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "332.034 97.8665 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "372.755 0.275828 111";rotation = "0.707078 0.008033 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "322.264 87.6415 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 399.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "292.951 56.9697 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "283.181 46.7453 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.382 4.73907 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "231.863 104.093 111";rotation = "0.572928 0.58609 0.572933 119.251";scale = "5 40 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.101 5.82426 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 40.0022";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.597 6.2672 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.613 5.33574 101.75";rotation = "0.586094 -0.57293 0.572928 119.251";scale = "0.125 0.166666 38.0018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "273.864 16.526 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.108 5.75584 108.25";rotation = "-0.0113509 0.999871 -0.0113509 90.0076";scale = "0.125 0.166666 36.0072";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.125 4.84727 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.296 -13.4719 100.75";rotation = "-0.00803102 0.707085 0.707083 179.08";scale = "0.125 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.62 5.24461 107.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.853 6.02297 101.25";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.125 0.166666 38.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.132 4.73336 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.364 5.51172 101.75";rotation = "-0.00803025 0.707085 -0.707083 180.92";scale = "0.125 0.166666 36.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.785 -12.9834 108.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.877 5.0005 102.25";rotation = "0.581672 -0.568611 0.581669 239.246";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "373.21 -19.719 111";rotation = "0.707078 0.00803179 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.273 -12.4949 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.751 -11.5066 107";rotation = "0.572933 0.586088 0.57293 119.252";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.883 4.36438 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "264.127 4.80166 102.75";rotation = "-0.00802672 0.707085 -0.707083 180.92";scale = "4.25085 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "274.32 -3.46904 108.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "5 0.166666 40.0084";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.757 -11.7565 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.865 -3.71194 103";rotation = "0.19509 0.00221463 0.980783 178.724";scale = "0.375 0.833333 2.5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.478 -4.98012 102.838";rotation = "-0.548469 0.585082 0.597378 236.298";scale = "0.25017 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.888 4.11447 107";rotation = "0.58167 -0.568613 0.581669 239.246";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.764 -12.3926 102.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.775 -12.8923 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.276 -12.9038 101.75";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.507 -11.7622 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.287 -13.4036 108.25";rotation = "-0.00802672 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.788 -13.4149 100.75";rotation = "-0.00803254 0.707082 0.707086 179.08";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.788 -13.415 101.25";rotation = "-0.00803025 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.52 -12.6482 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.019 -12.2507 107.75";rotation = "-0.58609 0.572931 0.572929 119.252";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.032 -13.1594 101.75";rotation = "0.568609 0.581673 0.581671 239.245";scale = "0.125 0.166666 37.0016";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.531 -12.7392 108.25";rotation = "-0.0113562 0.999871 -0.0113562 90.0077";scale = "0.125 0.166666 36.0074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.04 -13.2276 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.544 -13.6706 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.258 -12.1312 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "373.665 -39.7138 111";rotation = "0.707078 0.00803059 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "315.217 -42.55 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "274.773 -23.4636 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "254.325 -3.92316 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 119.997";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "374.12 -59.7086 111";rotation = "0.707078 0.00802939 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "374.575 -79.7034 111";rotation = "0.707078 0.00802819 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "171.48 54.2105 111";rotation = "0.0113522 -0.999871 -0.0113544 90.0071";scale = "5 33.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "295.676 -62.9994 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 199.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.843 104.458 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 479.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "285.905 -73.2241 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "375.03 -99.6982 111";rotation = "0.707078 0.00802698 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.158 2.30366 111";rotation = "0.581673 -0.568609 -0.581671 120.754";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.505 -7.69105 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "375.484 -119.693 111";rotation = "0.707078 0.00802578 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "154.577 -16.1915 99.5";rotation = "0 0 -1 91.3014";scale = "9.99998 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "173.753 -45.7635 111";rotation = "0.707078 0.00803066 0.70709 179.079";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.77 -24.6895 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.997 -34.6868 111";rotation = "0.581671 -0.568609 0.581673 239.245";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "337.028 -122.077 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "174.207 -65.7584 111";rotation = "0.707078 0.00802981 0.70709 179.079";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "375.938 -139.688 111";rotation = "0.707078 0.00802458 0.70709 179.08";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "347.673 -150.334 111";rotation = "-0.572939 -0.586091 0.572922 119.252";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "174.661 -85.7533 111";rotation = "0.707078 0.00802896 0.70709 179.079";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "327.678 -150.789 111";rotation = "-0.572939 -0.58609 0.572922 119.251";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "367.668 -149.879 111";rotation = "-0.572939 -0.58609 0.572922 119.251";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "307.683 -151.244 111";rotation = "-0.572939 -0.586091 0.572922 119.252";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "287.688 -151.699 111";rotation = "-0.572939 -0.58609 0.572922 119.251";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "267.693 -152.154 111";rotation = "-0.572939 -0.586091 0.572922 119.252";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "175.115 -105.748 111";rotation = "0.707078 0.00802811 0.70709 179.079";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "247.698 -152.609 111";rotation = "-0.572939 -0.58609 0.572922 119.251";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "227.703 -153.063 111";rotation = "-0.572939 -0.586091 0.572922 119.252";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "175.569 -125.743 111";rotation = "0.707078 0.00802726 0.70709 179.079";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "207.708 -153.519 111";rotation = "-0.57294 -0.586091 0.572919 119.251";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "176.023 -145.738 111";rotation = "0.707078 0.00802641 0.70709 179.079";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "187.713 -153.974 111";rotation = "-0.572939 -0.586092 0.572919 119.251";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/4.cs b/Univ/Data/2703588/Buildings/4.cs new file mode 100644 index 0000000..72f29b5 --- /dev/null +++ b/Univ/Data/2703588/Buildings/4.cs @@ -0,0 +1,427 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.657 83.2893 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.657 83.2893 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49997 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.537 74.229 110.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.875 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.501 84.9743 105.25";rotation = "-0.992169 -0.088322 -0.0883161 90.4505";scale = "1.12494 0.166666 10.0006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.831 91.2521 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.213 79.4096 105.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.728 80.687 108.249";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 0.166666 7.13808";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.181 92.93 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.456 85.22 108.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "1.12596 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.301 78.9171 104.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.101 84.2005 106";rotation = "0.608608 -0.509113 0.608606 233.962";scale = "0.25 0.166666 7.13828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.187 72.551 112.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.738 80.6483 105.25";rotation = "-0.0628184 0.705711 0.705709 172.811";scale = "0.125 0.166666 7.21832";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.39 78.4251 104.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.426 79.807 105";rotation = "0.996062 0.0886644 1.1239e-07 180";scale = "1.12545 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.478 77.9326 103.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "198.602 82.122 108.8";rotation = "0 0 -1 99.646";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.081 79.7784 110.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 7.00004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.513 80.289 108.75";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 1.33331 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.46 76.6 109";rotation = "0 0 1 79.8268";scale = "2.0569 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.369 83.7364 110.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 7.00008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.566 77.4406 103.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "200.966 80.7197 105.01";rotation = "0.50911 0.60861 -0.608605 126.038";scale = "3.58894 4.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.472 87.6805 109";rotation = "0 0 1 79.8268";scale = "1.81436 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.513 80.289 112.25";rotation = "-0.0628162 0.705712 0.705709 172.811";scale = "0.999968 0.166666 7.04292";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.525 80.3964 112.25";rotation = "-0.509113 -0.608605 0.608608 233.963";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "206.302 78.801 101";rotation = "0 0 1 78.8167";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.654 76.9486 102.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.9995";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.815 84.3546 112.25";rotation = "-0.509113 -0.608605 0.608608 233.963";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.458 76.619 108.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "0.125 2.75535 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "205.184 82.7405 99.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "202.562 88.1824 101";rotation = "0 0 -1 100.694";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.463 87.726 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.79133 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.741 76.4561 102.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.168 83.4461 110.5";rotation = "0.608607 -0.509115 0.608605 233.962";scale = "0.75 0.166667 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.834 79.734 112";rotation = "-0.0886647 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.124 83.6922 112";rotation = "-0.0886647 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.033 91.5424 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.829 75.9641 101.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.716 92.5622 110.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.875 0.166666 6.44958";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.99 91.7808 106.992";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.75351 0.333205 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.521 72.1027 107.153";rotation = "0.509115 0.608605 0.608607 233.963";scale = "0.249904 0.898 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.861 92.2295 110.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.875 0.166666 7.78024";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.669 92.8073 112.25";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.333264 3.76724";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.918 75.4721 101.25";rotation = "0.64556 -0.540026 0.540021 114.311";scale = "0.125 0.166666 8.9995";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.137 93.1761 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.554 74.3671 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.581 73.9828 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.787 91.4982 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.231 72.3049 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.137 93.1761 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.581 73.9828 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.621 93.0529 110.75";rotation = "0.705712 0.0628147 0.705709 172.812";scale = "0.875 0.166666 16.4669";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.432 71.833 112";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "2.32658 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.155 82.4658 100.75";rotation = "0.571008 0.682591 -0.456091 138.233";scale = "0.986067 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "202.512 72.0914 100.99";rotation = "-0.99217 -0.0883139 -0.0883107 90.45";scale = "9.0195 4.826 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.914 73.714 112";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "1.84908 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "198.893 92.2691 100.99";rotation = "-0.992171 -0.0883135 -0.0883087 90.45";scale = "9.01947 4.505 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.787 91.4982 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.767 92.72 110.75";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.875 0.166666 17.7673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.231 72.3049 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.264 94.066 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66686 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.988 73.9065 101";rotation = "0 0 1 79.8268";scale = "0.125 1.73766 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.303 69.9573 109";rotation = "0 0 -1 10.7996";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.208 71.434 101";rotation = "0 0 1 79.8268";scale = "0.125 1.5961 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.484 91.593 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66688 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.971 94.5514 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.8 74.4113 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.971 94.5514 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.606 70.9671 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.8 74.4113 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.777 91.1072 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.606 70.9671 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.777 91.1072 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "209.601 95.9787 101";rotation = "0 0 1 171.287";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "196.432 93.6155 101";rotation = "0 0 1 169.568";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "214.539 71.6225 101";rotation = "0 0 -1 10.7441";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "200.785 69.2852 101";rotation = "0 0 -1 7.90411";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.345 100.502 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.50007 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.232 65.0165 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.4999 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.576 93.1193 112.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 6.50017 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.001 72.3991 112.25";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.5002 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "201.652 102.426 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "208.925 63.0925 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 109.522";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.844 74.1652 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 109.496";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.247999 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 106.317";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.0915 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 111.776";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 106.174";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.163 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 112.004";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.248249 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.65 70.721 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0199 109.506";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25275 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 109.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26225 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0198 111.787";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0199 106.009";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.2455 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 106.282";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.109 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 112.007";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2465 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 101.547";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2735 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 101.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.007 52.0199 101.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 101.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.262 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "216.405 56.561 101";rotation = "0 0 1 171.826";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "206.915 111.244 101";rotation = "0 0 -1 9.23363";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.701 54.2813 101";rotation = "0 0 1 170.678";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "193.323 108.805 101";rotation = "0 0 -1 9.23363";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 109.52";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25975 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.8179 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.069 54.2893 106.757";rotation = "-0.705707 -0.0628074 0.705714 172.811";scale = "0.871747 0.166667 17.9766";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.467 53.8224 109";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 112.01";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.245001 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.004 53.201 109";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.25 53.2452 112.25";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 6.03688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "204.262 112.559 100.99";rotation = "-0.0628166 0.705709 0.705712 172.812";scale = "9.02056 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.997 55.1736 109.485";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.24275 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.261 52.4548 104.763";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.333447 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.164 53.7983 107.007";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.9965 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.588 53.336 109";rotation = "0 0 -1 10.1732";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.818 109.519";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25925 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.13 52.715 109";rotation = "0 0 1 169.826";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.997 55.1736 111.999";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.2505 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "206.17 52.9365 100.99";rotation = "-0.992171 -0.0883135 -0.0883087 90.45";scale = "9.00729 3.533 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.818 112.02";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.24 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.41 53.8425 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.745 113.248 101";rotation = "0 0 1 79.8268";scale = "0.125 1.71733 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.06 52.1646 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.533 54.7315 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66925 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.759 52.26 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66823 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.965 110.775 101";rotation = "0 0 1 79.8268";scale = "0.125 1.61639 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.527 113.745 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.41 53.8425 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.244 55.2178 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.06 52.1646 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.527 113.745 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.05 51.7737 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.244 55.2178 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.333 110.301 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.05 51.7737 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.333 110.301 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.222 51.139 108.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 1.23192 4.0314";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.049 49.3548 112.25";rotation = "-0.0883145 0.99217 -0.0883148 90.4506";scale = "0.125 2.83326 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.592 49.0738 108.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.0294";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.846 49.0644 109";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.632 53.0899 110.75";rotation = "0.608607 -0.509116 0.608604 233.963";scale = "0.875 0.166666 15.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.372 48.6204 109";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.174 52.4689 110.75";rotation = "0.608607 -0.509114 0.608606 233.962";scale = "0.875 0.166666 15.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.092 49.1086 108.75";rotation = "0.645557 -0.540027 0.540025 114.311";scale = "1.99997 0.166666 5.73618";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.126 48.5764 108.75";rotation = "-0.645557 0.540027 0.540025 114.311";scale = "2.00002 0.166666 6.23604";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.68 48.5817 107.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02934";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.768 48.0894 107.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.857 47.5972 106.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.944 47.105 106.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.032 46.6128 105.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02736";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.12 46.1206 105.25";rotation = "-0.645558 0.540026 0.540025 114.311";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.842 44.9254 110.75";rotation = "-0.088313 0.99217 -0.0883122 90.4505";scale = "0.875 0.166666 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.088 44.9696 109";rotation = "0 0 -1 10.1729";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.63 44.3489 109";rotation = "0 0 1 169.827";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.586 121.045 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.49953 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.968 132.275 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 38.9972";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8953 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 108.088";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25225 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.062 111.405 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 38.9972";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 108.495";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2525 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 105.498";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.249001 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 105.524";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.262 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.93 43.9557 104.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 103";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 103";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "197.971 122.086 99.5";rotation = "0 0 -1 100.173";scale = "4.99985 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "212.457 43.4069 99.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.637 40.0186 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 3.83327 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.678 132.477 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "215.706 33.8406 104.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "2.2206 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.131 34.3401 105";rotation = "0 0 -1 100.173";scale = "0.125 1.0004 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "200.73 132.243 100.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "9.01938 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.619 33.3512 105";rotation = "0 0 -1 100.173";scale = "0.125 1.26591 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.854 34.6492 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.924 132.521 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.504 32.9713 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "209.698 33.25 100.99";rotation = "-0.992171 -0.0883135 -0.0883087 90.45";scale = "9.01948 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.574 130.843 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.59 132.97 108.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 17.9949";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 108.995";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.2525 0.166666 17.9542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 109.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.166666 17.9542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.854 34.6492 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.504 32.9713 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.97 34.1622 106";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3413 104.75";rotation = "-0.0883149 0.99217 -0.0883112 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.642 32.4884 106";rotation = "0 0 1 169.827";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3411 108.606";rotation = "-0.088315 0.99217 -0.0883152 90.4506";scale = "0.447 0.166666 12.8541";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3411 109.75";rotation = "-0.088315 0.99217 -0.0883152 90.4506";scale = "0.125 0.166666 12.8541";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 105.5";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.25 0.166666 13.8518";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.339 32.2543 101";rotation = "0 0 1 79.8268";scale = "0.125 1.0153 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "222.119 34.7271 104.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.125 2.31845 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.594 31.9414 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.102 31.853 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.788 35.3853 106";rotation = "0 0 1 79.8268";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.788 35.3853 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.191 122.794 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.554 127.76 105";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "2 0.166666 41.0042";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.396 32.4443 108.63";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.435 0.166666 45.164";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.169 28.456 109.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.125 0.166666 45.164";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.888 32.5326 105.5";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.25 0.166666 47.1938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4533 104.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4534 104.066";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25825 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4533 101.518";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25875 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.147 123.04 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 8.93052";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.88 132.768 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 18.9987";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "224.007 31.2569 101";rotation = "0 0 1 84.7536";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "210.049 28.0189 101";rotation = "0 0 -1 101.941";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Generator Room";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "191.21 131.53 100.99";rotation = "0.509117 0.608606 0.608604 233.963";scale = "9.02055 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.12 27.5912 104.5";rotation = "0.767012 -0.641633 -8.13328e-07 180";scale = "2.06122 0.33329 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.163 132.77 108.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.125 3.16613 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.314 127.681 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "185.479 135.084 99.5";rotation = "0 0 -1 100.173";scale = "2.5 9.99983 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "169.425 126.885 101";rotation = "0 0 1 78.9645";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.923 28.4118 106";rotation = "0 0 1 169.827";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 106.076";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.2115 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.908 28.4092 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 101.504";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.252 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "197.543 140.043 101";rotation = "0 0 1 33.9485";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.97 129.6 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.84984 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.158 142.364 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.989 33.3731 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 6.5002 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.912 22.8177 104.008";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.246 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.166 136.908 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.912 22.8177 101.518";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.259 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "217.913 24.0666 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "207.604 23.4999 104.51";rotation = "0.645556 -0.540028 0.540025 114.311";scale = "2.05502 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.672 136.833 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 18.0964";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.146 31.6069 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.669 131.273 106.846";rotation = "-0.608605 0.509113 0.608608 233.963";scale = "0.827 0.166666 4.48648";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.368 137.198 104.75";rotation = "0.0883095 -0.99217 -0.0883151 90.4505";scale = "1.875 0.166667 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.218 24.2221 104.75";rotation = "-0.645555 0.540025 0.540029 114.311";scale = "3.72898 0.166666 37.9994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "170.035 133.449 105.202";rotation = "0.645561 -0.540024 0.540023 114.311";scale = "2.26324 4.21201 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.832 35.1392 103";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "208.879 20.6229 100.845";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.956 22.5716 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "198.227 20.5343 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.972 135.157 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.851405 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.997 119.35 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "187.762 22.2929 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "2.51225 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "SolarPanel";position = "209.276 18.4096 102.397";rotation = "0.509119 0.608606 0.608602 233.963";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = " Teleport";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.122 137.154 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.628 137.079 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.223 132.347 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.66677 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.981 21.0256 100.75";rotation = "0.571012 0.682589 -0.45609 138.232";scale = "0.885297 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.484 19.6263 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.978 17.2402 101";rotation = "0 0 1 79.8273";scale = "2.17945 0.333249 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "160.872 130.669 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.31 16.9159 104.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.59943 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.308 9.46167 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "206.098 16.9423 104.51";rotation = "-0.062819 0.705712 -0.705708 187.188";scale = "2.21957 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "209.663 16.2514 100.68";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.967 28.1657 108.647";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.4265 0.166666 43.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.967 28.1657 109.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 43.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "167.414 138.092 101";rotation = "0 0 1 78.9645";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.792 141.742 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 8.97526";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.951 28.1629 105.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 44.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "215.156 15.9803 101.4";rotation = "0.872065 -0.48939 -6.20346e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = " Vehicle Pad";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "215.156 15.9803 101.4";rotation = "-4.84892e-06 5.32766e-13 1 58.601";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "StationInventory";position = "223.662 17.2244 101";rotation = "0 0 1 168.295";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.859 15.3991 107";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "1 0.166666 11.1109";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.878 15.0437 104.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "3.60037 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.194 11.9532 104.75";rotation = "-0.0628161 0.705712 0.705709 172.812";scale = "2.57118 0.166666 8.16828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "200.986 13.4524 105";rotation = "0 0 -1 100.14";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.747 141.988 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "228.986 16.1476 104.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "218.477 14.506 104.51";rotation = "-0.0628162 0.705711 -0.70571 187.188";scale = "2.07631 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.378 11.0891 107.005";rotation = "0.540026 0.645558 0.540025 114.311";scale = "1.00225 0.166666 8.1681";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "193.443 14.1831 104.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "3.02017 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.391 14.4176 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.771 13.7123 105";rotation = "0 0 1 79.8268";scale = "0.250003 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.385 13.3483 104.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "1.57501 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.747 15.2078 104.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "2.66108 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.645 31.6963 109.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 13.1622 78";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.038 12.7479 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.528 19.3802 103.997";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.25125 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.546 12.6595 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.528 19.3802 101.504";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.252 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.192 13.8436 108.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.744 35.6314 105.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 78.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.922 14.618 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 1.68484 8.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "199.144 11.0369 104.99";rotation = "-0.088656 0.996062 -5.35938e-07 180.001";scale = "4.57562 4.10405 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.719 -3.2479 108.8";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.52675 0.166666 78";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.232 16.1918 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.126 12.2557 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.634 12.1674 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.126 14.8342 101.25";rotation = "-0.0628161 0.705712 -0.705709 187.189";scale = "0.125 0.166666 9.16732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.633 14.7458 101.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.141 14.6574 102.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 106.065";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.2175 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.32 15.6996 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.65 14.569 102.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.611 141.246 108.5";rotation = "0.64163 0.767014 9.7226e-07 180";scale = "0.125 2.63508 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.421 11.591 104.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "1.50719 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.157 14.4806 103.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16658";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "194.093 13.2724 104.99";rotation = "-0.645553 0.540025 0.540032 114.311";scale = "2.09238 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.665 14.3923 103.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16638";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 101.494";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.247249 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.174 14.3039 104.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16616";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.679 9.88718 108.75";rotation = "0.99217 0.088312 -0.0883182 90.45";scale = "0.750045 0.166667 8.16688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "201.236 10.4169 104.51";rotation = "0.99217 0.0883117 -0.0883136 90.4505";scale = "2.30593 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.88 13.8924 104.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 1.38645 8.1673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "200.914 10.8569 103.138";rotation = "0.98428 0.176615 0 89.9996";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " <- Safe / Inventory Station room";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "200.397 10.7642 103.17";rotation = "0.98428 0.176615 0 89.9996";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " Office complex Roof ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.344 12.3694 104.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.333205 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "190.819 11.7623 106.991";rotation = "0.176623 -0.984279 0 89.9997";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = "Danger Zone ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.957 9.57819 107";rotation = "-0.0628183 0.705711 0.705709 172.812";scale = "0.125 1.33333 8.16686";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "194.557 10.7491 106.518";rotation = "0.176622 -0.984279 0 90.0002";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " 2 Layer Forcefields ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.2 9.9061 107.003";rotation = "0.705711 0.0628183 0.705709 172.812";scale = "1 0.166666 11.1107";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.314 10.6884 105";rotation = "0 0 -1 100.174";scale = "0.249978 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.905 11.7179 103.505";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 1.52799 2.99";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "208.018 9.84562 101";rotation = "0 0 1 40.8422";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.883 140.038 106.97";rotation = "0.0883119 -0.99217 -0.0883151 90.4505";scale = "0.765 0.166666 5.76462";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.945 9.71135 104.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "2.6715 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";nametoset = " Office complex Roof ->";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.477 9.59704 109";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.875008 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.8 8.50219 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "1.78166 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.352 9.2156 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.44 8.72346 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.841 139.313 108.5";rotation = "0.64163 0.767014 9.7226e-07 180";scale = "0.125 2.73767 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "192.762 7.10813 101";rotation = "0 0 -1 52.0143";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.798 6.7249 106";rotation = "0 0 1 79.8268";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.106 6.0709 108.761";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.3695 0.166666 6.99804";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.106 6.07084 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 6.99804";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.552 6.68902 105.5";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.25 0.166666 7.00208";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.86 6.02668 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.553 138.544 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "211.191 4.96234 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "1.92095 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.457 3.05322 109.75";rotation = "0.99217 0.08831 -0.0883152 90.4505";scale = "0.125 0.166666 6.96082";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.752 6.30482 104.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 6.49997 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.245 2.64756 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 1.33296 6.99994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.539 6.58189 104.75";rotation = "-0.0628125 0.705712 -0.705709 187.189";scale = "0.99997 0.166666 9.0001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "221.445 4.38095 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.526 -6.69168 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.364 15.4535 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.904 5.78063 108.754";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.37325 0.166666 6.99994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.72 -3.24777 104.047";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.24 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.611 1.84361 105.5";rotation = "0.540029 0.645554 0.540027 114.311";scale = "0.25 0.166666 8.99976";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.72 -3.24777 101.498";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.249001 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.729 141.343 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.501 2.80715 109.5";rotation = "0.996062 0.0886589 1.12383e-07 180";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.583 2.3508 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.811 2.14501 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 7.99788";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "191.223 3.00099 109.51";rotation = "-0.062816 0.705711 -0.70571 187.189";scale = "3.51901 4.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.683 -8.45781 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 6.50017 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "201.759 0.8487 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.567 2.08968 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.717 151.141 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.66613 17.9991";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "157.288 150.346 99.5";rotation = "0 0 -1 100.173";scale = "4.99985 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "193.798 -0.40379 101.4";rotation = "0.764272 -0.644894 -8.17462e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.484 8.47739 103";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.645 -1.78393 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "2.49306 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.379 139.665 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.332 2.15257 104.75";rotation = "-0.0819566 0.920772 -0.381394 183.889";scale = "0.99997 0.166666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.704 1.32162 105.28";rotation = "0.731006 -0.611512 0.302793 208.427";scale = "0.250062 0.166666 14.4158";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.628 2.10479 108.697";rotation = "-0.540028 -0.645552 0.54003 114.311";scale = "0.48025 0.166667 25.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.84 -10.2239 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 25.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.928 -10.7161 105.5";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25 0.166666 27.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "210.741 -5.32923 101";rotation = "0 0 1 125.843";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.075 162.156 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.816 -6.8936 104.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.518 -3.53798 104.025";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.241001 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.518 -3.53798 101.478";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.238751 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.13 -10.4261 108.666";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.4635 0.166666 77.9982";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.516 -3.53835 109.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 77.9982";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.01 -3.44963 105.5";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.25 0.166666 79.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.461 161.508 101";rotation = "0 0 -1 100.173";scale = "0.125 2.28115 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.57 -6.93775 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.078 -7.02606 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.762 -3.49419 106";rotation = "0 0 1 169.827";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.764 -3.49381 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "195.5 -8.14822 101";rotation = "0 0 1 211.762";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.832 -7.07013 103";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "1 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.093 160.904 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 7.49192";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.406 160.242 106.872";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.814 0.166666 7.49192";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.884 -10.47 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.884 -10.47 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.266 159.499 101";rotation = "0 0 -1 100.173";scale = "0.125 2.80371 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.881 158.712 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.675 181.104 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.12 162.956 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "2.03094 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.832 179.338 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.50017 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "153.756 170.031 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.403 166.955 106.39";rotation = "-0.608605 0.509113 0.608608 233.963";scale = "1.05525 0.166666 3.72854";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.876 162.893 105";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.829 154.395 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.631 181.35 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "133.646 170.275 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.49953 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "134.195 165.802 99.5";rotation = "0 0 -1 100.173";scale = "2.5 6.66647 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.277 173.225 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "2.25318 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.187 157.975 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.6936 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.385 181.306 105";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "2 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 106.361";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.069 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.198 172.243 105";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 101.613";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.30625 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.093 164.069 106.564";rotation = "-0.540026 -0.645558 0.540025 114.311";scale = "0.96775 0.166666 5.60806";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.437 177.906 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.394 159.651 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.429 173.343 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.261 168.706 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "2.35553 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.635 150.951 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.586 171.577 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.50017 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "114.51 162.27 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.385 173.589 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.591 151.197 106.352";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.07425 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.591 151.197 101.628";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.314 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.437 170.189 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.437 170.189 106.337";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.0815 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.437 170.189 101.647";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.32375 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.191 170.145 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "38.5173 0.755563 105.223";rotation = "0.793202 -0.60867 -0.0187554 182.8";scale = "1.25 0.166666 9.99696";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "36.3775 0.371377 105.363";rotation = "-0.0236259 -0.030789 -0.999247 105.04";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.8574 2.62197 100.408";rotation = "-0.0236231 -0.0307912 -0.999247 105.04";scale = "0.125 1.6666 10.003";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.569 -0.034307 100.408";rotation = "0.0401026 -0.0307726 0.998722 75.073";scale = "1.25 1.66666 10";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "35.0427 1.39323 100.622";rotation = "0.303288 0.952899 1.20789e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "35.0427 1.39323 100.622";rotation = "1.73369e-06 -4.19433e-12 1 215.311";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "36.5781 -2.61098 105.398";rotation = "0.793204 -0.608667 -0.0187558 182.8";scale = "0.125 1.66667 9.99898";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.2151 -0.664946 105.569";rotation = "0.793203 -0.608669 -0.0187523 182.8";scale = "1.25001 0.166666 10.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/40.cs b/Univ/Data/2703588/Buildings/40.cs new file mode 100644 index 0000000..7ed686c --- /dev/null +++ b/Univ/Data/2703588/Buildings/40.cs @@ -0,0 +1,130 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "254.325 -3.92316 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 119.997";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.843 104.458 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 479.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "274.773 -23.4636 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.258 -12.1312 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.788 -13.4149 100.75";rotation = "-0.00803254 0.707082 0.707086 179.08";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.788 -13.415 101.25";rotation = "-0.00803025 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "295.676 -62.9994 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 199.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.276 -12.9038 101.75";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 0.166666 35.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.764 -12.3926 102.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.287 -13.4036 108.25";rotation = "-0.00802672 0.707085 0.707083 179.08";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.775 -12.8923 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.888 4.11447 107";rotation = "0.58167 -0.568613 0.581669 239.246";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.478 -4.98012 102.838";rotation = "-0.548469 0.585082 0.597378 236.298";scale = "0.25017 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "256.865 -3.71194 103";rotation = "0.19509 0.00221463 0.980783 178.724";scale = "0.375 0.833333 2.5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.04 -13.2276 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.544 -13.6706 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.032 -13.1594 101.75";rotation = "0.568609 0.581673 0.581671 239.245";scale = "0.125 0.166666 37.0016";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.883 4.36438 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.52 -12.6482 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.531 -12.7392 108.25";rotation = "-0.0113562 0.999871 -0.0113562 90.0077";scale = "0.125 0.166666 36.0074";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.019 -12.2507 107.75";rotation = "-0.58609 0.572931 0.572929 119.252";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.507 -11.7622 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.997 -34.6868 111";rotation = "0.581671 -0.568609 0.581673 239.245";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "154.577 -16.1915 99.5";rotation = "0 0 -1 91.3014";scale = "9.99998 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "264.127 4.80166 102.75";rotation = "-0.00802672 0.707085 -0.707083 180.92";scale = "4.25085 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.77 -24.6895 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "274.32 -3.46904 108.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "5 0.166666 40.0084";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "273.864 16.526 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.505 -7.69105 119.5";rotation = "0 0 -1 91.3014";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "255.125 4.84727 102.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 36.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.132 4.73336 107";rotation = "-0.0113503 0.999871 -0.0113503 90.0076";scale = "0.25 0.166666 32.0062";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.613 5.33574 101.75";rotation = "0.586094 -0.57293 0.572928 119.251";scale = "0.125 0.166666 38.0018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.597 6.2672 100.75";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.62 5.24461 107.75";rotation = "0.568613 0.581671 -0.581669 120.754";scale = "0.125 0.166666 34.0068";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "254.101 5.82426 101.25";rotation = "0.707085 0.00803025 0.707083 179.08";scale = "0.125 0.166666 40.0022";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.108 5.75584 108.25";rotation = "-0.0113509 0.999871 -0.0113509 90.0076";scale = "0.125 0.166666 36.0072";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.757 -11.7565 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "154.158 2.30366 111";rotation = "0.581673 -0.568609 -0.581671 120.754";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.751 -11.5066 107";rotation = "0.572933 0.586088 0.57293 119.252";scale = "0.25 0.166666 31.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.877 5.0005 102.25";rotation = "0.581672 -0.568611 0.581669 239.246";scale = "0.125 0.166666 33.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.364 5.51172 101.75";rotation = "-0.00803025 0.707085 -0.707083 180.92";scale = "0.125 0.166666 36.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.273 -12.4949 107.75";rotation = "0.572931 0.586091 0.57293 119.25";scale = "0.125 0.166666 35.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.853 6.02297 101.25";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.125 0.166666 38.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "274.296 -13.4719 100.75";rotation = "-0.00803102 0.707085 0.707083 179.08";scale = "0.125 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "273.785 -12.9834 108.25";rotation = "0.999871 0.0113562 -0.0113562 90.0077";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "272.382 4.73907 103";rotation = "0 0 1 178.699";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "174.887 -95.7505 111";rotation = "0.707078 0.00803066 0.70709 179.079";scale = "5 40 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "283.181 46.7453 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "292.951 56.9697 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 200";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "171.48 54.2105 111";rotation = "0.0113522 -0.999871 -0.0113544 90.0071";scale = "5 33.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "315.217 -42.55 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "285.905 -73.2241 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 79.9986";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "337.028 -122.077 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "313.4 37.4293 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "322.264 87.6415 100.249";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 399.998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "282.272 86.7347 100.25";rotation = "-0.999871 -0.0113556 -0.0113544 90.0071";scale = "5 0.5 40";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "332.034 97.8665 100.25";rotation = "0.707084 0.00802836 -0.707084 180.921";scale = "0.375 6.66667 280";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "231.863 104.093 111";rotation = "0.572928 0.58609 0.572933 119.251";scale = "5 40 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "277.692 -151.924 110.998";rotation = "-0.572939 -0.586092 0.572919 119.251";scale = "5 66.666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.549 107.222 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "301.811 107.183 106";rotation = "-0.572932 -0.586092 0.572927 119.251";scale = "2.5 6.66707 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.706 111.344 112.073";rotation = "0.586092 -0.57293 0.572929 119.251";scale = "0.749942 0.166667 5.63542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.767 111.664 111.823";rotation = "0.699031 0.715092 9.06443e-07 180";scale = "0.87473 0.166666 4.646";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 111.523";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "1.01175 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.807 109.915 112.073";rotation = "-0.0080311 0.707085 0.707083 179.08";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "373.207 -19.719 110.999";rotation = "0.707078 0.00802819 0.70709 179.08";scale = "5 86.6663 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.483 113.158 110.911";rotation = "0.568608 0.581674 -0.581671 120.754";scale = "0.125 0.941 5.63548";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 116.291";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.35425 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "300.04 110.76 111.75";rotation = "-0.586092 0.572928 0.572931 119.251";scale = "0.375107 0.166666 7.99408";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.794 107.659 117.25";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.762 109.093 112.073";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "0.125 0.789537 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.018 111.67 111.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "296.007 112.17 110.75";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.995 112.67 110.25";rotation = "0.707085 0.00803145 0.707083 179.08";scale = "0.125 0.166666 8.00006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "295.984 113.169 109.75";rotation = "0.568608 0.581675 0.581669 239.246";scale = "0.125 0.166666 8.00002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.112 126.467 113.5";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "2 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.044 107.665 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "302.075 117.191 99.5";rotation = "0 0 -1 91.3014";scale = "5 6.66666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "316.807 107.523 116";rotation = "-0.57293 -0.586094 0.572927 119.251";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.541 107.7 117.25";rotation = "0.572931 0.586093 0.572927 119.251";scale = "0.125 6.49967 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.956 111.541 109.5";rotation = "0 0 -1 91.3014";scale = "1.81372 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.793 107.774 100.75";rotation = "0.586094 -0.572929 0.572927 119.251";scale = "0.125 0.166666 7.00178";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "294.151 124.763 109.5";rotation = "0 0 -1 38.5881";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.106 126.717 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.117 115.49 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.500133 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.361 115.723 109.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.673 115.73 106.716";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.626 115.729 107.43";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.608 115.729 108.27";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.82 115.733 106.033";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.891 115.735 105.184";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.013 115.738 104.467";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.089 115.739 103.759";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.135 115.74 103.098";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90728";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.786 119.045 115.639";rotation = "0.581673 -0.568609 0.581671 239.245";scale = "0.681 0.166666 7.756";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.294 118.812 100.25";rotation = "-0.999871 -0.0113599 -0.0113552 90.0077";scale = "0.874985 0.166666 22.5018";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.308 115.744 102.541";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90726";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.364 115.746 101.987";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.583 115.751 101.509";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.689 115.753 100.819";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.861 115.757 100.25";rotation = "-0.581673 0.568605 0.581675 239.246";scale = "0.125 0.166666 4.90528";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.047 118.442 109.5";rotation = "0.999936 0.0113582 1.43975e-08 180";scale = "0.502627 0.166666 19";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.374 115.291 100.25";rotation = "0.999871 0.0113551 -0.0113599 90.0071";scale = "0.625162 0.166666 6.9057";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.35 127.154 113.5";rotation = "-0.0113559 0.999871 -0.0113559 90.0077";scale = "2 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "324.697 110.6 100";rotation = "0 0 -1 2.85806";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.879 114.237 100";rotation = "0 0 -1 79.6606";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.914 114.267 102";rotation = "0 0 1 99.4168";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.696 122.978 109.5";rotation = "0 0 -1 91.3014";scale = "1.96677 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "314.325 122.405 115.047";rotation = "-0.0819694 -0.6924 0.716843 189.701";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.218 117.516 100";rotation = "0 0 -1 104.231";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "323.587 117.915 102";rotation = "0 0 1 76.5265";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "314.689 123.039 100";rotation = "0 0 1 33.8745";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "336.802 107.979 111";rotation = "-0.572927 -0.586097 0.572927 119.251";scale = "5 9.9999 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "318.371 122.443 100";rotation = "0 0 1 36.1541";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "317.082 123.795 102";rotation = "0 0 1 8.10927";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "311.601 127.16 109.5";rotation = "0 0 -1 91.3014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "317.142 124.216 100";rotation = "0 0 1 8.10927";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "319.89 122.676 102";rotation = "0 0 1 25.0779";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.446 120.274 100";rotation = "0 0 1 70.825";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "320.047 123.011 100";rotation = "0 0 1 25.0779";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.477 120.721 101.03";rotation = "0 0 1 71.4238";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.635 120.861 102.06";rotation = "0 0 1 74.28";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "323.846 121.011 103.09";rotation = "0 0 -1 112.273";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "321.264 121.539 100";rotation = "0 0 -1 11.8837";scale = "1 1 1";team = "1";ownerGUID = "2703588";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "350.292 108.293 111";rotation = "0.572924 0.586104 0.572923 119.252";scale = "5 13.3331 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/5.cs b/Univ/Data/2703588/Buildings/5.cs new file mode 100644 index 0000000..544f688 --- /dev/null +++ b/Univ/Data/2703588/Buildings/5.cs @@ -0,0 +1,299 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "slapmydash" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "SolarPanel";position = "179.276 -711.59 131.397";rotation = "0.509119 0.608606 0.608602 233.963";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = " Teleport";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "178.879 -709.377 129.845";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "179.663 -713.749 129.68";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "178.978 -712.76 130";rotation = "0 0 1 79.8273";scale = "2.17945 0.333249 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "185.156 -714.02 130.4";rotation = "0.872065 -0.48939 -6.20346e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = " Vehicle Pad";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "215.156 15.9803 101.4";rotation = "-4.84892e-06 5.32766e-13 1 58.601";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "176.146 -698.393 133.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.385 -716.652 133.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "1.57501 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "177.31 -713.084 133.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.59943 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "177.604 -706.5 133.51";rotation = "0.645556 -0.540028 0.540025 114.311";scale = "2.05502 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "180.038 -717.252 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "188.477 -715.494 133.51";rotation = "-0.0628162 0.705711 -0.70571 187.188";scale = "2.07631 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.546 -717.341 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.989 -696.627 133.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 6.5002 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "180.126 -717.744 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.634 -717.833 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "176.098 -713.058 133.51";rotation = "-0.062819 0.705712 -0.705708 187.188";scale = "2.21957 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.986 -713.852 133.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "187.913 -705.933 128.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "176.421 -718.409 133.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "1.50719 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "180.049 -701.981 130";rotation = "0 0 -1 101.941";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Generator Room";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "174.194 -718.047 133.75";rotation = "-0.0628161 0.705712 0.705709 172.812";scale = "2.57118 0.166666 8.16828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "178.018 -720.154 130";rotation = "0 0 1 40.8422";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "177.12 -702.409 133.5";rotation = "0.767012 -0.641633 -8.13328e-07 180";scale = "2.06122 0.33329 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "180.8 -721.498 133.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "1.78166 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.747 -714.792 133.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "2.66108 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "170.986 -716.548 134";rotation = "0 0 -1 100.14";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "171.236 -719.583 133.51";rotation = "0.99217 0.0883117 -0.0883136 90.4505";scale = "2.30593 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "178.339 -697.746 130";rotation = "0 0 1 79.8268";scale = "0.125 1.0153 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "170.914 -719.143 132.138";rotation = "0.98428 0.176615 0 89.9996";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " <- Safe / Inventory Station room";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "176.594 -698.059 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.504 -697.029 134";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.504 -697.029 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "181.619 -696.649 134";rotation = "0 0 -1 100.173";scale = "0.125 1.26591 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "176.102 -698.147 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "170.397 -719.236 132.17";rotation = "0.98428 0.176615 0 89.9996";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " Office complex Roof ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.378 -718.911 136.005";rotation = "0.540026 0.645558 0.540025 114.311";scale = "1.00225 0.166666 8.1681";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "181.191 -725.038 133.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "1.92095 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.344 -717.631 133.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.333205 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "177.218 -705.778 133.75";rotation = "-0.645555 0.540025 0.540029 114.311";scale = "3.72898 0.166666 37.9994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "179.698 -696.75 129.99";rotation = "-0.99217 -0.0883135 -0.0883088 90.45";scale = "9.01948 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.542 -694.659 133.75";rotation = "-0.0883149 0.99217 -0.0883112 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "168.227 -709.466 128.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "185.706 -696.159 133.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "2.2206 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.131 -695.66 134";rotation = "0 0 -1 100.173";scale = "0.125 1.0004 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.526 -736.692 133.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.878 -714.956 133.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "3.60037 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.832 -694.861 132";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.752 -723.695 133.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 6.49997 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.126 -715.166 130.25";rotation = "-0.0628161 0.705712 -0.705709 187.189";scale = "0.125 0.166666 9.16732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.744 -694.369 134.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 78.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.232 -713.808 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "194.007 -698.743 130";rotation = "0 0 1 84.7536";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.859 -714.601 136";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "1 0.166666 11.1109";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.854 -695.351 134";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.854 -695.351 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.32 -714.3 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.633 -715.254 130.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "169.144 -718.963 133.99";rotation = "-0.088656 0.996062 -5.35938e-07 180.001";scale = "4.57562 4.10405 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.141 -715.343 131.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "191.445 -725.619 128.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "165.285 -714.988 136.09";rotation = "-0.0628161 0.705712 0.705709 172.812";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.922 -715.382 137.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 1.68484 8.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.2 -720.094 136.003";rotation = "0.705711 0.0628183 0.705709 172.812";scale = "1 0.166666 11.1107";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.65 -715.431 131.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.157 -715.519 132.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16658";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.888 -697.467 134.5";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.25 0.166666 47.1938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.724 -695.882 134.5";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.25 0.166666 13.8518";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.119 -695.273 133.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.125 2.31845 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.665 -715.608 132.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16638";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.945 -720.289 133.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "2.6715 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";nametoset = " Office complex Roof ->";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.174 -715.696 133.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16616";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.771 -716.288 134";rotation = "0 0 1 79.8268";scale = "0.250003 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.154 -701.547 133.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.154 -701.547 133.066";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25825 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "164.093 -716.728 133.99";rotation = "-0.645553 0.540025 0.540032 114.311";scale = "2.09238 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "164.557 -719.251 135.518";rotation = "0.176622 -0.984279 0 90.0002";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " 2 Layer Forcefields ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.154 -701.547 130.518";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25875 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.314 -719.312 134";rotation = "0 0 -1 100.174";scale = "0.249978 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.637 -689.981 137.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 3.83327 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.645 -731.784 133.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "2.49306 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.683 -738.458 133.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 6.50017 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.788 -694.615 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "163.443 -715.817 133.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "3.02017 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.88 -716.108 133.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 1.38645 8.1673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "171.759 -729.151 128.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.679 -720.113 137.75";rotation = "0.99217 0.088312 -0.0883182 90.45";scale = "0.750045 0.166667 8.16688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.391 -715.582 137.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.477 -720.403 138";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.875008 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.364 -714.547 133.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.72 -733.248 133.047";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.24 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.72 -733.248 130.498";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.249001 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "160.819 -718.238 135.991";rotation = "0.176623 -0.984279 0 89.9997";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = "Danger Zone ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.192 -716.156 137.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "162.762 -722.892 130";rotation = "0 0 -1 52.0143";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.957 -720.422 136";rotation = "-0.0628183 0.705711 0.705709 172.812";scale = "0.125 1.33333 8.16686";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.528 -710.62 132.997";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.25125 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "156.951 -701.837 134.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 44.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.528 -710.62 130.504";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.252 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.905 -718.282 132.505";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 1.52799 2.99";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.308 -720.538 133.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.46 -696.783 134.524";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.262 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.484 -710.374 133.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.46 -696.783 132";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.93 -686.044 133.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.352 -720.784 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "180.741 -735.329 130";rotation = "0 0 1 125.843";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.46 -696.783 137.495";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2525 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.44 -721.277 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "157.762 -707.707 133.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "2.51225 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "182.457 -686.593 128.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.956 -707.428 133.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.81 -695.105 134.498";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.249001 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.01 -733.45 134.5";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.25 0.166666 79.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.81 -695.105 132";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.57 -736.938 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.81 -695.105 137.088";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25225 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.078 -737.026 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.912 -707.182 133.008";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.246 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.81 -695.105 137.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "180.63 -685.651 138";rotation = "0 0 1 169.827";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.912 -707.182 130.518";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.259 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.816 -736.894 133.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.518 -733.538 133.025";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.241001 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.842 -685.075 139.75";rotation = "-0.088313 0.99217 -0.0883122 90.4505";scale = "0.875 0.166666 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.518 -733.538 130.478";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.238751 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "184.088 -685.03 138";rotation = "0 0 -1 10.1729";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.552 -723.311 134.5";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.25 0.166666 7.00208";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.981 -708.974 129.75";rotation = "0.571012 0.682589 -0.45609 138.232";scale = "0.885297 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.12 -683.879 134.25";rotation = "-0.645558 0.540026 0.540025 114.311";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "163.798 -730.404 130.4";rotation = "0.764272 -0.644894 -8.17462e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "156.908 -701.591 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.032 -683.387 134.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02736";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.539 -723.418 133.75";rotation = "-0.0628125 0.705712 -0.705709 187.189";scale = "0.99997 0.166666 9.0001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.944 -682.895 135.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.484 -721.523 132";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.857 -682.403 135.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.768 -681.911 136.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.832 -737.07 132";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "1 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.611 -728.156 134.5";rotation = "0.540029 0.645554 0.540027 114.311";scale = "0.25 0.166666 8.99976";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.68 -681.418 136.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02934";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "180.372 -681.38 138";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "180.126 -681.424 137.75";rotation = "-0.645557 0.540027 0.540025 114.311";scale = "2.00002 0.166666 6.23604";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.764 -733.494 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.592 -680.926 137.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.0294";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.846 -680.936 138";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.174 -677.531 139.75";rotation = "0.608607 -0.509114 0.608606 233.962";scale = "0.875 0.166666 15.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.928 -740.716 134.5";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25 0.166666 27.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.332 -727.847 133.75";rotation = "-0.0819566 0.920772 -0.381394 183.889";scale = "0.99997 0.166666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.092 -680.891 137.75";rotation = "0.645557 -0.540027 0.540025 114.311";scale = "1.99997 0.166666 5.73618";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.632 -676.91 139.75";rotation = "0.608607 -0.509116 0.608604 233.963";scale = "0.875 0.166666 15.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.049 -680.645 141.25";rotation = "-0.0883145 0.99217 -0.0883148 90.4506";scale = "0.125 2.83326 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.704 -728.678 134.28";rotation = "0.731006 -0.611512 0.302793 208.427";scale = "0.250062 0.166666 14.4158";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "165.5 -738.148 130";rotation = "0 0 1 211.762";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.222 -678.861 137.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 1.23192 4.0314";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "176.06 -677.835 134";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "176.06 -677.835 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.164 -676.202 136.007";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.9965 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "176.261 -677.545 133.763";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.333447 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.13 -677.285 138";rotation = "0 0 1 169.826";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.759 -677.74 130";rotation = "0 0 -1 100.173";scale = "0.125 1.66823 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.069 -675.711 135.757";rotation = "-0.705707 -0.0628074 0.705714 172.811";scale = "0.871747 0.166667 17.9766";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.296 -678.182 138.519";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25925 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "176.17 -677.063 129.99";rotation = "-0.99217 -0.0883135 -0.0883088 90.45";scale = "9.00729 3.533 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.884 -740.47 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.05 -678.226 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.296 -678.182 137.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.588 -676.664 138";rotation = "0 0 -1 10.1732";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.004 -676.799 138";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.41 -676.157 134";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.41 -676.157 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.296 -678.182 141.02";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.24 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.05 -678.226 138";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.467 -676.178 138";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.25 -676.755 141.25";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 6.03688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.997 -674.826 138.485";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.24275 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.533 -675.268 130";rotation = "0 0 -1 100.173";scale = "0.125 1.66925 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.997 -674.826 140.999";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.2505 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "173.701 -675.719 130";rotation = "0 0 1 170.678";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.244 -674.782 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.244 -674.782 138";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "186.405 -673.439 130";rotation = "0 0 1 171.826";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.006 -677.98 135.009";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.2455 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "178.925 -666.907 128.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.007 -677.98 130.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.65 -659.279 137.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.006 -677.98 138.506";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25275 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.232 -664.984 137.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.4999 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "177.001 -657.601 141.25";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.5002 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.006 -677.98 140.787";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.2 -674.536 135.174";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.163 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.2 -674.536 130.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.844 -655.835 137.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.2 -674.536 138.496";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.247999 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.2 -674.536 141.004";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.248249 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "173.303 -660.043 138";rotation = "0 0 -1 10.7995";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.208 -658.566 130";rotation = "0 0 1 79.8268";scale = "0.125 1.5961 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "172.512 -657.909 129.99";rotation = "-0.99217 -0.0883139 -0.0883107 90.45";scale = "9.0195 4.826 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.432 -658.167 141";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "2.32658 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.606 -659.033 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.521 -657.897 136.153";rotation = "0.509115 0.608605 0.608607 233.963";scale = "0.249904 0.898 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.231 -657.695 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.606 -659.033 138";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.554 -655.633 141.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.231 -657.695 138";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.988 -656.094 130";rotation = "0 0 1 79.8268";scale = "0.125 1.73766 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.914 -656.286 141";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "1.84908 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "181.581 -656.017 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "181.581 -656.017 138";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.8 -655.589 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.8 -655.589 138";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.918 -654.528 130.25";rotation = "0.645561 -0.540026 0.540021 114.255";scale = "0.125 0.166666 8.9995";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.829 -654.036 130.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.741 -653.544 131.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.458 -653.381 137.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "0.125 2.75535 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.46 -653.4 138";rotation = "0 0 1 79.8268";scale = "2.0569 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.654 -653.051 131.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.9995";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.566 -652.559 132.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.478 -652.067 132.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.39 -651.575 133.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.301 -651.083 133.75";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.213 -650.59 134.25";rotation = "0.705711 0.0628184 0.705709 172.811";scale = "0.125 0.166666 8.99954";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.426 -650.193 134";rotation = "0.996062 0.0886644 1.1239e-07 180";scale = "1.12545 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.081 -650.222 139.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 7.00004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.834 -650.266 141";rotation = "-0.0886647 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.525 -649.604 141.25";rotation = "-0.509113 -0.608605 0.608608 233.963";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.657 -646.711 137.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.831 -638.748 137.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.501 -645.026 134.25";rotation = "-0.992169 -0.088322 -0.0883161 90.4505";scale = "1.12494 0.166666 10.0006";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.657 -646.711 141.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49997 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "175.184 -647.26 128.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.187 -657.449 141.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.738 -649.352 134.25";rotation = "-0.0628184 0.705711 0.705709 172.811";scale = "0.125 0.166666 7.21832";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.101 -645.799 135";rotation = "0.608608 -0.509113 0.608606 233.962";scale = "0.25 0.166666 7.13828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "170.966 -649.28 134.01";rotation = "0.50911 0.60861 -0.608605 126.038";scale = "3.58894 4.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "178.181 -637.07 134";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.728 -649.313 137.249";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 0.166666 7.13808";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.513 -649.711 137.75";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 1.33331 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "168.602 -647.878 137.8";rotation = "0 0 -1 99.646";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "181.537 -655.771 139.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.875 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.155 -647.534 129.75";rotation = "0.571008 0.682591 -0.456091 138.233";scale = "0.986067 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.168 -646.554 139.5";rotation = "0.608607 -0.509115 0.608605 233.962";scale = "0.75 0.166667 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.513 -649.711 141.25";rotation = "-0.0628162 0.705712 0.705709 172.811";scale = "0.999968 0.166666 7.04292";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "167.616 -648.07 141.5";rotation = "0 0 -1 101.882";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.369 -646.264 139.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 7.00008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.124 -646.308 141";rotation = "-0.0886647 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.456 -644.78 137.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "1.12596 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.815 -645.645 141.25";rotation = "-0.509113 -0.608605 0.608608 233.963";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.463 -642.274 137.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.79133 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.472 -642.32 138";rotation = "0 0 1 79.8268";scale = "1.81436 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.787 -638.502 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.033 -638.458 137.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.787 -638.502 138";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.861 -637.771 139.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.875 0.166666 7.78024";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.99 -638.219 135.992";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.75351 0.333205 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "178.137 -636.824 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "174.716 -637.438 139.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.875 0.166666 6.44958";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.484 -638.407 130";rotation = "0 0 -1 100.173";scale = "0.125 1.66688 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "168.893 -637.731 129.99";rotation = "-0.99217 -0.0883135 -0.0883088 90.45";scale = "9.01947 4.505 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.777 -638.893 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "174.669 -637.193 141.25";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.333264 3.76724";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.767 -637.28 139.75";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.875 0.166666 17.7673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "178.137 -636.824 138";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.777 -638.893 138";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "174.621 -636.947 139.75";rotation = "0.705712 0.0628147 0.705709 172.812";scale = "0.875 0.166666 16.4669";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "180.264 -635.934 130";rotation = "0 0 -1 100.173";scale = "0.125 1.66686 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.971 -635.449 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.971 -635.449 138";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "166.432 -636.385 130";rotation = "0 0 1 169.568";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "179.601 -634.021 130";rotation = "0 0 1 171.287";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.345 -629.498 137.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.50007 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.377 -619.945 135.282";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.109 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "171.652 -627.574 128.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.377 -619.945 130.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.262 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.377 -619.945 137.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.377 -619.945 138.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26225 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.576 -636.881 141.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 6.50017 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.377 -619.945 141.007";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2465 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.571 -616.501 135.317";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.0915 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.571 -616.501 130.547";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2735 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.571 -616.501 137.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.571 -616.501 138.522";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.571 -616.501 140.776";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.579 -619.655 135.293";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.1035 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.579 -619.655 130.543";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.2715 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.579 -619.655 137.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.333 -619.699 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.579 -619.655 138.52";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25975 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.579 -619.655 141.01";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.245001 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.333 -619.699 138";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.527 -616.255 130";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.527 -616.255 138";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "6.37801 -729.629 134.363";rotation = "-0.0236259 -0.030789 -0.999247 105.04";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "5.569 -730.034 129.408";rotation = "0.0401026 -0.0307726 0.998722 75.073";scale = "1.25 1.66666 10";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "5.043 -728.607 129.622";rotation = "0.303288 0.952899 1.20789e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "35.0427 1.39323 100.622";rotation = "1.73369e-06 -4.19433e-12 1 215.311";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/6.cs b/Univ/Data/2703588/Buildings/6.cs new file mode 100644 index 0000000..c03894b --- /dev/null +++ b/Univ/Data/2703588/Buildings/6.cs @@ -0,0 +1,513 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "218.477 14.506 104.51";rotation = "-0.0628162 0.705711 -0.70571 187.188";scale = "2.07631 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "219.679 14.2238 99.5";rotation = "0 0 -1 100.173";scale = "9.99998 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "215.156 15.9803 101.4";rotation = "0.872065 -0.48939 -6.20346e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = "Vehicle Pad";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "215.156 15.9803 101.4";rotation = "-4.84892e-06 5.32766e-13 1 58.601";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.385 13.3483 104.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "1.57501 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "220.016 16.1271 101.4";rotation = "0.989552 0.144174 1.82753e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = "USMC Containment Wall";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "220.016 16.1271 101.4";rotation = "-1.74923e-05 -4.48228e-12 -1 16.5792";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "209.663 16.2514 100.68";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.836 12.4577 101";rotation = "0 0 -1 100.173";scale = "0.249977 0.333249 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.8 8.50219 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "1.78166 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.747 15.2078 104.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "2.66108 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "223.662 17.2244 101";rotation = "0 0 1 168.295";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.708 6.55088 104.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 6.66663 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "208.018 9.84562 101";rotation = "0 0 1 40.8422";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "209.276 18.4096 102.397";rotation = "0.509119 0.608606 0.608602 233.963";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = " Teleport";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.978 17.2402 101";rotation = "0 0 1 79.8273";scale = "2.17945 0.333249 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "211.191 4.96234 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "1.92095 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.421 11.591 104.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "1.50719 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "208.879 20.6229 100.845";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.31 16.9159 104.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.59943 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.645 31.6963 109.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 13.1622 78";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.743 33.3289 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 6.6668 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "206.098 16.9423 104.51";rotation = "-0.062819 0.705712 -0.705708 187.188";scale = "2.21957 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.32 15.6996 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.232 16.1918 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.744 35.6314 105.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 78.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "207.604 23.4999 104.51";rotation = "0.645556 -0.540028 0.540025 114.311";scale = "2.05502 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.194 11.9532 104.75";rotation = "-0.0628161 0.705712 0.705709 172.812";scale = "2.57118 0.166666 8.16828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.645 -1.78393 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "2.49306 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "201.236 10.4169 104.51";rotation = "0.99217 0.0883117 -0.0883136 90.4505";scale = "2.30593 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.719 -3.2479 108.8";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.52675 0.166666 78";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.72 -3.24777 101.498";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.249001 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.72 -3.24777 104.047";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.24 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.364 15.4535 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "200.914 10.8569 103.138";rotation = "0.98428 0.176615 0 89.9996";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " <- Safe / Inventory Station room";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "200.397 10.7642 103.17";rotation = "0.98428 0.176615 0 89.9996";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " Office complex Roof ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "200.986 13.4524 105";rotation = "0 0 -1 100.14";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.832 35.1392 103";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "210.049 28.0189 101";rotation = "0 0 -1 101.941";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Generator Room";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.344 12.3694 104.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.333205 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.12 27.5912 104.5";rotation = "0.767012 -0.641633 -8.13328e-07 180";scale = "2.06122 0.33329 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.518 -3.53798 101.478";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.238751 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "210.741 -5.32923 101";rotation = "0 0 1 125.843";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.518 -3.53798 104.025";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.241001 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.816 -6.8936 104.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.929 -8.4137 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 6.6668 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.378 11.0891 107.005";rotation = "0.540026 0.645558 0.540025 114.311";scale = "1.00225 0.166666 8.1681";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "201.759 0.8487 99.5";rotation = "0 0 -1 100.173";scale = "15 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.126 14.8342 101.25";rotation = "-0.0628161 0.705712 -0.705709 187.189";scale = "0.125 0.166666 9.16732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.57 -6.93775 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.078 -7.02606 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.01 -3.44963 105.5";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.25 0.166666 79.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.633 14.7458 101.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.166 -7.5181 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "224.007 31.2569 101";rotation = "0 0 1 84.7536";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.878 15.0437 104.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "3.60037 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.141 14.6574 102.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "199.144 11.0369 104.99";rotation = "-0.088656 0.996062 -5.35938e-07 180.001";scale = "4.57562 4.10405 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "197.025 15.324 105.268";rotation = "0.99217 0.0883139 -0.0883131 90.4505";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.13 -10.4261 108.666";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.4635 0.166666 77.9982";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.65 14.569 102.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.945 9.71135 104.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "2.6715 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";nametoset = " Office complex Roof ->";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.516 -3.53835 109.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 77.9982";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.157 14.4806 103.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16658";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3413 104.75";rotation = "-0.0883149 0.99217 -0.0883112 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "209.698 33.25 100.99";rotation = "-0.992171 -0.0883135 -0.0883087 90.45";scale = "9.01948 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.339 32.2543 101";rotation = "0 0 1 79.8268";scale = "0.125 1.0153 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.859 15.3991 107";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "1 0.166666 11.1109";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.318 -7.88005 104.5";rotation = "0.996062 0.0886589 1.12383e-07 180";scale = "2.29331 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.218 24.2221 104.75";rotation = "-0.645555 0.540025 0.540029 114.311";scale = "3.72898 0.166666 37.9994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.504 32.9713 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.665 14.3923 103.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16638";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.922 14.618 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 1.68484 8.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.764 -3.49381 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.594 31.9414 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "215.706 33.8406 104.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "2.2206 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.619 33.3512 105";rotation = "0 0 -1 100.173";scale = "0.125 1.26591 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.102 31.853 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.854 34.6492 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.642 32.4884 106";rotation = "0 0 1 169.827";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.174 14.3039 104.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16616";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 108.995";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.2525 0.166666 17.9542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.756 9.28794 107.002";rotation = "0.705711 0.0628183 0.705709 172.812";scale = "1 0.166666 18.1107";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.131 34.3401 105";rotation = "0 0 -1 100.173";scale = "0.125 1.0004 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.504 32.9713 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 109.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.166666 17.9542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "211.732 33.6255 105.232";rotation = "0.99217 0.0883139 -0.0883131 90.4505";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.97 34.1622 106";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "222.119 34.7271 104.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.125 2.31845 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "194.557 10.7491 106.518";rotation = "0.176622 -0.984279 0 90.0002";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = " 2 Layer Forcefields ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.854 34.6492 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.762 -3.49419 106";rotation = "0 0 1 169.827";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 105.5";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.25 0.166666 13.8518";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.314 10.6884 105";rotation = "0 0 -1 100.174";scale = "0.249978 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "194.093 13.2724 104.99";rotation = "-0.645553 0.540025 0.540032 114.311";scale = "2.09238 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.771 13.7123 105";rotation = "0 0 1 79.8268";scale = "0.250003 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3411 108.606";rotation = "-0.088315 0.99217 -0.0883152 90.4506";scale = "0.447 0.166666 12.8541";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3411 109.75";rotation = "-0.088315 0.99217 -0.0883152 90.4506";scale = "0.125 0.166666 12.8541";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.788 35.3853 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "192.762 7.10813 101";rotation = "0 0 -1 52.0143";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.88 13.8924 104.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 1.38645 8.1673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.13 -10.4258 104.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.788 35.3853 106";rotation = "0 0 1 79.8268";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "193.443 14.1831 104.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "3.02017 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.679 9.88718 108.75";rotation = "0.99217 0.088312 -0.0883182 90.45";scale = "0.750045 0.166667 8.16688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "193.798 -0.40379 101.4";rotation = "0.764272 -0.644894 -8.17462e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.888 32.5326 105.5";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.25 0.166666 47.1938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.391 14.4176 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "190.819 11.7623 106.991";rotation = "0.176623 -0.984279 0 89.9997";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2703588";nametoset = "Danger Zone ->";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.44 8.72346 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.352 9.2156 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.957 9.57819 107";rotation = "-0.0628183 0.705711 0.705709 172.812";scale = "0.125 1.33333 8.16686";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.905 11.7179 103.505";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 1.52799 2.99";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.396 32.4443 108.63";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.435 0.166666 45.164";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4533 101.518";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25875 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4534 104.066";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25825 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4533 104.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.192 13.8436 108.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.169 28.456 109.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.125 0.166666 45.164";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.528 19.3802 101.504";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.252 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.798 6.7249 106";rotation = "0 0 1 79.8268";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.528 19.3802 103.997";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.25125 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.501 2.80715 109.5";rotation = "0.996062 0.0886589 1.12383e-07 180";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.583 2.3508 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.484 8.47739 103";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.637 40.0186 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 3.83327 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.457 3.05322 109.75";rotation = "0.99217 0.08831 -0.0883152 90.4505";scale = "0.125 0.166666 6.96082";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.951 28.1629 105.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 44.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.092 -9.71486 104.5";rotation = "0.996062 0.0886589 1.12383e-07 180";scale = "2.01289 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.552 6.68902 105.5";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.25 0.166666 7.00208";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.906 4.38694 104.5";rotation = "0.767012 -0.641633 -8.13328e-07 180";scale = "0.75 0.999999 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.308 9.46167 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.539 6.58189 104.75";rotation = "-0.0628125 0.705712 -0.705709 187.189";scale = "0.99997 0.166666 9.0001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.566 -26.4655 101.513";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25675 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.484 19.6263 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.928 -10.7161 105.5";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25 0.166666 27.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.566 -26.4655 104.481";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2595 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.967 28.1657 108.647";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.4265 0.166666 43.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "195.5 -8.14822 101";rotation = "0 0 1 211.762";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.106 6.0709 108.761";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.3695 0.166666 6.99804";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "191.223 3.00099 109.51";rotation = "-0.062816 0.705711 -0.70571 187.189";scale = "3.51901 4.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.967 28.1657 109.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 43.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.106 6.07084 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 6.99804";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "187.762 22.2929 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "2.51225 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.811 2.14501 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 7.99788";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.628 2.10479 108.697";rotation = "-0.540028 -0.645552 0.54003 114.311";scale = "0.48025 0.166667 25.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.332 2.15257 104.75";rotation = "-0.0819566 0.920772 -0.381394 183.889";scale = "0.99997 0.166666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.245 2.64756 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 1.33296 6.99994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.84 -10.2239 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 25.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.956 22.5716 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.611 1.84361 105.5";rotation = "0.540029 0.645554 0.540027 114.311";scale = "0.25 0.166666 8.99976";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.93 43.9557 104.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "212.457 43.4069 99.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.86 6.02668 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 103";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.904 5.78063 108.754";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.37325 0.166666 6.99994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.704 1.32162 105.28";rotation = "0.731006 -0.611512 0.302793 208.427";scale = "0.250062 0.166666 14.4158";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.567 2.08968 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 105.524";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.262 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.981 21.0256 100.75";rotation = "0.571012 0.682589 -0.45609 138.232";scale = "0.885297 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 103";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 105.498";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.249001 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.912 22.8177 101.518";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.259 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.884 -10.47 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 108.495";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2525 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.912 22.8177 104.008";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.246 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 108.088";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25225 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.972 -10.9623 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8953 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.884 -10.47 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.896 -20.2687 104.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.49997 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.63 44.3489 109";rotation = "0 0 1 169.827";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.842 44.9254 110.75";rotation = "-0.088313 0.99217 -0.0883122 90.4505";scale = "0.875 0.166666 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.908 28.4092 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.088 44.9696 109";rotation = "0 0 -1 10.1729";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.12 46.1206 105.25";rotation = "-0.645558 0.540026 0.540025 114.311";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.032 46.6128 105.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02736";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.923 28.4118 106";rotation = "0 0 1 169.827";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.944 47.105 106.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.857 47.5972 106.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.768 48.0894 107.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.68 48.5817 107.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02934";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.372 48.6204 109";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.846 49.0644 109";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.592 49.0738 108.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.0294";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.126 48.5764 108.75";rotation = "-0.645557 0.540027 0.540025 114.311";scale = "2.00002 0.166666 6.23604";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.092 49.1086 108.75";rotation = "0.645557 -0.540027 0.540025 114.311";scale = "1.99997 0.166666 5.73618";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.174 52.4689 110.75";rotation = "0.608607 -0.509114 0.608606 233.962";scale = "0.875 0.166666 15.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.632 53.0899 110.75";rotation = "0.608607 -0.509116 0.608604 233.963";scale = "0.875 0.166666 15.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.049 49.3548 112.25";rotation = "-0.0883145 0.99217 -0.0883148 90.4506";scale = "0.125 2.83326 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.61 -26.7116 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.016 -11.2084 101.514";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.257 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.016 -11.2084 104.492";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.254 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.222 51.139 108.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 1.23192 4.0314";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.06 52.1646 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.261 52.4548 104.763";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.333447 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.164 53.7983 107.007";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.9965 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.41 53.8425 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "206.17 52.9365 100.99";rotation = "-0.992171 -0.0883135 -0.0883087 90.45";scale = "9.00729 3.533 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.06 52.1646 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.662 -30.1115 101.508";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.254 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.662 -30.1115 104.49";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25525 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.41 53.8425 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.069 54.2893 106.757";rotation = "-0.705707 -0.0628074 0.705714 172.811";scale = "0.871747 0.166667 17.9766";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.759 52.26 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66823 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.13 52.715 109";rotation = "0 0 1 169.826";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.8179 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.588 53.336 109";rotation = "0 0 -1 10.1732";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.533 54.7315 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66925 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.05 51.7737 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.818 109.519";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25925 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.004 53.201 109";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.467 53.8224 109";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.997 55.1736 109.485";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.24275 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.25 53.2452 112.25";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 6.03688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.244 55.2178 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.818 112.02";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.24 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.997 55.1736 111.999";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.2505 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.05 51.7737 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.701 54.2813 101";rotation = "0 0 1 170.678";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.244 55.2178 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "216.405 56.561 101";rotation = "0 0 1 171.826";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.416 -30.1557 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "208.925 63.0925 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.007 52.0199 101.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.232 65.0165 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.4999 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0199 106.009";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.2455 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 101.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.001 72.3991 112.25";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.5002 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.65 70.721 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 106.174";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.163 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0199 109.506";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25275 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.844 74.1652 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 109.496";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.247999 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0198 111.787";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 112.004";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.248249 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "200.785 69.2852 101";rotation = "0 0 -1 7.90411";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "214.539 71.6225 101";rotation = "0 0 -1 10.7441";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.303 69.9573 109";rotation = "0 0 -1 10.7996";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "202.512 72.0914 100.99";rotation = "-0.99217 -0.0883139 -0.0883107 90.45";scale = "9.0195 4.826 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.208 71.434 101";rotation = "0 0 1 79.8268";scale = "0.125 1.5961 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.521 72.1027 107.153";rotation = "0.509115 0.608605 0.608607 233.963";scale = "0.249904 0.898 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.988 73.9065 101";rotation = "0 0 1 79.8268";scale = "0.125 1.73766 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.606 70.9671 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.231 72.3049 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.432 71.833 112";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "2.32658 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.581 73.9828 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.554 74.3671 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.8 74.4113 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.914 73.714 112";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "1.84908 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.606 70.9671 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.231 72.3049 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.581 73.9828 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.8 74.4113 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.176 75.6234 101.25";rotation = "0.540025 0.645557 0.540027 114.31";scale = "0.125 1.49992 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204 76.6076 101.75";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.912 77.0996 102.25";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.458 76.619 108.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "0.125 2.75535 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.824 77.5921 102.75";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.46 76.6 109";rotation = "0 0 1 79.8268";scale = "2.0569 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.737 78.0841 103.25";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "206.302 78.801 101";rotation = "0 0 1 78.8167";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.649 78.5761 103.75";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.561 79.0686 104.25";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.472 79.5606 104.75";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.426 79.807 105";rotation = "0.996062 0.0886644 1.1239e-07 180";scale = "1.12545 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "201.267 79.0909 108.731";rotation = "0.645558 -0.540026 0.540025 114.311";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.588 79.6897 110.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 8.00186";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "205.184 82.7405 99.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.5 84.9742 105.25";rotation = "-0.992169 -0.088322 -0.0883161 90.4505";scale = "1.12494 0.166666 10.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.657 83.2893 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.181 92.93 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.831 91.2521 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.657 83.2893 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49997 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";switchRadius = "1000";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "200.966 80.7197 105.01";rotation = "0.50911 0.60861 -0.608605 126.038";scale = "3.58894 4.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.102 84.1905 105.75";rotation = "0.608608 -0.509113 0.608606 233.962";scale = "0.375033 0.166666 7.13828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.537 74.229 110.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.875 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.155 82.4658 100.75";rotation = "0.571008 0.682591 -0.456091 138.233";scale = "0.986067 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.187 72.551 112.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.728 80.687 108.249";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 0.166666 7.13808";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.513 80.289 108.75";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 1.33331 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "198.602 82.122 108.8";rotation = "0 0 -1 99.646";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.168 83.4461 110.5";rotation = "0.608607 -0.509115 0.608605 233.962";scale = "0.75 0.166667 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.601 79.797 112.25";rotation = "-0.0628162 0.705712 0.705709 172.811";scale = "0.999968 0.166666 9.04218";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.456 85.22 108.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "1.12596 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.878 83.6483 110.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 7.99782";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "202.562 88.1824 101";rotation = "0 0 -1 100.694";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.463 87.726 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.79133 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.472 87.6805 109";rotation = "0 0 1 79.8268";scale = "1.81436 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.787 91.4982 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.137 93.1761 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.033 91.5424 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.99 91.7808 106.992";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.75351 0.333205 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "198.893 92.2691 100.99";rotation = "-0.992171 -0.0883135 -0.0883087 90.45";scale = "9.01947 4.505 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.861 92.2295 110.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.875 0.166666 7.78024";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.716 92.5622 110.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.875 0.166666 6.44958";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.787 91.4982 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.137 93.1761 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.484 91.593 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66688 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.264 94.066 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66686 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.669 92.8073 112.25";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.333264 3.76724";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.777 91.1072 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.767 92.72 110.75";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.875 0.166666 17.7673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.971 94.5514 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.621 93.0529 110.75";rotation = "0.705712 0.0628147 0.705709 172.812";scale = "0.875 0.166666 16.4669";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "199.526 92.3924 108.742";rotation = "0.992171 0.0883104 -0.0883097 90.4506";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.777 91.1072 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.971 94.5514 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "196.432 93.6155 101";rotation = "0 0 1 169.568";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "209.601 95.9787 101";rotation = "0 0 1 171.287";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "201.652 102.426 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.345 100.502 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.50007 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 101.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.262 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 106.282";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.109 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 101.547";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2735 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.576 93.1193 112.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 6.50017 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 106.317";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.0915 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 109.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26225 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 109.522";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 112.007";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2465 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 111.776";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "193.323 108.805 101";rotation = "0 0 -1 9.23363";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "206.915 111.244 101";rotation = "0 0 -1 9.23363";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "204.262 112.559 100.99";rotation = "-0.0628166 0.705709 0.705712 172.812";scale = "9.02056 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.965 110.775 101";rotation = "0 0 1 79.8268";scale = "0.125 1.61639 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.745 113.248 101";rotation = "0 0 1 79.8268";scale = "0.125 1.71733 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "198.825 112.068 108.99";rotation = "-0.992171 -0.0883105 -0.0883058 90.45";scale = "2.40545 3.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.333 110.301 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.728 111.09 109";rotation = "0 0 -1 10.1725";scale = "2.10759 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.527 113.745 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.281 113.701 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "205.253 112.978 109";rotation = "0 0 -1 10.1725";scale = "2.04619 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.333 110.301 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.527 113.745 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "305.055 73.3099 100";rotation = "0 0 -1 93.2409";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "197.971 122.086 99.5";rotation = "0 0 -1 100.173";scale = "4.99985 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.062 111.405 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.499 121.538 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.83333 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.063 111.405 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.375 0.166666 41";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.869 82.5955 141.5";rotation = "0 0 -1 2.66385";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.845 83.095 142";rotation = "0 0 -1 2.66385";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.412 113.084 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 58.9974";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.412 113.084 109.75";rotation = "0.540026 0.645558 0.540025 114.311";scale = "0.375 0.166666 58.9974";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.396 92.8345 142.5";rotation = "0 0 1 177.336";scale = "0.125 6.3332 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.191 122.794 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.619 82.5837 141.25";rotation = "0.559458 0.586093 0.586091 238.45";scale = "0.125 0.166666 39.9992";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.191 122.794 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.595 83.0832 141.75";rotation = "0.559458 0.586093 0.586091 238.45";scale = "0.125 0.166666 40.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "200.73 132.243 100.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "9.01938 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 101.504";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.252 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 106.076";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.2115 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.147 123.04 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 8.93052";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 109.511";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25575 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 114.315";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.09225 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.554 127.76 105";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "2 0.166666 41.0042";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.945 122.75 116.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.242 131.293 109.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.375 0.166666 40.007";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "305.653 88.033 142";rotation = "0.995652 0.0931542 1.18081e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";switchRadius = "10000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "169.425 126.885 101";rotation = "0 0 1 78.9645";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.314 127.681 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.381 127.305 109";rotation = "0 0 1 79.8268";scale = "2.16678 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.997 119.35 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.997 119.35 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "293.944 102.574 142";rotation = "0 0 1 177.336";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.124 93.7523 142.25";rotation = "-0.595245 0.568192 0.568191 118.474";scale = "4.74983 0.166666 40.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "293.919 103.074 141.5";rotation = "0 0 1 177.336";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.97 129.6 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.84984 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "191.21 131.53 100.99";rotation = "0.509117 0.608606 0.608604 233.963";scale = "9.02055 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "185.479 135.084 99.5";rotation = "0 0 -1 100.173";scale = "2.5 9.99983 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.163 132.77 108.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.125 3.16613 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "170.035 133.449 105.202";rotation = "0.645561 -0.540024 0.540023 114.311";scale = "2.26324 4.21201 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.669 131.273 106.846";rotation = "-0.608605 0.509113 0.608608 233.963";scale = "0.827 0.166666 4.48648";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.166 136.908 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.672 136.833 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 18.0964";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "197.543 140.043 101";rotation = "0 0 1 33.9485";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "170.382 131.518 108.99";rotation = "0.509115 0.608605 0.608607 233.963";scale = "2.34972 3.208 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "StationInventory";position = "197.051 139.954 109";rotation = "0 0 1 46.0331";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.205 133.863 114.344";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "1.07775 0.166666 4.65714";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "160.872 130.669 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.223 132.347 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.66677 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.158 142.364 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.368 137.198 104.75";rotation = "0.0883095 -0.99217 -0.0883151 90.4505";scale = "1.875 0.166667 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.972 135.157 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.851405 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.404 142.408 109.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.375 0.166666 59.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.673 103.492 141.75";rotation = "-0.595245 0.568192 0.568191 118.474";scale = "0.125 0.166666 40.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.44 140.064 116.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.50017 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.648 103.992 141.25";rotation = "0.559458 0.586093 -0.586091 121.55";scale = "0.125 0.166666 40.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.122 137.154 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.628 137.079 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 101.494";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.247249 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 106.065";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.2175 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 109.511";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2555 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 114.332";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.084 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.498 137.803 109";rotation = "0 0 1 79.8268";scale = "2.00122 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.597 138.298 116.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "167.414 138.092 101";rotation = "0 0 1 78.9645";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.792 141.742 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 8.97526";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "166.64 139.578 109";rotation = "0 0 1 26.0216";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "312.73 102.196 142.9";rotation = "0.321271 0.946987 1.20039e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = "USMC Base";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "312.73 102.196 142.9";rotation = "1.76859e-06 2.09174e-12 1 217.48";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.747 141.988 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.747 141.988 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.611 141.246 108.5";rotation = "0.64163 0.767014 9.7226e-07 180";scale = "0.125 2.63508 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.224 141.176 109";rotation = "0 0 -1 100.173";scale = "0.125 2.89682 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.685 141.589 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "160.689 140.786 105.45";rotation = "-0.0628167 0.705712 -0.705709 187.189";scale = "2.90328 4.46 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.883 140.038 106.97";rotation = "0.0883119 -0.99217 -0.0883151 90.4505";scale = "0.765 0.166666 5.76462";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "159.999 140.175 108.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "2.19517 2.99 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.946 140.409 114.235";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "1.1325 0.166666 4.35034";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "156.276 139.75 108.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.816297 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.799 138.588 116.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.56 139.98 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.423 139.419 101";rotation = "0 0 1 79.8268";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "154.229 139.141 100.99";rotation = "-0.0628166 0.705709 0.705712 172.812";scale = "2.45016 3.541 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.799 138.588 109.492";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25 0.166666 15.2699";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.785 138.944 106.51";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.99475 0.166666 4.86032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.799 138.588 114.349";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.075 0.166666 15.2699";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.792 138.766 101";rotation = "0 0 -1 100.173";scale = "0.125 0.672553 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.553 138.544 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.826 139.385 100.75";rotation = "-0.0738078 0.829203 0.554053 174.353";scale = "0.66369 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.553 138.544 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.752 143.161 109.75";rotation = "0.608607 -0.509114 0.608606 233.962";scale = "0.375 0.166666 7.10554";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.106 142.254 109.707";rotation = "0.705711 0.0628191 0.705709 172.811";scale = "0.3965 0.166666 6.99802";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.615 142.162 112.5";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "1 0.166666 8.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.493 143.453 108.5";rotation = "-0.0886647 0.996062 1.2626e-06 180";scale = "0.75 0.666666 17";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.626 142.273 108.75";rotation = "-0.0628162 0.705712 0.705709 172.811";scale = "0.999705 0.166666 4.92778";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "153.615 145.339 103.681";rotation = "0.645557 -0.540027 0.540025 114.311";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.904 141.964 109.75";rotation = "0.540026 0.645561 0.540021 114.313";scale = "0.375 0.166666 4.92972";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.729 141.343 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.641 141.835 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.375 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "157.288 150.346 99.5";rotation = "0 0 -1 100.173";scale = "4.99985 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.717 151.141 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.66613 17.9991";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.379 139.665 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.19 144.697 108.75";rotation = "-0.0819597 0.920772 0.381394 176.111";scale = "0.999705 0.166666 28.9614";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "147.745 153.988 100.41";rotation = "-0.364467 0.304876 -0.879894 107.29";scale = "0.375432 0.166666 25.5896";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.759 159.839 109.75";rotation = "0.608604 -0.509119 0.608604 233.963";scale = "0.375 0.166666 29.961";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.075 162.156 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.321 162.2 109.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.375 0.166666 10.0011";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.461 161.508 101";rotation = "0 0 -1 100.173";scale = "0.125 2.28115 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "158.145 160.67 100.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "3.76695 4.264 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.406 160.242 106.872";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.814 0.166666 7.49192";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.093 160.904 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 7.49192";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.266 159.499 101";rotation = "0 0 -1 100.173";scale = "0.125 2.80371 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.635 158.667 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.375 0.166666 10.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.881 158.712 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.837 158.957 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.375 0.166666 7.5853";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.12 162.956 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "2.03094 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.675 181.104 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.587 181.596 109.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.375 0.166666 39.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.829 154.395 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.829 154.395 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "153.756 170.031 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.876 162.893 105";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.7 159.273 109.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.375 0.166666 41.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.832 179.338 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.50017 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.785 154.641 109.5";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25 0.166666 9.00152";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "143.835 168.758 104.29";rotation = "0.645561 -0.540024 0.540023 114.311";scale = "1.88524 3.29999 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.403 166.955 106.39";rotation = "-0.608605 0.509113 0.608608 233.963";scale = "1.05525 0.166666 3.72854";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.187 157.975 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.6936 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 101.613";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.30625 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 106.361";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.069 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 109.5";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "134.195 165.802 99.5";rotation = "0 0 -1 100.173";scale = "2.5 6.66647 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "133.646 170.275 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.49953 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "159.612 178.448 109";rotation = "0 0 1 35.1238";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "123.855 164.037 104.639";rotation = "0.645561 -0.540024 0.540023 114.311";scale = "2.82403 3.649 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.093 164.069 106.564";rotation = "-0.540026 -0.645558 0.540025 114.311";scale = "0.96775 0.166666 5.60806";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.277 173.225 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "2.25318 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.635 150.951 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.635 150.951 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.394 159.651 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.631 181.35 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.429 173.343 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.198 172.243 105";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "38.5173 0.755563 105.223";rotation = "0.793202 -0.60867 -0.0187554 182.8";scale = "1.25 0.166666 9.99696";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "314.821 -136.462 101";rotation = "0 0 -1 92.6639";scale = "109.999 6.66667 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.481 177.66 109.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.375 0.166666 10.4178";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.022 168.623 109.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.375 0.166666 41.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.385 181.306 105";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "2 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.191 177.862 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.375 0.166666 39.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "36.5781 -2.61098 105.398";rotation = "0.793204 -0.608667 -0.0187558 182.8";scale = "0.125 1.66667 9.99898";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "36.3775 0.371377 105.363";rotation = "-0.0236259 -0.030789 -0.999247 105.04";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "114.51 162.27 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.437 177.906 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.586 171.577 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.50017 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.8574 2.62197 100.408";rotation = "-0.0236231 -0.0307912 -0.999247 105.04";scale = "0.125 1.6666 10.003";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "35.0427 1.39323 100.622";rotation = "0.303288 0.952899 1.20789e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "35.0427 1.39323 100.622";rotation = "1.73369e-06 -4.19433e-12 1 215.311";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.261 168.706 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "2.35553 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "121.238 168.653 101";rotation = "0 0 1 80.9142";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.2151 -0.664946 105.569";rotation = "0.793203 -0.608669 -0.0187523 182.8";scale = "1.25001 0.166666 10.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.429 173.343 109.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 9.00156";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.591 151.197 101.628";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.314 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.591 151.197 106.352";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.07425 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.235 169.899 109.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.385 173.589 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.385 173.589 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.437 170.189 101.647";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.32375 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.437 170.189 106.337";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.0815 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.437 170.189 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.139 173.545 109.5";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.25 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.191 170.145 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.191 170.145 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "299.488 193.178 101";rotation = "0 0 -1 92.6639";scale = "44.9992 6.66667 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "46.0385 261.471 101";rotation = "0 0 -1 92.6639";scale = "5 159.997 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-168.84 -68.8705 101";rotation = "0 0 -1 92.6639";scale = "154.998 6.66667 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "85.7795 -377.366 101";rotation = "0 0 -1 92.6639";scale = "5 166.661 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/8.cs b/Univ/Data/2703588/Buildings/8.cs new file mode 100644 index 0000000..f8a1a17 --- /dev/null +++ b/Univ/Data/2703588/Buildings/8.cs @@ -0,0 +1,553 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "299.488 193.178 101";rotation = "0 0 -1 92.6639";scale = "44.9992 6.66667 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.648 103.992 141.25";rotation = "0.559458 0.586093 -0.586091 121.55";scale = "0.125 0.166666 40.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.673 103.492 141.75";rotation = "-0.595245 0.568192 0.568191 118.474";scale = "0.125 0.166666 40.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "293.919 103.074 141.5";rotation = "0 0 1 177.336";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "293.944 102.574 142";rotation = "0 0 1 177.336";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "312.73 102.196 142.9";rotation = "0.321271 0.946987 1.20039e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = "USMC Base";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "312.73 102.196 142.9";rotation = "1.76859e-06 2.09174e-12 1 217.48";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.124 93.7523 142.25";rotation = "-0.595245 0.568192 0.568191 118.474";scale = "4.74983 0.166666 40.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.396 92.8345 142.5";rotation = "0 0 1 177.336";scale = "0.125 6.3332 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "305.653 88.033 142";rotation = "0.995652 0.0931542 1.18081e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";switchRadius = "10000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.595 83.0832 141.75";rotation = "0.559458 0.586093 0.586091 238.45";scale = "0.125 0.166666 40.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.845 83.095 142";rotation = "0 0 -1 2.66385";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.619 82.5837 141.25";rotation = "0.559458 0.586093 0.586091 238.45";scale = "0.125 0.166666 39.9992";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.869 82.5955 141.5";rotation = "0 0 -1 2.66385";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "305.055 73.3099 100";rotation = "0 0 -1 93.2409";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.527 113.745 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.527 113.745 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 111.776";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.412 113.084 109.75";rotation = "0.540026 0.645558 0.540025 114.311";scale = "0.375 0.166666 58.9974";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 109.522";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 106.317";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.0915 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "205.253 112.978 109";rotation = "0 0 -1 10.1725";scale = "2.04619 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.158 142.364 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.412 113.084 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 58.9974";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.745 113.248 101";rotation = "0 0 1 79.8268";scale = "0.125 1.71733 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "197.051 139.954 109";rotation = "0 0 1 46.0331";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 101.547";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2735 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "206.915 111.244 101";rotation = "0 0 -1 9.23363";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.971 94.5514 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "197.543 140.043 101";rotation = "0 0 1 33.9485";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.971 94.5514 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.499 121.538 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.83333 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "200.73 132.243 100.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "9.01938 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.281 113.701 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "198.825 112.068 108.99";rotation = "-0.992171 -0.0883105 -0.0883058 90.45";scale = "2.40545 3.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.621 93.0529 110.75";rotation = "0.705712 0.0628147 0.705709 172.812";scale = "0.875 0.166666 16.4669";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.264 94.066 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66686 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "209.601 95.9787 101";rotation = "0 0 1 171.287";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.137 93.1761 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "197.971 122.086 99.5";rotation = "0 0 -1 100.173";scale = "4.99985 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.576 93.1193 112.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 6.50017 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "204.262 112.559 100.99";rotation = "-0.0628166 0.705709 0.705712 172.812";scale = "9.02056 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.345 100.502 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.50007 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.063 111.405 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.375 0.166666 41";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.716 92.5622 110.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.875 0.166666 6.44958";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.137 93.1761 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "191.21 131.53 100.99";rotation = "0.509117 0.608606 0.608604 233.963";scale = "9.02055 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.062 111.405 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.728 111.09 109";rotation = "0 0 -1 10.1725";scale = "2.10759 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.669 92.8073 112.25";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.333264 3.76724";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "201.652 102.426 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.537 74.229 110.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.875 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.033 91.5424 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.8 74.4113 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.99 91.7808 106.992";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.75351 0.333205 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.181 92.93 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.404 142.408 109.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.375 0.166666 59.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "198.893 92.2691 100.99";rotation = "-0.992171 -0.0883135 -0.0883087 90.45";scale = "9.01947 4.505 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.163 132.77 108.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.125 3.16613 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.8 74.4113 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.861 92.2295 110.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.875 0.166666 7.78024";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.965 110.775 101";rotation = "0 0 1 79.8268";scale = "0.125 1.61639 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "199.526 92.3924 108.742";rotation = "0.992171 0.0883104 -0.0883097 90.4506";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.368 137.198 104.75";rotation = "0.0883095 -0.99217 -0.0883151 90.4505";scale = "1.875 0.166667 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.333 110.301 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "193.323 108.805 101";rotation = "0 0 -1 9.23363";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.657 83.2893 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49997 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";switchRadius = "1000";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.914 73.714 112";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "1.84908 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.787 91.4982 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.767 92.72 110.75";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.875 0.166666 17.7673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.988 73.9065 101";rotation = "0 0 1 79.8268";scale = "0.125 1.73766 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.657 83.2893 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.581 73.9828 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "185.479 135.084 99.5";rotation = "0 0 -1 100.173";scale = "2.5 9.99983 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.333 110.301 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "202.562 88.1824 101";rotation = "0 0 -1 100.694";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 112.007";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2465 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 112.004";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.248249 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.472 87.6805 109";rotation = "0 0 1 79.8268";scale = "1.81436 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.787 91.4982 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 109.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26225 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.581 73.9828 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.456 85.22 108.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "1.12596 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "214.539 71.6225 101";rotation = "0 0 -1 10.7441";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 109.496";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.247999 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.844 74.1652 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.242 131.293 109.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.375 0.166666 40.007";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 106.282";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.109 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "205.184 82.7405 99.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 106.174";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.163 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.463 87.726 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.79133 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.5 84.9742 105.25";rotation = "-0.992169 -0.088322 -0.0883161 90.4505";scale = "1.12494 0.166666 10.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "196.432 93.6155 101";rotation = "0 0 1 169.568";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.554 127.76 105";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "2 0.166666 41.0042";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.187 72.551 112.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.484 91.593 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66688 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.906 84.2662 108.75";rotation = "-0.0628096 0.705715 0.705706 172.812";scale = "0.947137 0.166667 14.4252";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.554 74.3671 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 101.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.262 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.728 80.687 108.249";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 0.166666 7.13808";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.831 91.2521 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 101.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.777 91.1072 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "206.302 78.801 101";rotation = "0 0 1 78.8167";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.472 79.5606 104.75";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.426 79.807 105";rotation = "0.996062 0.0886644 1.1239e-07 180";scale = "1.12545 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "201.267 79.0909 108.731";rotation = "0.645558 -0.540026 0.540025 114.311";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.878 83.6483 110.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 7.99782";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.102 84.1905 105.75";rotation = "0.608608 -0.509113 0.608606 233.962";scale = "0.375033 0.166666 7.13828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.561 79.0686 104.25";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.601 79.797 112.25";rotation = "-0.0628162 0.705712 0.705709 172.811";scale = "0.999968 0.166666 9.04218";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.521 72.1027 107.153";rotation = "0.509115 0.608605 0.608607 233.963";scale = "0.249904 0.898 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "198.602 82.122 108.8";rotation = "0 0 -1 99.646";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.649 78.5761 103.75";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "200.966 80.7197 105.01";rotation = "0.50911 0.60861 -0.608605 126.038";scale = "3.58894 4.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.737 78.0841 103.25";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.777 91.1072 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.824 77.5921 102.75";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.513 80.289 108.75";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 1.33331 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.46 76.6 109";rotation = "0 0 1 79.8268";scale = "2.0569 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.912 77.0996 102.25";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.804 85.2559 108.75";rotation = "-0.645552 0.540037 0.540021 114.311";scale = "2.93353 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "202.512 72.0914 100.99";rotation = "-0.99217 -0.0883139 -0.0883107 90.45";scale = "9.0195 4.826 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.588 79.6897 110.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 8.00186";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.074 90.6523 101.29";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 3.108";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204 76.6076 101.75";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.168 83.4461 110.5";rotation = "0.608607 -0.509115 0.608605 233.962";scale = "0.75 0.166667 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.176 75.6234 101.25";rotation = "0.540025 0.645557 0.540027 114.31";scale = "0.125 1.49992 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.239 90.5027 102.576";rotation = "-0.0886626 0.996062 -6.81098e-07 180";scale = "0.125 0.166666 2.66046";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.458 76.619 108.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "0.125 2.75535 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.244 55.2178 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.231 72.3049 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.155 82.4658 100.75";rotation = "0.571008 0.682591 -0.456091 138.233";scale = "0.986067 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.432 71.833 112";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "2.32658 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.562 71.2132 108.75";rotation = "-0.0628161 0.705712 0.705709 172.812";scale = "0.125 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.021 74.2266 105.672";rotation = "-0.608603 0.509116 0.608608 233.963";scale = "1.41425 0.166666 33.8762";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.299 76.0825 108.75";rotation = "-0.645552 0.540037 0.540021 114.311";scale = "2.06636 0.166667 8.5768";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.303 69.9573 109";rotation = "0 0 -1 10.7996";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.244 55.2178 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.001 72.3991 112.25";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.5002 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.231 72.3049 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.232 65.0165 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.4999 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.32 74.1011 102.902";rotation = "-0.199469 0.680524 0.705053 188.708";scale = "0.250045 0.166666 33.8762";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.021 74.2266 100.52";rotation = "-0.608603 0.509116 0.608608 233.963";scale = "0.385 0.166666 33.8762";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.997 55.1736 111.999";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.2505 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.328 90.7731 101.231";rotation = "0.199472 -0.680519 0.705056 188.708";scale = "0.250282 0.166666 33.877";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.997 55.1736 109.485";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.24275 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.205 133.863 114.344";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "1.07775 0.166666 4.65714";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "216.405 56.561 101";rotation = "0 0 1 171.826";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.533 54.7315 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66925 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.381 127.305 109";rotation = "0 0 1 79.8268";scale = "2.16678 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.109 73.7345 108.25";rotation = "-0.608605 0.509113 0.608608 233.963";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.208 71.434 101";rotation = "0 0 1 79.8268";scale = "0.125 1.5961 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.498 137.803 109";rotation = "0 0 1 79.8268";scale = "2.00122 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.191 122.794 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.166 136.908 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.747 141.988 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "170.382 131.518 108.99";rotation = "0.509115 0.608605 0.608607 233.963";scale = "2.34972 3.208 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "208.925 63.0925 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.672 136.833 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 18.0964";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.606 70.9671 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.41 53.8425 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.065 73.9806 108";rotation = "0.64163 0.767014 9.7226e-07 180";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.109 73.7345 106.467";rotation = "-0.540029 -0.645556 0.540024 114.311";scale = "1.0165 0.166666 5.1226";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.669 131.273 106.846";rotation = "-0.608605 0.509113 0.608608 233.963";scale = "0.827 0.166666 4.48648";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.122 137.154 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.977 74.4727 101.29";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 3.106";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "308.305 18.1876 141.49";rotation = "-0.0164397 0.70701 0.707013 178.117";scale = "2.50266 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "10";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "301.965 18.1329 141.5";rotation = "0 0 1 87.336";scale = "0.125 2.56143 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "200.785 69.2852 101";rotation = "0 0 -1 7.90411";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.694 18.632 141.5";rotation = "0 0 1 87.336";scale = "0.125 2.94352 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "297.877 17.9427 141.5";rotation = "0 0 1 87.336";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.314 127.681 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.97 129.6 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.84984 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.147 123.04 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 8.93052";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.972 135.157 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.851405 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.628 137.079 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "317.355 18.849 141.5";rotation = "0 0 1 87.336";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.191 122.794 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.467 53.8224 109";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.792 141.742 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 8.97526";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.41 53.8425 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.143 74.323 102.575";rotation = "-0.0886626 0.996062 -6.81098e-07 180";scale = "0.125 0.166666 2.65784";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.747 141.988 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.606 70.9671 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "170.035 133.449 105.202";rotation = "0.645561 -0.540024 0.540023 114.311";scale = "2.26324 4.21201 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.588 53.336 109";rotation = "0 0 -1 10.1732";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "196.871 73.7019 104.444";rotation = "0.645559 -0.540025 0.540025 114.311";scale = "2.5816 4.454 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.25 53.2452 112.25";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 6.03688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "166.64 139.578 109";rotation = "0 0 1 26.0216";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.8179 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.069 54.2893 106.757";rotation = "-0.705707 -0.0628074 0.705714 172.811";scale = "0.871747 0.166667 17.9766";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "169.425 126.885 101";rotation = "0 0 1 78.9645";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.092 49.1086 108.75";rotation = "0.645557 -0.540027 0.540025 114.311";scale = "1.99997 0.166666 5.73618";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "167.414 138.092 101";rotation = "0 0 1 78.9645";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.164 53.7983 107.007";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.9965 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.004 53.201 109";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.224 141.176 109";rotation = "0 0 -1 100.173";scale = "0.125 2.89682 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.632 53.0899 110.75";rotation = "0.608607 -0.509116 0.608604 233.963";scale = "0.875 0.166666 15.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.13 52.715 109";rotation = "0 0 1 169.826";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.261 52.4548 104.763";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.333447 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.222 51.139 108.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 1.23192 4.0314";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "206.17 52.9365 100.99";rotation = "-0.992171 -0.0883135 -0.0883087 90.45";scale = "9.00729 3.533 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0198 111.787";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.075 162.156 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.049 49.3548 112.25";rotation = "-0.0883145 0.99217 -0.0883148 90.4506";scale = "0.125 2.83326 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "317.293 14.8073 142.83";rotation = "-0.595244 0.568189 0.568194 118.474";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "10";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0199 109.506";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25275 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.685 141.589 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.65 70.721 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.846 49.0644 109";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.611 141.246 108.5";rotation = "0.64163 0.767014 9.7226e-07 180";scale = "0.125 2.63508 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.321 162.2 109.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.375 0.166666 10.0011";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.592 49.0738 108.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.0294";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0199 106.009";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.2455 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8953 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.587 181.596 109.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.375 0.166666 39.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 108.088";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25225 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.68 48.5817 107.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02934";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.641 141.835 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.375 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.174 52.4689 110.75";rotation = "0.608607 -0.509114 0.608606 233.962";scale = "0.875 0.166666 15.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.818 112.02";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.24 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 105.498";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.249001 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.768 48.0894 107.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.088 44.9696 109";rotation = "0 0 -1 10.1729";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.007 52.0199 101.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.675 181.104 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.372 48.6204 109";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.857 47.5972 106.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.818 109.519";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25925 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.06 52.1646 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 103";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.729 141.343 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.44 140.064 116.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.50017 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.944 47.105 106.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.032 46.6128 105.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02736";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.842 44.9254 110.75";rotation = "-0.088313 0.99217 -0.0883122 90.4505";scale = "0.875 0.166666 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.461 161.508 101";rotation = "0 0 -1 100.173";scale = "0.125 2.28115 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.945 122.75 116.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.126 48.5764 108.75";rotation = "-0.645557 0.540027 0.540025 114.311";scale = "2.00002 0.166666 6.23604";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.799 138.588 116.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.06 52.1646 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.788 35.3853 106";rotation = "0 0 1 79.8268";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.12 46.1206 105.25";rotation = "-0.645558 0.540026 0.540025 114.311";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 114.315";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.09225 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.701 54.2813 101";rotation = "0 0 1 170.678";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "226.066 35.1914 105.99";rotation = "-0.645553 0.540025 0.540032 114.311";scale = "39.0199 1.766 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.946 140.409 114.235";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "1.1325 0.166666 4.35034";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "225.594 35.1066 105.99";rotation = "-0.0628166 0.705709 0.705712 172.812";scale = "6.44705 1.732 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.63 44.3489 109";rotation = "0 0 1 169.827";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.759 52.26 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66823 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.223 132.347 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.66677 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 109.511";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25575 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.788 35.3853 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "159.999 140.175 108.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "2.19517 2.99 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.883 140.038 106.97";rotation = "0.0883119 -0.99217 -0.0883151 90.4505";scale = "0.765 0.166666 5.76462";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.05 51.7737 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 106.076";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.2115 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.631 181.35 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3411 109.75";rotation = "-0.088315 0.99217 -0.0883152 90.4506";scale = "0.125 0.166666 12.8541";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "317.558 9.09792 145.25";rotation = "-0.0232397 0.99946 -0.0232397 90.0312";scale = "0.125 6.66667 37.997";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "159.612 178.448 109";rotation = "0 0 1 35.1238";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.93 43.9557 104.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "298.092 7.94195 141.25";rotation = "0.595245 -0.568196 0.568187 118.474";scale = "5.125 0.166666 39.9992";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.56 139.98 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3411 108.606";rotation = "-0.088315 0.99217 -0.0883152 90.4506";scale = "0.447 0.166666 12.8541";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "298.795 -1.78591 142.06";rotation = "0.568192 0.595245 0.568191 118.474";scale = "0.2795 0.166666 39";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "298.794 -1.78591 144.58";rotation = "0.568192 0.595245 0.568191 118.474";scale = "0.25 0.166666 39";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "297.889 17.693 145.25";rotation = "0.586094 -0.559456 0.586091 238.45";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.273 -0.87966 143.5";rotation = "0.568192 0.595245 0.568191 118.474";scale = "1 0.166666 39";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "160.689 140.786 105.45";rotation = "-0.0628167 0.705712 -0.705709 187.189";scale = "2.90328 4.46 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.717 151.141 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.66613 17.9991";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 101.504";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.252 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.05 51.7737 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 105.5";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.25 0.166666 13.8518";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "212.457 43.4069 99.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "160.872 130.669 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.637 40.0186 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 3.83327 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.093 160.904 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 7.49192";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "222.119 34.7271 104.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.125 2.31845 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.406 160.242 106.872";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.814 0.166666 7.49192";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 108.495";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2525 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.854 34.6492 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.97 34.1622 106";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "157.288 150.346 99.5";rotation = "0 0 -1 100.173";scale = "4.99985 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "158.145 160.67 100.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "3.76695 4.264 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "156.276 139.75 108.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.816297 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 105.524";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.262 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.854 34.6492 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "224.007 31.2569 101";rotation = "0 0 1 84.7536";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.131 34.3401 105";rotation = "0 0 -1 100.173";scale = "0.125 1.0004 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 103";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.799 138.588 114.349";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.075 0.166666 15.2699";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.752 143.161 109.75";rotation = "0.608607 -0.509114 0.608606 233.962";scale = "0.375 0.166666 7.10554";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.799 138.588 109.492";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25 0.166666 15.2699";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "153.615 145.339 103.681";rotation = "0.645557 -0.540027 0.540025 114.311";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.423 139.419 101";rotation = "0 0 1 79.8268";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.832 179.338 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.50017 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3413 104.75";rotation = "-0.0883149 0.99217 -0.0883112 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.759 159.839 109.75";rotation = "0.608604 -0.509119 0.608604 233.963";scale = "0.375 0.166666 29.961";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 109.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.166666 17.9542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "215.706 33.8406 104.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "2.2206 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.615 142.162 112.5";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "1 0.166666 8.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 108.995";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.2525 0.166666 17.9542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.785 138.944 106.51";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.99475 0.166666 4.86032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.379 139.665 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.106 142.254 109.707";rotation = "0.705711 0.0628191 0.705709 172.811";scale = "0.3965 0.166666 6.99802";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "225.399 27.2837 101";rotation = "0 0 1 90.2403";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "9";isSwitchedOff = "1";switchRadius = "25";nametoset = "Raise Alarm";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.832 35.1392 103";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.626 142.273 108.75";rotation = "-0.0628162 0.705712 0.705709 172.811";scale = "0.999705 0.166666 4.92778";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "209.698 33.25 100.99";rotation = "-0.992171 -0.0883135 -0.0883087 90.45";scale = "9.01948 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "154.229 139.141 100.99";rotation = "-0.0628166 0.705709 0.705712 172.812";scale = "2.45016 3.541 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "153.756 170.031 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.597 138.298 116.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "211.732 33.6255 105.232";rotation = "0.99217 0.0883139 -0.0883131 90.4505";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 114.332";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.084 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.493 143.453 108.5";rotation = "-0.0886647 0.996062 1.2626e-06 180";scale = "0.75 0.666666 17";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.619 33.3512 105";rotation = "0 0 -1 100.173";scale = "0.125 1.26591 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.826 139.385 100.75";rotation = "-0.0738078 0.829203 0.554053 174.353";scale = "0.66369 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.997 119.35 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.191 177.862 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.375 0.166666 39.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.553 138.544 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.904 141.964 109.75";rotation = "0.540026 0.645561 0.540021 114.313";scale = "0.375 0.166666 4.92972";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 109.511";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2555 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.266 159.499 101";rotation = "0 0 -1 100.173";scale = "0.125 2.80371 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "316.194 0.77553 141.5";rotation = "0 0 1 141.53";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "10";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.792 138.766 101";rotation = "0 0 -1 100.173";scale = "0.125 0.672553 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.19 144.697 108.75";rotation = "-0.0819597 0.920772 0.381394 176.111";scale = "0.999705 0.166666 28.9614";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.385 181.306 105";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "2 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "226.544 21.8775 101";rotation = "0 0 1 170.808";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "9";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 106.065";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.2175 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.504 32.9713 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.642 32.4884 106";rotation = "0 0 1 169.827";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.635 158.667 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.375 0.166666 10.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.997 119.35 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.553 138.544 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "147.745 153.988 100.41";rotation = "-0.364467 0.304876 -0.879894 107.29";scale = "0.375432 0.166666 25.5896";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.504 32.9713 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "309.536 -1.77674 141.49";rotation = "-0.0164397 0.70701 0.707013 178.117";scale = "2.37554 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "10";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.035 -1.14098 145.25";rotation = "-0.0232397 0.99946 -0.0232397 90.0312";scale = "0.125 0.166666 37.997";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "303.109 -1.83544 141.5";rotation = "0 0 1 87.336";scale = "0.125 2.70458 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 101.494";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.247249 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.775 -1.33922 141.5";rotation = "0 0 1 87.336";scale = "0.125 2.8434 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "298.807 -2.03562 141.5";rotation = "0 0 1 87.336";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.285 -1.12936 141.5";rotation = "0 0 1 87.336";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.339 32.2543 101";rotation = "0 0 1 79.8268";scale = "0.125 1.0153 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.837 158.957 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.375 0.166666 7.5853";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.743 33.3289 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 6.6668 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.594 31.9414 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.881 158.712 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.719 -3.2479 108.8";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.52675 0.166666 78";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.102 31.853 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.744 35.6314 105.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 78.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.12 162.956 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "2.03094 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "210.049 28.0189 101";rotation = "0 0 -1 101.941";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Generator Room";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.232 16.1918 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.32 15.6996 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.403 166.955 106.39";rotation = "-0.608605 0.509113 0.608608 233.963";scale = "1.05525 0.166666 3.72854";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "143.835 168.758 104.29";rotation = "0.645561 -0.540024 0.540023 114.311";scale = "1.88524 3.29999 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "StationInventory";position = "223.662 17.2244 101";rotation = "0 0 1 168.295";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.12 27.5912 104.5";rotation = "0.767012 -0.641633 -8.13328e-07 180";scale = "2.06122 0.33329 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.481 177.66 109.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.375 0.166666 10.4178";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.277 173.225 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "2.25318 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.747 15.2078 104.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "2.66108 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.169 28.456 109.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.125 0.166666 45.164";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.396 32.4443 108.63";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.435 0.166666 45.164";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.437 177.906 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.888 32.5326 105.5";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.25 0.166666 47.1938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "220.016 16.1271 101.4";rotation = "0.989552 0.144174 1.82753e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = "USMC Containment Wall";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "220.016 16.1271 101.4";rotation = "-1.74923e-05 -4.48228e-12 -1 16.5792";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "207.604 23.4999 104.51";rotation = "0.645556 -0.540028 0.540025 114.311";scale = "2.05502 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "208.879 20.6229 100.845";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4533 104.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4534 104.066";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25825 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4533 101.518";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25875 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "219.679 14.2238 99.5";rotation = "0 0 -1 100.173";scale = "9.99998 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "215.156 15.9803 101.4";rotation = "0.872065 -0.48939 -6.20346e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = "Vehicle Pad";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "215.156 15.9803 101.4";rotation = "-4.84892e-06 5.32766e-13 1 58.601";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "218.477 14.506 104.51";rotation = "-0.0628162 0.705711 -0.70571 187.188";scale = "2.07631 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "SolarPanel";position = "209.276 18.4096 102.397";rotation = "0.509119 0.608606 0.608602 233.963";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = " Teleport";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.364 15.4535 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.72 -3.24777 104.047";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.24 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.72 -3.24777 101.498";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.249001 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.7 159.273 109.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.375 0.166666 41.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "209.663 16.2514 100.68";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.978 17.2402 101";rotation = "0 0 1 79.8273";scale = "2.17945 0.333249 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.876 162.893 105";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "133.646 170.275 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.49953 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.385 13.3483 104.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "1.57501 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.31 16.9159 104.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.59943 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.218 24.2221 104.75";rotation = "-0.645555 0.540025 0.540029 114.311";scale = "3.72898 0.166666 37.9994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.022 168.623 109.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.375 0.166666 41.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.645 31.6963 109.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 13.1622 78";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "134.195 165.802 99.5";rotation = "0 0 -1 100.173";scale = "2.5 6.66647 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.198 172.243 105";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "206.098 16.9423 104.51";rotation = "-0.062819 0.705712 -0.705708 187.188";scale = "2.21957 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.836 12.4577 101";rotation = "0 0 -1 100.173";scale = "0.249977 0.333249 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.923 28.4118 106";rotation = "0 0 1 169.827";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "187.117 28.6905 105.99";rotation = "-0.992171 -0.0883128 -0.0883082 90.45";scale = "22.602 1.78 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.708 6.55088 104.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 6.66663 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "187.201 28.2179 105.99";rotation = "-0.645553 0.540025 0.540031 114.311";scale = "21.5504 1.814 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "187.102 28.6879 102.025";rotation = "-0.99217 -0.0883134 -0.0883088 90.45";scale = "19.0207 1.534 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.908 28.4092 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "187.186 28.2153 102.026";rotation = "-0.645553 0.540025 0.540031 114.311";scale = "5.45084 1.5 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.194 11.9532 104.75";rotation = "-0.0628161 0.705712 0.705709 172.812";scale = "2.57118 0.166666 8.16828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.762 -3.49419 106";rotation = "0 0 1 169.827";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.421 11.591 104.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "1.50719 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.912 22.8177 104.008";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.246 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.8 8.50219 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "1.78166 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "208.018 9.84562 101";rotation = "0 0 1 40.8422";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "200.986 13.4524 105";rotation = "0 0 -1 100.14";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.912 22.8177 101.518";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.259 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.764 -3.49381 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "197.025 15.324 105.268";rotation = "0.99217 0.0883139 -0.0883131 90.4505";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.378 11.0891 107.005";rotation = "0.540026 0.645558 0.540025 114.311";scale = "1.00225 0.166666 8.1681";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.956 22.5716 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.859 15.3991 107";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "1 0.166666 11.1109";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.829 154.395 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.878 15.0437 104.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "3.60037 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "201.236 10.4169 104.51";rotation = "0.99217 0.0883117 -0.0883136 90.4505";scale = "2.30593 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.785 154.641 109.5";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25 0.166666 9.00152";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "187.762 22.2929 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "2.51225 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.829 154.395 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "211.191 4.96234 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "1.92095 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.922 14.618 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 1.68484 8.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.344 12.3694 104.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.333205 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.187 157.975 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.6936 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.394 159.651 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.967 28.1657 109.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 43.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.484 19.6263 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.308 9.46167 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "199.144 11.0369 104.99";rotation = "-0.088656 0.996062 -5.35938e-07 180.001";scale = "4.57562 4.10405 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.967 28.1657 108.647";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.4265 0.166666 43.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "188.29 19.3477 103.504";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "5.51302 1.506 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.126 14.8342 101.25";rotation = "-0.0628161 0.705712 -0.705709 187.189";scale = "0.125 0.166666 9.16732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.429 173.343 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.093 164.069 106.564";rotation = "-0.540026 -0.645558 0.540025 114.311";scale = "0.96775 0.166666 5.60806";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.771 13.7123 105";rotation = "0 0 1 79.8268";scale = "0.250003 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.633 14.7458 101.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.141 14.6574 102.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.951 28.1629 105.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 44.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.65 14.569 102.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.391 14.4176 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "123.855 164.037 104.639";rotation = "0.645561 -0.540024 0.540023 114.311";scale = "2.82403 3.649 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.981 21.0256 100.75";rotation = "0.571012 0.682589 -0.45609 138.232";scale = "0.885297 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "193.443 14.1831 104.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "3.02017 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.157 14.4806 103.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16658";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "194.093 13.2724 104.99";rotation = "-0.645553 0.540025 0.540032 114.311";scale = "2.09238 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.665 14.3923 103.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16638";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.816 -6.8936 104.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.174 14.3039 104.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16616";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.518 -3.53798 104.025";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.241001 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.429 173.343 109.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 9.00156";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.261 168.706 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "2.35553 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.518 -3.53798 101.478";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.238751 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.679 9.88718 108.75";rotation = "0.99217 0.088312 -0.0883182 90.45";scale = "0.750045 0.166667 8.16688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.756 9.28794 107.002";rotation = "0.705711 0.0628183 0.705709 172.812";scale = "1 0.166666 18.1107";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.192 13.8436 108.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.314 10.6884 105";rotation = "0 0 -1 100.174";scale = "0.249978 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.385 173.589 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.528 19.3802 103.997";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.25125 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.945 9.71135 104.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "2.6715 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";nametoset = " Office complex Roof ->";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.88 13.8924 104.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 1.38645 8.1673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.385 173.589 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.528 19.3802 101.504";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.252 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.645 -1.78393 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "2.49306 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.957 9.57819 107";rotation = "-0.0628183 0.705711 0.705709 172.812";scale = "0.125 1.33333 8.16686";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "121.238 168.653 101";rotation = "0 0 1 80.9142";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.905 11.7179 103.505";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 1.52799 2.99";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.929 -8.4137 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 6.6668 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.516 -3.53835 109.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 77.9982";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.352 9.2156 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.13 -10.4261 108.666";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.4635 0.166666 77.9982";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.44 8.72346 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "192.762 7.10813 101";rotation = "0 0 -1 52.0143";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.01 -3.44963 105.5";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.25 0.166666 79.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.798 6.7249 106";rotation = "0 0 1 79.8268";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "201.759 0.8487 99.5";rotation = "0 0 -1 100.173";scale = "15 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 109.5";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.57 -6.93775 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "210.741 -5.32923 101";rotation = "0 0 1 125.843";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "191.076 6.53106 104.99";rotation = "-0.645553 0.540025 0.540032 114.311";scale = "3.50041 4.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.078 -7.02606 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 106.361";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.069 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.166 -7.5181 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.457 3.05322 109.75";rotation = "0.99217 0.08831 -0.0883152 90.4505";scale = "0.125 0.166666 6.96082";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.106 6.07084 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 6.99804";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.106 6.0709 108.761";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.3695 0.166666 6.99804";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 101.613";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.30625 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.552 6.68902 105.5";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.25 0.166666 7.00208";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.586 171.577 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.50017 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.245 2.64756 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 1.33296 6.99994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.501 2.80715 109.5";rotation = "0.996062 0.0886589 1.12383e-07 180";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.86 6.02668 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.583 2.3508 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "191.861 2.15696 105.99";rotation = "-0.645553 0.540025 0.540031 114.311";scale = "12.5456 1.757 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.539 6.58189 104.75";rotation = "-0.0628125 0.705712 -0.705709 187.189";scale = "0.99997 0.166666 9.0001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.318 -7.88005 104.5";rotation = "0.996062 0.0886589 1.12383e-07 180";scale = "2.29331 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.811 2.14501 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 7.99788";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "114.51 162.27 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.906 4.38694 104.5";rotation = "0.767012 -0.641633 -8.13328e-07 180";scale = "0.75 0.999999 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.904 5.78063 108.754";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.37325 0.166666 6.99994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "191.223 3.00099 109.51";rotation = "-0.062816 0.705711 -0.70571 187.189";scale = "3.51901 4.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.139 173.545 109.5";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.25 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.437 170.189 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.611 1.84361 105.5";rotation = "0.540029 0.645554 0.540027 114.311";scale = "0.25 0.166666 8.99976";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.437 170.189 106.337";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.0815 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "193.798 -0.40379 101.4";rotation = "0.764272 -0.644894 -8.17462e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.567 2.08968 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.437 170.189 101.647";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.32375 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.484 8.47739 103";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.13 -10.4258 104.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.84 -10.2239 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 25.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.628 2.10479 108.697";rotation = "-0.540028 -0.645552 0.54003 114.311";scale = "0.48025 0.166667 25.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "202.086 -9.24182 104.51";rotation = "0.99217 0.088315 -0.0883154 90.4506";scale = "1.79694 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.928 -10.7161 105.5";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25 0.166666 27.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.332 2.15257 104.75";rotation = "-0.0819566 0.920772 -0.381394 183.889";scale = "0.99997 0.166666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.566 -26.4655 104.481";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2595 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.704 1.32162 105.28";rotation = "0.731006 -0.611512 0.302793 208.427";scale = "0.250062 0.166666 14.4158";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.566 -26.4655 101.513";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25675 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.635 150.951 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.092 -9.71486 104.5";rotation = "0.996062 0.0886589 1.12383e-07 180";scale = "2.01289 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "195.5 -8.14822 101";rotation = "0 0 1 211.762";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.635 150.951 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.235 169.899 109.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.591 151.197 106.352";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.07425 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.884 -10.47 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "194.078 -10.1913 105.99";rotation = "-0.99217 -0.0883134 -0.0883088 90.45";scale = "39.0191 1.759 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.591 151.197 101.628";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.314 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.884 -10.47 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.972 -10.9623 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.191 170.145 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.896 -20.2687 104.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.49997 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.191 170.145 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.61 -26.7116 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.016 -11.2084 104.492";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.254 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.016 -11.2084 101.514";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.257 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.662 -30.1115 104.49";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25525 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.662 -30.1115 101.508";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.254 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.416 -30.1557 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "46.0385 261.471 101";rotation = "0 0 -1 92.6639";scale = "5 159.997 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "314.821 -136.462 101";rotation = "0 0 -1 92.6639";scale = "109.999 6.66667 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "36.3775 0.371377 105.363";rotation = "-0.0236259 -0.030789 -0.999247 105.04";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "35.0427 1.39323 100.622";rotation = "0.303288 0.952899 1.20789e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "35.0427 1.39323 100.622";rotation = "1.73369e-06 -4.19433e-12 1 215.311";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-168.84 -68.8705 101";rotation = "0 0 -1 92.6639";scale = "154.998 6.66667 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "85.7795 -377.366 101";rotation = "0 0 -1 92.6639";scale = "5 166.661 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Buildings/9.cs b/Univ/Data/2703588/Buildings/9.cs new file mode 100644 index 0000000..83bd22b --- /dev/null +++ b/Univ/Data/2703588/Buildings/9.cs @@ -0,0 +1,565 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Soulice" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "35.0427 1.39323 100.622";rotation = "0.303288 0.952899 1.20789e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "35.0427 1.39323 100.622";rotation = "1.73369e-06 -4.19433e-12 1 215.311";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "36.3775 0.371377 105.363";rotation = "-0.0236259 -0.030789 -0.999247 105.04";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.635 150.951 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.635 150.951 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.591 151.197 101.628";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.314 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.591 151.197 106.352";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.07425 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.235 169.899 109.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 101.613";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.30625 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 106.361";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.069 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.881 150.995 109.5";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.997 119.35 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.997 119.35 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.191 170.145 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.191 170.145 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "114.51 162.27 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.586 171.577 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.50017 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.829 154.395 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.829 154.395 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.785 154.641 109.5";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25 0.166666 9.00152";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.981 21.0256 100.75";rotation = "0.571012 0.682589 -0.45609 138.232";scale = "0.885297 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 101.494";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.247249 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 106.065";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.2175 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 109.511";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2555 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.187 157.975 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.6936 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.953 119.596 114.332";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.084 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.908 28.4092 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.597 138.298 116.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.923 28.4118 106";rotation = "0 0 1 169.827";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "187.102 28.6879 102.025";rotation = "-0.992171 -0.0883135 -0.0883088 90.4499";scale = "19.0207 1.534 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "187.186 28.2153 102.026";rotation = "-0.645553 0.540025 0.540031 114.311";scale = "5.45084 1.5 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "187.117 28.6905 105.99";rotation = "-0.992171 -0.0883128 -0.0883082 90.45";scale = "22.602 1.78 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "187.201 28.2179 105.99";rotation = "-0.645553 0.540025 0.540031 114.311";scale = "21.5504 1.814 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.912 22.8177 101.518";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.259 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.912 22.8177 104.008";rotation = "-0.608602 0.509119 0.608606 233.963";scale = "0.246 0.166666 10.8617";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.86 6.02668 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "187.762 22.2929 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "2.51225 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "187.762 22.2929 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "2.51225 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.956 22.5716 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.611 1.84361 105.5";rotation = "0.540029 0.645554 0.540027 114.311";scale = "0.25 0.166666 8.99976";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.904 5.78063 108.754";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.37325 0.166666 6.99994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "188.29 19.3477 103.504";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "5.51302 1.506 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.484 19.6263 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.308 9.46167 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.567 2.08968 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "187.761 2.3683 104.99";rotation = "-0.99217 -0.0883134 -0.0883088 90.45";scale = "3.51901 4.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.951 28.1629 105.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 44.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.967 28.1657 108.647";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.4265 0.166666 43.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.967 28.1657 109.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 43.0608";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.552 6.68902 105.5";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.25 0.166666 7.00208";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.704 1.32162 105.28";rotation = "0.731006 -0.611512 0.302793 208.427";scale = "0.250062 0.166666 14.4158";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.528 19.3802 101.504";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.252 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.528 19.3802 103.997";rotation = "-0.540031 -0.645553 0.540026 114.311";scale = "0.25125 0.166666 20.154";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.106 6.0709 108.761";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.3695 0.166666 6.99804";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.106 6.07084 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 6.99804";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.906 4.38694 104.5";rotation = "0.767012 -0.641633 -8.13328e-07 180";scale = "0.75 0.999999 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.437 170.189 101.647";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.32375 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.093 164.069 106.564";rotation = "-0.540026 -0.645558 0.540025 114.311";scale = "0.96775 0.166666 5.60806";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.539 6.58189 104.75";rotation = "-0.0628125 0.705712 -0.705709 187.189";scale = "0.99997 0.166666 9.0001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.437 170.189 106.337";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.0815 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.437 170.189 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.139 173.545 109.5";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.25 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.245 2.64756 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 1.33296 6.99994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.905 11.7179 103.505";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 1.52799 2.99";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "123.855 164.037 104.639";rotation = "0.645561 -0.540024 0.540023 114.311";scale = "2.82403 3.649 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.192 13.8436 108.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.429 173.343 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.352 9.2156 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.44 8.72346 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.553 138.544 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.957 9.57819 107";rotation = "-0.0628183 0.705711 0.705709 172.812";scale = "0.125 1.33333 8.16686";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.811 2.14501 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 7.99788";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.394 159.651 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.553 138.544 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.332 2.15257 104.75";rotation = "-0.0819566 0.920772 -0.381394 183.889";scale = "0.99997 0.166666 20";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 101.504";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.252 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 106.076";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.2115 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.798 6.7249 106";rotation = "0 0 1 79.8268";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 109.511";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25575 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "191.076 6.53106 104.99";rotation = "-0.645553 0.540025 0.540032 114.311";scale = "3.50041 4.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.243 119.394 114.315";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.09225 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.391 14.4176 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.792 138.766 101";rotation = "0 0 -1 100.173";scale = "0.125 0.672553 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.945 122.75 116.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.457 3.05322 109.75";rotation = "0.99217 0.08831 -0.0883152 90.4505";scale = "0.125 0.166666 6.96082";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "121.238 168.653 101";rotation = "0 0 1 80.9142";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "191.223 3.00099 109.51";rotation = "-0.062816 0.705711 -0.70571 187.189";scale = "3.51901 4.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.88 13.8924 104.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 1.38645 8.1673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.501 2.80715 109.5";rotation = "0.996062 0.0886589 1.12383e-07 180";scale = "0.125 0.166666 9";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.583 2.3508 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.679 9.88718 108.75";rotation = "0.99217 0.088312 -0.0883182 90.45";scale = "0.750045 0.166667 8.16688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "191.861 2.15696 105.99";rotation = "-0.645553 0.540025 0.540031 114.311";scale = "12.5456 1.757 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "191.953 1.70841 101.117";rotation = "0.645552 -0.540028 0.540031 114.311";scale = "0.2 0.2 0.2";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "192.762 7.10813 101";rotation = "0 0 -1 52.0143";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.484 8.47739 103";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.261 168.706 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "2.35553 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "193.443 14.1831 104.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "3.02017 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "151.733 139.178 100.99";rotation = "-0.99217 -0.0883134 -0.0883088 90.45";scale = "2.45016 3.54 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.785 138.944 106.51";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.99475 0.166666 4.86032";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.771 13.7123 105";rotation = "0 0 1 79.8268";scale = "0.250003 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.904 141.964 109.75";rotation = "0.540026 0.645561 0.540021 114.313";scale = "0.375 0.166666 4.92972";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "194.093 13.2724 104.99";rotation = "-0.645553 0.540025 0.540032 114.311";scale = "2.09238 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "194.093 13.2724 104.99";rotation = "-0.645553 0.540025 0.540032 114.311";scale = "2.09238 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.826 139.385 100.75";rotation = "-0.0738078 0.829203 0.554053 174.353";scale = "0.66369 0.166666 5";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.928 -10.7161 105.5";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25 0.166666 27.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.628 2.10479 108.697";rotation = "-0.540028 -0.645552 0.54003 114.311";scale = "0.48025 0.166667 25.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.799 138.588 109.492";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25 0.166666 15.2699";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.84 -10.2239 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 25.0512";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.314 10.6884 105";rotation = "0 0 -1 100.174";scale = "0.249978 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.174 14.3039 104.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16616";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "154.229 139.141 100.99";rotation = "-0.0628166 0.705709 0.705712 172.812";scale = "2.45016 3.541 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.799 138.588 114.349";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "1.075 0.166666 15.2699";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "193.798 -0.40379 101.4";rotation = "0.764272 -0.644894 -8.17462e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "160.872 130.669 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.423 139.419 101";rotation = "0 0 1 79.8268";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.665 14.3923 103.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16638";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.223 132.347 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.66677 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.429 173.343 109.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 9.00156";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.106 142.254 109.707";rotation = "0.705711 0.0628191 0.705709 172.811";scale = "0.3965 0.166666 6.99802";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.493 143.453 108.5";rotation = "-0.0886647 0.996062 1.2626e-06 180";scale = "0.75 0.666666 17";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.615 142.162 112.5";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "1 0.166666 8.9984";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.626 142.273 108.75";rotation = "-0.0628162 0.705712 0.705709 172.811";scale = "0.999705 0.166666 4.92778";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.876 162.893 105";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.756 9.28794 107.002";rotation = "0.705711 0.0628183 0.705709 172.812";scale = "1 0.166666 18.1107";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.157 14.4806 103.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16658";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.7 159.273 109.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.375 0.166666 41.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.44 140.064 116.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.50017 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.65 14.569 102.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.945 9.71135 104.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "2.6715 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";nametoset = " Office complex Roof ->";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.859 15.3991 107";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "1 0.166666 11.1109";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.752 143.161 109.75";rotation = "0.608607 -0.509114 0.608606 233.962";scale = "0.375 0.166666 7.10554";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.884 -10.47 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.922 14.618 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 1.68484 8.16692";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.884 -10.47 106";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4533 101.518";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25875 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.972 -10.9623 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4534 104.066";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.25825 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.154 28.4533 104.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.141 14.6574 102.25";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "194.078 -10.1913 105.99";rotation = "-0.992171 -0.0883135 -0.0883088 90.4499";scale = "39.0191 1.759 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.385 173.589 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "156.276 139.75 108.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.816297 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.878 15.0437 104.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "3.60037 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.385 173.589 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "147.745 153.988 100.41";rotation = "-0.364467 0.304876 -0.879894 107.29";scale = "0.375432 0.166666 25.5896";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.633 14.7458 101.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 0.166666 9.16712";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "197.025 15.324 105.268";rotation = "0.99217 0.0883139 -0.0883131 90.4505";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.126 14.8342 101.25";rotation = "-0.0628161 0.705712 -0.705709 187.189";scale = "0.125 0.166666 9.16732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "195.5 -8.14822 101";rotation = "0 0 1 211.762";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.218 24.2221 104.75";rotation = "-0.645555 0.540025 0.540029 114.311";scale = "3.72898 0.166666 37.9994";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "153.615 145.339 103.681";rotation = "0.645557 -0.540027 0.540025 114.311";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "134.195 165.802 99.5";rotation = "0 0 -1 100.173";scale = "2.5 6.66647 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.56 139.98 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.888 32.5326 105.5";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.25 0.166666 47.1938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.19 144.697 108.75";rotation = "-0.0819597 0.920772 0.381394 176.111";scale = "0.999705 0.166666 28.9614";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.396 32.4443 108.63";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.435 0.166666 45.164";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.169 28.456 109.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.125 0.166666 45.164";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "133.646 170.275 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.49953 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "165.176 131.969 108.5";rotation = "0.869758 -0.493479 -6.25529e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.378 11.0891 107.005";rotation = "0.540026 0.645558 0.540025 114.311";scale = "1.00225 0.166666 8.1681";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "199.144 11.0369 104.99";rotation = "-0.088656 0.996062 -5.35938e-07 180.001";scale = "4.57562 4.10405 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "159.999 140.175 108.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "2.19517 2.99 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "160.689 140.786 105.45";rotation = "-0.0628167 0.705712 -0.705709 187.189";scale = "2.90328 4.46 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.883 140.038 106.97";rotation = "0.0883119 -0.99217 -0.0883151 90.4505";scale = "0.765 0.166666 5.76462";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.946 140.409 114.235";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "1.1325 0.166666 4.35034";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-168.84 -68.8705 101";rotation = "0 0 -1 92.6639";scale = "154.998 6.66667 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.799 138.588 116.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.016 -11.2084 101.514";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.257 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "169.425 126.885 101";rotation = "0 0 1 78.9645";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.016 -11.2084 104.492";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.254 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.379 139.665 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.344 12.3694 104.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.333205 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.191 122.794 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.092 -9.71486 104.5";rotation = "0.996062 0.0886589 1.12383e-07 180";scale = "2.01289 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.191 122.794 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "200.986 13.4524 105";rotation = "0 0 -1 100.14";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.147 123.04 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 8.93052";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.198 172.243 105";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.881 158.712 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "201.236 10.4169 104.51";rotation = "0.99217 0.0883117 -0.0883136 90.4505";scale = "2.30593 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "201.236 10.4169 104.51";rotation = "0.99217 0.0883117 -0.0883136 90.4505";scale = "2.30593 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.022 168.623 109.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.375 0.166666 41.996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.759 159.839 109.75";rotation = "0.608604 -0.509119 0.608604 233.963";scale = "0.375 0.166666 29.961";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.314 127.681 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.381 127.305 109";rotation = "0 0 1 79.8268";scale = "2.16678 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "201.759 0.8487 99.5";rotation = "0 0 -1 100.173";scale = "15 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.837 158.957 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.375 0.166666 7.5853";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.97 129.6 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.84984 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.143 74.323 102.575";rotation = "-0.0886626 0.996062 -6.81098e-07 180";scale = "0.125 0.166666 2.65784";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.929 -8.4137 104.75";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.125 6.6668 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.007 52.0199 101.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.05 51.7737 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0199 106.009";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.2455 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.635 158.667 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.375 0.166666 10.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.65 70.721 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0199 109.506";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25275 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.05 51.7737 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.006 52.0198 111.787";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.606 70.9671 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.12 162.956 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "2.03094 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "196.871 73.7019 104.444";rotation = "0.645559 -0.540025 0.540025 114.311";scale = "2.5816 4.454 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.194 11.9532 104.75";rotation = "-0.0628161 0.705712 0.705709 172.812";scale = "2.57118 0.166666 8.16828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.109 73.7345 106.467";rotation = "-0.540029 -0.645556 0.540024 114.311";scale = "1.0165 0.166666 5.1226";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "170.035 133.449 105.202";rotation = "0.645561 -0.540024 0.540023 114.311";scale = "2.26324 4.21201 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.685 141.589 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.065 73.9806 108";rotation = "0.64163 0.767014 9.7226e-07 180";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.606 70.9671 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.977 74.4727 101.29";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 3.106";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.416 -30.1557 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.669 131.273 106.846";rotation = "-0.608605 0.509113 0.608608 233.963";scale = "0.827 0.166666 4.48648";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.109 73.7345 108.25";rotation = "-0.608605 0.509113 0.608608 233.963";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.672 136.833 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 18.0964";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "157.288 150.346 99.5";rotation = "0 0 -1 100.173";scale = "4.99985 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.328 90.7731 101.231";rotation = "0.199472 -0.680519 0.705056 188.708";scale = "0.250282 0.166666 33.877";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.32 74.1011 102.902";rotation = "-0.199469 0.680524 0.705053 188.708";scale = "0.250045 0.166666 33.8762";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.224 141.176 109";rotation = "0 0 -1 100.173";scale = "0.125 2.89682 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.611 141.246 108.5";rotation = "0.64163 0.767014 9.7226e-07 180";scale = "0.125 2.63508 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "202.086 -9.24183 104.51";rotation = "0.99217 0.088315 -0.0883154 90.4506";scale = "1.79694 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField8";position = "202.086 -9.24182 104.51";rotation = "0.99217 0.088315 -0.0883154 90.4506";scale = "1.79694 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "170.382 131.518 108.99";rotation = "0.509115 0.608605 0.608607 233.963";scale = "2.34972 3.208 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.717 151.141 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.66613 17.9991";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.205 133.863 114.344";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "1.07775 0.166666 4.65714";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.166 136.908 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "167.414 138.092 101";rotation = "0 0 1 78.9645";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.562 71.2132 108.75";rotation = "-0.0628161 0.705712 0.705709 172.812";scale = "0.125 0.166666 39.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.021 74.2266 100.52";rotation = "-0.608603 0.509116 0.608608 233.963";scale = "0.385 0.166666 33.8762";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.021 74.2266 105.672";rotation = "-0.608603 0.509116 0.608608 233.963";scale = "1.41425 0.166666 33.8762";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.266 159.499 101";rotation = "0 0 -1 100.173";scale = "0.125 2.80371 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.972 135.157 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.851405 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "166.64 139.578 109";rotation = "0 0 1 26.0216";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.239 90.5027 102.576";rotation = "-0.0886626 0.996062 -6.81098e-07 180";scale = "0.125 0.166666 2.66046";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.13 -10.4258 104.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.168 83.4461 110.5";rotation = "0.608607 -0.509115 0.608605 233.962";scale = "0.75 0.166667 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.628 137.079 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.804 85.2559 108.75";rotation = "-0.645552 0.540037 0.540021 114.311";scale = "2.93353 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "206.098 16.9423 104.51";rotation = "-0.062819 0.705712 -0.705708 187.188";scale = "2.21957 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.759 52.26 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66823 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.777 91.1072 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.074 90.6523 101.29";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 3.108";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.102 31.853 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.701 54.2813 101";rotation = "0 0 1 170.678";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.777 91.1072 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.208 71.434 101";rotation = "0 0 1 79.8268";scale = "0.125 1.5961 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.122 137.154 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "200.785 69.2852 101";rotation = "0 0 -1 7.90411";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.421 11.591 104.5";rotation = "0.996062 0.0886565 1.1238e-07 180";scale = "1.50719 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.498 137.803 109";rotation = "0 0 1 79.8268";scale = "2.00122 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.299 76.0825 108.75";rotation = "-0.645552 0.540037 0.540021 114.311";scale = "2.06636 0.166667 8.5768";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.594 31.9414 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.403 166.955 106.39";rotation = "-0.608605 0.509113 0.608608 233.963";scale = "1.05525 0.166666 3.72854";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.792 141.742 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 8.97526";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "143.835 168.758 104.29";rotation = "0.645561 -0.540024 0.540023 114.311";scale = "1.88524 3.29999 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.12 27.5912 104.5";rotation = "0.767012 -0.641633 -8.13328e-07 180";scale = "2.06122 0.33329 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.31 16.9159 104.5";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "0.59943 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.588 79.6897 110.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 8.00186";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.155 82.4658 100.75";rotation = "0.571008 0.682591 -0.456091 138.233";scale = "0.986067 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.513 80.289 108.75";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 1.33331 7.04272";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.818 109.519";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25925 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.818 112.02";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.24 0.166666 15.1623";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.601 79.797 112.25";rotation = "-0.0628162 0.705712 0.705709 172.811";scale = "0.999968 0.166666 9.04218";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.878 83.6483 110.25";rotation = "0.0883166 -0.992169 -0.0883196 90.4505";scale = "0.875 0.166666 7.99782";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "207.604 23.4999 104.51";rotation = "0.645556 -0.540028 0.540025 114.311";scale = "2.05502 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 101.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.262 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "198.602 82.122 108.8";rotation = "0 0 -1 99.646";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 106.282";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.109 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.747 141.988 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 109.524";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26225 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "208.018 9.84562 101";rotation = "0 0 1 40.8422";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.06 52.1646 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.377 110.055 112.007";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2465 0.166666 38.0008";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.06 52.1646 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.729 141.343 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.906 84.2662 108.75";rotation = "-0.0628096 0.705715 0.705706 172.812";scale = "0.947137 0.166667 14.4252";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.747 141.988 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.339 32.2543 101";rotation = "0 0 1 79.8268";scale = "0.125 1.0153 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.231 72.3049 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 103";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.641 141.835 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.375 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.484 91.593 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66688 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.231 72.3049 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 105.524";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.262 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.432 71.833 112";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "2.32658 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.978 17.2402 101";rotation = "0 0 1 79.8273";scale = "2.17945 0.333249 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.46 33.2174 108.495";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2525 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.458 76.619 108.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "0.125 2.75535 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.896 -20.2687 104.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.49997 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.46 76.6 109";rotation = "0 0 1 79.8268";scale = "2.0569 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.303 69.9573 109";rotation = "0 0 -1 10.7996";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "196.432 93.6155 101";rotation = "0 0 1 169.568";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "200.966 80.7197 105.01";rotation = "0.50911 0.60861 -0.608605 126.038";scale = "3.58894 4.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.102 84.1905 105.75";rotation = "0.608608 -0.509113 0.608606 233.962";scale = "0.375033 0.166666 7.13828";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.831 91.2521 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.504 32.9713 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "200.728 80.687 108.249";rotation = "-0.608605 0.509112 0.60861 233.963";scale = "0.125 0.166666 7.13808";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "201.267 79.0909 108.731";rotation = "0.645558 -0.540026 0.540025 114.311";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.504 32.9713 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.187 72.551 112.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.836 12.4577 101";rotation = "0 0 -1 100.173";scale = "0.249977 0.333249 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.642 32.4884 106";rotation = "0 0 1 169.827";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.277 173.225 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "2.25318 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "210.049 28.0189 101";rotation = "0 0 -1 101.941";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Generator Room";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "209.276 18.4096 102.397";rotation = "0.509119 0.608606 0.608602 233.963";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = " Teleport";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "158.145 160.67 100.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "3.76695 4.264 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "208.879 20.6229 100.845";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "7";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.406 160.242 106.872";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.814 0.166666 7.49192";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.318 -7.88005 104.5";rotation = "0.996062 0.0886589 1.12383e-07 180";scale = "2.29331 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.463 87.726 108.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.79133 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.093 160.904 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 7.49192";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.645 31.6963 109.75";rotation = "0.608607 -0.509115 0.608604 233.963";scale = "0.125 13.1622 78";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.333 110.301 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.126 48.5764 108.75";rotation = "-0.645557 0.540027 0.540025 114.311";scale = "2.00002 0.166666 6.23604";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.472 87.6805 109";rotation = "0 0 1 79.8268";scale = "1.81436 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.333 110.301 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.767 92.72 110.75";rotation = "-0.0883104 0.992171 -0.0883097 90.4506";scale = "0.875 0.166666 17.7673";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.787 91.4982 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "209.663 16.2514 100.68";rotation = "0.645554 -0.540029 0.540027 114.311";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = " Main";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.8 8.50219 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "1.78166 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.787 91.4982 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.176 75.6234 101.25";rotation = "0.540025 0.645557 0.540027 114.31";scale = "0.125 1.49992 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.481 177.66 109.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.375 0.166666 10.4178";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204 76.6076 101.75";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.912 77.0996 102.25";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.824 77.5921 102.75";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.737 78.0841 103.25";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.649 78.5761 103.75";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.004 53.201 109";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.561 79.0686 104.25";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.13 52.715 109";rotation = "0 0 1 169.826";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.472 79.5606 104.75";rotation = "-0.0628194 0.705711 -0.705709 187.189";scale = "1.12494 0.166667 1";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.426 79.807 105";rotation = "0.996062 0.0886644 1.1239e-07 180";scale = "1.12545 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "211.191 4.96234 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "1.92095 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "211.191 4.96234 104.51";rotation = "0.645554 -0.54003 0.540026 114.311";scale = "1.92095 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "209.198 53.4797 108.99";rotation = "-0.992171 -0.0883105 -0.0883058 90.45";scale = "3.03844 3.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.174 52.4689 110.75";rotation = "0.608607 -0.509114 0.608606 233.962";scale = "0.875 0.166666 15.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.242 131.293 109.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.375 0.166666 40.007";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.554 127.76 105";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "2 0.166666 41.0042";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.619 33.3512 105";rotation = "0 0 -1 100.173";scale = "0.125 1.26591 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.5 84.9742 105.25";rotation = "-0.992169 -0.088322 -0.0883161 90.4505";scale = "1.12494 0.166666 10.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.63 44.3489 109";rotation = "0 0 1 169.827";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.372 48.6204 109";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "211.732 33.6255 105.232";rotation = "0.99217 0.0883139 -0.0883131 90.4505";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "210.741 -5.32923 101";rotation = "0 0 1 125.843";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "7";nametoset = " SW";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.456 85.22 108.5";rotation = "0.996062 0.0886649 1.12391e-07 180";scale = "1.12596 0.166666 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "193.323 108.805 101";rotation = "0 0 -1 9.23363";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "199.526 92.3924 108.742";rotation = "0.992171 0.0883104 -0.0883097 90.4506";scale = "1 1 0.1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.437 177.906 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.662 -30.1115 101.508";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.254 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.662 -30.1115 104.49";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.25525 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.965 110.775 101";rotation = "0 0 1 79.8268";scale = "0.125 1.61639 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "208.925 63.0925 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "206.17 52.9365 100.99";rotation = "-0.992171 -0.0883135 -0.0883087 90.45";scale = "9.00729 3.533 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.261 52.4548 104.763";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.333447 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.069 54.2893 106.757";rotation = "-0.705707 -0.0628074 0.705714 172.811";scale = "0.871747 0.166667 17.9766";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.001 72.3991 112.25";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.5002 37.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.164 53.7983 107.007";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.9965 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.296 51.8179 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.232 65.0165 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.4999 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "206.302 78.801 101";rotation = "0 0 1 78.8167";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "202.512 72.0914 100.99";rotation = "-0.99217 -0.0883139 -0.0883107 90.45";scale = "9.0195 4.826 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.861 92.2295 110.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.875 0.166666 7.78024";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.521 72.1027 107.153";rotation = "0.509115 0.608605 0.608607 233.963";scale = "0.249904 0.898 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.222 51.139 108.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 1.23192 4.0314";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "202.562 88.1824 101";rotation = "0 0 -1 100.694";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.385 13.3483 104.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "1.57501 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.25 53.2452 112.25";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 6.03688";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.592 49.0738 108.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.0294";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.68 48.5817 107.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02934";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.768 48.0894 107.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.857 47.5972 106.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02938";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.944 47.105 106.25";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "212.457 43.4069 99.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.032 46.6128 105.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 4.02736";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.12 46.1206 105.25";rotation = "-0.645558 0.540026 0.540025 114.311";scale = "0.125 0.166666 4.02732";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.93 43.9557 104.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "207.044 72.4167 112.01";rotation = "0.99217 0.0883155 -0.0883159 90.4506";scale = "2.31814 3.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.049 49.3548 112.25";rotation = "-0.0883145 0.99217 -0.0883148 90.4506";scale = "0.125 2.83326 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.842 44.9254 110.75";rotation = "-0.088313 0.99217 -0.0883122 90.4505";scale = "0.875 0.166666 6.02672";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.645 -1.78393 104.5";rotation = "0.641634 0.767011 9.72256e-07 180";scale = "2.49306 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.554 74.3671 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.637 40.0186 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 3.83327 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "205.184 82.7405 99.5";rotation = "0 0 -1 100.173";scale = "4.99998 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.657 83.2893 108.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49993 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "209.698 33.25 100.99";rotation = "-0.992171 -0.0883135 -0.0883087 90.45";scale = "9.01948 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.657 83.2893 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 6.49997 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";switchRadius = "1000";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.846 49.0644 109";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "1.99997 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 108.995";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.2525 0.166666 17.9542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.461 161.508 101";rotation = "0 0 -1 100.173";scale = "0.125 2.28115 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 109.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.166666 17.9542";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.832 179.338 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 6.50017 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "153.756 170.031 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.078 -7.02606 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.728 111.09 109";rotation = "0 0 -1 10.1725";scale = "2.10759 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "215.706 33.8406 104.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "2.2206 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.166 -7.5181 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "215.156 15.9803 101.4";rotation = "0.872065 -0.48939 -6.20346e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "3";nametoset = "Vehicle Pad";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "215.156 15.9803 101.4";rotation = "-4.84892e-06 5.32766e-13 1 58.601";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.467 53.8224 109";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.588 53.336 109";rotation = "0 0 -1 10.1732";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.13 -10.4261 108.666";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.4635 0.166666 77.9982";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "202.715 92.9545 108.99";rotation = "-0.992171 -0.0883064 -0.0883129 90.45";scale = "1.90362 3.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.632 53.0899 110.75";rotation = "0.608607 -0.509116 0.608604 233.963";scale = "0.875 0.166666 15.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.516 -3.53835 109.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.125 0.166666 77.9982";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.57 -6.93775 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.01 -3.44963 105.5";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.25 0.166666 79.002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.088 44.9696 109";rotation = "0 0 -1 10.1729";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "198.893 92.2691 100.99";rotation = "-0.992171 -0.0883135 -0.0883087 90.45";scale = "9.01947 4.505 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.99 91.7808 106.992";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.75351 0.333205 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.033 91.5424 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 17.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.321 162.2 109.75";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.375 0.166666 10.0011";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.669 92.8073 112.25";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 0.333264 3.76724";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.092 49.1086 108.75";rotation = "0.645557 -0.540027 0.540025 114.311";scale = "1.99997 0.166666 5.73618";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3413 104.75";rotation = "-0.0883149 0.99217 -0.0883112 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.743 33.3289 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 6.6668 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "201.652 102.426 99.5";rotation = "0 0 -1 100.173";scale = "5 6.66666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.131 34.3401 105";rotation = "0 0 -1 100.173";scale = "0.125 1.0004 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "218.477 14.506 104.51";rotation = "-0.0628162 0.705711 -0.70571 187.188";scale = "2.07631 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.345 100.502 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.50007 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.41 53.8425 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.075 162.156 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.41 53.8425 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.062 111.405 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 39.9968";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "185.479 135.084 99.5";rotation = "0 0 -1 100.173";scale = "2.5 9.99983 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.581 73.9828 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.576 93.1193 112.25";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 6.50017 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.063 111.405 109.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.375 0.166666 41";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.566 -26.4655 101.513";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25675 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 103";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.566 -26.4655 104.481";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2595 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.581 73.9828 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 105.498";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.249001 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.163 132.77 108.75";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.125 3.16613 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8952 108.088";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.25225 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.81 34.8953 108.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.716 92.5622 110.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.875 0.166666 6.44958";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.181 92.93 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.997 55.1736 109.485";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.24275 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.997 55.1736 111.999";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.2505 0.166666 14.8027";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.854 34.6492 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "216.405 56.561 101";rotation = "0 0 1 171.826";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.537 74.229 110.75";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.875 0.166666 37.9996";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.854 34.6492 105";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.97 34.1622 106";rotation = "0 0 -1 10.1725";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.914 73.714 112";rotation = "-0.0886597 0.996062 1.2626e-06 180";scale = "1.84908 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "204.262 112.559 100.99";rotation = "-0.0628166 0.705709 0.705712 172.812";scale = "9.02056 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "219.679 14.2238 99.5";rotation = "0 0 -1 100.173";scale = "9.99998 6.66667 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.368 137.198 104.75";rotation = "0.0883095 -0.99217 -0.0883151 90.4505";scale = "1.875 0.166667 57.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.579 110.345 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "220.016 16.1271 101.4";rotation = "0.989552 0.144174 1.82753e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = "USMC Containment Wall";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "220.016 16.1271 101.4";rotation = "-1.74923e-05 -4.48228e-12 -1 16.5792";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.533 54.7315 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66925 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.404 142.408 109.75";rotation = "-0.0883134 0.99217 -0.0883127 90.4505";scale = "0.375 0.166666 59.999";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.281 113.701 112.25";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "198.825 112.068 108.99";rotation = "-0.992171 -0.0883105 -0.0883058 90.45";scale = "2.40545 3.02 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.137 93.1761 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "214.539 71.6225 101";rotation = "0 0 -1 10.7441";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.988 73.9065 101";rotation = "0 0 1 79.8268";scale = "0.125 1.73766 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.137 93.1761 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.191 177.862 109.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.375 0.166666 39.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.385 181.306 105";rotation = "-0.0883139 0.99217 -0.0883131 90.4505";scale = "2 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.621 93.0529 110.75";rotation = "0.705712 0.0628147 0.705709 172.812";scale = "0.875 0.166666 16.4669";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.61 -26.7116 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.708 6.55088 104.75";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.125 6.66663 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "222.119 34.7271 104.5";rotation = "0.767015 -0.641629 -8.13323e-07 180";scale = "0.125 2.31845 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "197.971 122.086 99.5";rotation = "0 0 -1 100.173";scale = "4.99985 3.33333 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.724 34.118 105.5";rotation = "0.705712 0.0628154 0.705709 172.812";scale = "0.25 0.166666 13.8518";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "209.601 95.9787 101";rotation = "0 0 1 171.287";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.264 94.066 101";rotation = "0 0 -1 100.173";scale = "0.125 1.66686 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.499 121.538 108.75";rotation = "0.705712 0.0628161 0.705709 172.812";scale = "0.125 6.83333 17.9988";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 101.587";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.2935 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.244 55.2178 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3411 108.606";rotation = "-0.088315 0.99217 -0.0883152 90.4506";scale = "0.447 0.166666 12.8541";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 106.174";rotation = "0.540029 0.645556 0.540024 114.311";scale = "1.163 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.542 35.3411 109.75";rotation = "-0.088315 0.99217 -0.0883152 90.4506";scale = "0.125 0.166666 12.8541";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.844 74.1652 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 109.496";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.247999 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "191.21 131.53 100.99";rotation = "0.509117 0.608606 0.608604 233.963";scale = "9.02055 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.244 55.2178 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.675 181.104 105";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "2 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.2 55.4639 112.004";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.248249 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.8 74.4113 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.587 181.596 109.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.375 0.166666 39.001";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.8 74.4113 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "223.662 17.2244 101";rotation = "0 0 1 168.295";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.747 15.2078 104.5";rotation = "-0.0886548 0.996062 1.2626e-06 180";scale = "2.66108 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "224.007 31.2569 101";rotation = "0 0 1 84.7536";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.518 -3.53798 101.478";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.238751 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.518 -3.53798 104.025";rotation = "-0.0883088 0.992171 -0.0883081 90.4506";scale = "0.241001 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.816 -6.8936 104.75";rotation = "0.705712 0.0628125 0.705709 172.812";scale = "0.125 0.166666 38.0014";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "159.612 178.448 109";rotation = "0 0 1 35.1238";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "205.253 112.978 109";rotation = "0 0 -1 10.1725";scale = "2.04619 0.166666 6";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.971 94.5514 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "225.399 27.2837 101";rotation = "0 0 1 90.2403";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "9";switchRadius = "25";nametoset = "Raise Alarm";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "212.971 94.5514 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "200.73 132.243 100.99";rotation = "-0.0628153 0.705709 0.705712 172.812";scale = "9.01938 7.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "StationInventory";position = "206.915 111.244 101";rotation = "0 0 -1 9.23363";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "226.544 21.8775 101";rotation = "0 0 1 170.808";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "9";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "225.594 35.1066 105.99";rotation = "-0.0628166 0.705709 0.705712 172.812";scale = "6.44705 1.732 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.788 35.3853 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.788 35.3853 106";rotation = "0 0 1 79.8268";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "226.066 35.1914 105.99";rotation = "-0.645553 0.540025 0.540032 114.311";scale = "39.0199 1.766 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.745 113.248 101";rotation = "0 0 1 79.8268";scale = "0.125 1.71733 15";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 101.547";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.2735 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 106.317";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "1.0915 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 108.75";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 109.522";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.26125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.571 113.499 111.776";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.125 0.166666 38.0004";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.832 35.1392 103";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "1 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.412 113.084 105";rotation = "0.540029 0.645556 0.540024 114.311";scale = "2 0.166666 58.9974";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.631 181.35 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.412 113.084 109.75";rotation = "0.540026 0.645558 0.540025 114.311";scale = "0.375 0.166666 58.9974";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.232 16.1918 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.744 35.6314 105.5";rotation = "0.608606 -0.509117 0.608604 233.963";scale = "0.25 0.166666 78.9998";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.527 113.745 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.32 15.6996 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.719 -3.2479 108.8";rotation = "0.540029 0.645556 0.540024 114.311";scale = "0.52675 0.166666 78";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.527 113.745 109";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "197.051 139.954 109";rotation = "0 0 1 46.0331";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "197.543 140.043 101";rotation = "0 0 1 33.9485";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.72 -3.24777 101.498";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.249001 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.72 -3.24777 104.047";rotation = "0.540031 0.645553 0.540026 114.311";scale = "0.24 0.166666 38.0002";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.364 15.4535 104.75";rotation = "0.608604 -0.509121 0.608602 233.963";scale = "0.125 0.166666 38";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.158 142.364 101";rotation = "0 0 1 169.827";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.764 -3.49381 101";rotation = "0 0 -1 100.173";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.762 -3.49419 106";rotation = "0 0 1 169.827";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "46.0385 261.471 101";rotation = "0 0 -1 92.6639";scale = "5 159.997 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "297.877 17.9427 141.5";rotation = "0 0 1 87.336";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "298.795 -1.78591 142.06";rotation = "0.568192 0.595245 0.568191 118.474";scale = "0.2795 0.166666 39";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "298.794 -1.78591 144.58";rotation = "0.568192 0.595245 0.568191 118.474";scale = "0.25 0.166666 39";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "297.889 17.693 145.25";rotation = "0.586094 -0.559456 0.586091 238.45";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "298.807 -2.03562 141.5";rotation = "0 0 1 87.336";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.869 82.5955 141.5";rotation = "0 0 -1 2.66385";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.845 83.095 142";rotation = "0 0 -1 2.66385";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "301.965 18.1329 141.5";rotation = "0 0 1 87.336";scale = "0.125 2.56143 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.396 92.8345 142.5";rotation = "0 0 1 177.336";scale = "0.125 6.3332 2";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "303.109 -1.83544 141.5";rotation = "0 0 1 87.336";scale = "0.125 2.70458 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "293.944 102.574 142";rotation = "0 0 1 177.336";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "293.919 103.074 141.5";rotation = "0 0 1 177.336";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "308.305 18.1876 141.49";rotation = "-0.0164397 0.70701 0.707013 178.117";scale = "2.50266 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "10";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "305.055 73.3099 100";rotation = "0 0 -1 93.2409";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2703588";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "298.092 7.94195 141.25";rotation = "0.595245 -0.568196 0.568187 118.474";scale = "5.125 0.166666 39.9992";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "317.558 9.09792 145.25";rotation = "-0.0232397 0.99946 -0.0232397 90.0312";scale = "0.125 6.66667 37.997";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.035 -1.14098 145.25";rotation = "-0.0232397 0.99946 -0.0232397 90.0312";scale = "0.125 0.166666 37.997";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "309.536 -1.77674 141.49";rotation = "-0.0164397 0.70701 0.707013 178.117";scale = "2.37554 3.52 0.48";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "10";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.619 82.5837 141.25";rotation = "0.559458 0.586093 0.586091 238.45";scale = "0.125 0.166666 39.9992";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.595 83.0832 141.75";rotation = "0.559458 0.586093 0.586091 238.45";scale = "0.125 0.166666 40.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "314.124 93.7523 142.25";rotation = "-0.595245 0.568192 0.568191 118.474";scale = "4.74983 0.166666 40.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "305.653 88.033 142";rotation = "0.995652 0.0931542 1.18081e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";switchRadius = "10000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "312.694 18.632 141.5";rotation = "0 0 1 87.336";scale = "0.125 2.94352 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.673 103.492 141.75";rotation = "-0.595245 0.568192 0.568191 118.474";scale = "0.125 0.166666 40.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.648 103.992 141.25";rotation = "0.559458 0.586093 -0.586091 121.55";scale = "0.125 0.166666 40.0012";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "313.775 -1.33922 141.5";rotation = "0 0 1 87.336";scale = "0.125 2.8434 7";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "317.293 14.8073 142.83";rotation = "-0.595244 0.568189 0.568194 118.474";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "10";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "316.194 0.77553 141.5";rotation = "0 0 1 141.53";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "10";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "317.355 18.849 141.5";rotation = "0 0 1 87.336";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.273 -0.87966 143.5";rotation = "0.568192 0.595245 0.568191 118.474";scale = "1 0.166666 39";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.285 -1.12936 141.5";rotation = "0 0 1 87.336";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "9";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "312.73 102.196 142.9";rotation = "0.321271 0.946987 1.20039e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2703588";deployed = "1";powerFreq = "1";nametoset = "USMC Base";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "312.73 102.196 142.9";rotation = "1.76859e-06 2.09174e-12 1 217.48";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "299.488 193.178 101";rotation = "0 0 -1 92.6639";scale = "44.9992 6.66667 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "314.821 -136.462 101";rotation = "0 0 -1 92.6639";scale = "109.999 6.66667 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "85.7795 -377.366 101";rotation = "0 0 -1 92.6639";scale = "5 166.661 80";team = "1";ownerGUID = "2703588";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2703588/Ranks/CnC4/Saved.Rank b/Univ/Data/2703588/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..020714c --- /dev/null +++ b/Univ/Data/2703588/Ranks/CnC4/Saved.Rank @@ -0,0 +1,28 @@ +//Ranks File For GUID 2703588 +//Created On 2010-04-17, C&C 4 +$Rank::Name[2703588] = "Soulice"; +$Rank::Rank[2703588, 1] = "Private"; +$Rank::XP[2703588, 1] = 250; +$Rank::Rank[2703588, 2] = "Initiate"; +$Rank::XP[2703588, 2] = 1450; +$CNC::Deaths[2703588] = 38; +$CNC::TotalKills[2703588] = 3; +$CNC::Kills[2703588, 2001729] = 1; +$CNC::KilledByPl[2703588, 2001729] = 2; +$CNC::KilledByPl[2703588, 2763554] = 14; +$CNC::KilledByPl[2703588, 2860955] = 4; +$CNC::TotalCrawlerKills[2703588] = 4; +$CNC::CrawlerKills[2703588, 2001729] = 2; +$CNC::UKills[2703588] = 1; +$CNC::Kills[2703588, 2763554] = 1; +$CNC::KilledByObj[2703588, BunkerTurretDeployedBase] = 1; +$CNC::TotalBuildingKills[2703588] = 4; +$CNC::BuildingKills[2703588, "Bunker"] = 2; +$CNC::Help[2703588, 2] = 1; +$CNC::TotalCrawlerDecoms[2703588] = 7; +$CNC::TotalBuilds[2703588] = 6; +$CNC::BuildingsBuilt[2703588, "PowerPlant"] = 4; +$CNC::BuildingsBuilt[2703588, "Bunker"] = 2; +$CNC::TotalBuildingLosses[2703588] = 3; +$CNC::BuildingLosses[2703588, "PowerPlant"] = 2; +$CNC::BuildingLosses[2703588, "TempleOfNod"] = 1; \ No newline at end of file diff --git a/Univ/Data/2703588/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2703588/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..8c13538 --- /dev/null +++ b/Univ/Data/2703588/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,19 @@ +//Ranks & Settings File For GUID 2703588 / Name: Soulice +//Created On 2011-06-09, Total Warfare Mod 2 3.6 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2703588) { + + new ScriptObject(TWM2Client_2703588) { + + money = "0"; + xp = "0"; + millionxp = "0"; + officer = "0"; + name = "Soulice"; + rank = "Private"; + noMoreEXPb025cf931f2eb0d192dcfe674503e11a4351d1c6 = "0"; + gameTime = "4"; + phrase = "None Set"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2710770/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2710770/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..e94d5ff --- /dev/null +++ b/Univ/Data/2710770/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,66 @@ +//Ranks & Settings File For GUID 2710770 / Name: bigbang +//Created On 2010-11-14, Total Warfare Mod 2 3.5 +//--- OBJECT WRITE BEGIN --- +new ScriptObject(TWM2Client_2710770) { + + hasMedalSerialKiller = "1"; + rankNumber = "45"; + millionxp = "0"; + weaponKillsPulsePhaserImage = "27"; + xpGaind163c4100b1ac6d411ab99ba7d2497825c4d50ee = "94186"; + hasMedalHonorsB = "1"; + challengeCompleteTreb1 = "1"; + weaponKillsMRXXImage = "1"; + xp = "280486"; + weaponKillsM1SniperRifleImage = "75"; + xpGaina551bd7c55ccc51f49b5a3863ebc0a96223288e4 = "15951"; + hasMedalTheSourceOfAllEvil = "1"; + noMoreEXP9d579eb661a60278785d0185f9e7ebcab8a5b1b3 = "0"; + gameTime = "1086"; + challengeCompleteAcceptance = "1"; + weaponKillsMp26CMDOImage = "5"; + bossDefeatCountVardison3 = "2"; + noMoreEXPd860ebbfad59517ab665e030b87d44bd614d83a5 = "0"; + weaponKillsMiniChaingunImage = "5"; + weaponKillsG17SniperRifleImage = "5"; + bossDefeatCountGhostOfFire = "1"; + weaponKillsspikerImage = "20"; + xpGain8ba2a7c650bee8ae643d2a1e8fbeea7bb58ed1ca = "65000"; + officer = "0"; + AirstrikeCalls = "3"; + xpGain0242e146cf59a545568a0c91351c7d8a6002d7d7 = "204"; + bossDefeatCountStormrider = "1"; + hasMedalBurningNightmare = "1"; + phrase = "None Set"; + hasMedalHonorsC = "1"; + weaponKillsStingerImage = "2"; + noMoreEXP0242e146cf59a545568a0c91351c7d8a6002d7d7 = "0"; + name = "bigbang"; + hasMedalDailyMax = "1"; + vehicleKillsCentaurVehicle = "2"; + challengeCompleteGroupBuster = "1"; + noMoreEXPd163c4100b1ac6d411ab99ba7d2497825c4d50ee = "0"; + challengeCompleteVard1 = "1"; + noMoreEXP8ba2a7c650bee8ae643d2a1e8fbeea7bb58ed1ca = "0"; + noMoreEXPeacb11e30772c3debd68f7b1a7ff6cb42edbe6c1 = "0"; + weaponKillsMiniColliderCannonImage = "2"; + xpGain9002e32633e00c82128b7d12c928b85d2b4d3d7c = "75085"; + bossDefeatCountTrebor = "3"; + hasMedalLordraniussFall = "1"; + weaponKillsWp400Image = "19"; + weaponKillsS3RifleImage = "3"; + rank = "Brigadier Grade II"; + hasMedalSkyFront = "1"; + UAVCalls = "2"; + noMoreEXP9d7a38ce97bd188d84124e78647e97cb64a096f6 = "0"; + noMoreEXP9002e32633e00c82128b7d12c928b85d2b4d3d7c = "0"; + noMoreEXP1435853884072077d6623cdf15c3f8c101f9f434 = "0"; + noMoreEXPa551bd7c55ccc51f49b5a3863ebc0a96223288e4 = "0"; + noMoreEXPeeb6c2be70a59f303f0728bbe542e6b394262d7e = "0"; + noMoreEXPe8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "0"; + xpGaineeb6c2be70a59f303f0728bbe542e6b394262d7e = "30060"; + weaponKillsSA2400Image = "2"; + money = "189350"; + noMoreEXP49106f22de9d150fbd5606af00eb16405f8f8184 = "0"; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2714648/Buildings/1.cs b/Univ/Data/2714648/Buildings/1.cs new file mode 100644 index 0000000..cbaa950 --- /dev/null +++ b/Univ/Data/2714648/Buildings/1.cs @@ -0,0 +1,328 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "ChuckConnors" +// Created in mission "slapmydash" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.109 -702.036 135.188";rotation = "0.577219 0.577618 0.577215 119.984";scale = "0.6255 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.109 -702.033 133.688";rotation = "0.577217 0.577618 0.577216 119.977";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.083 -663.035 130.688";rotation = "0.577484 -0.577084 0.577482 239.977";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.109 -702.033 130.188";rotation = "1 0.000345267 -0.000345265 90.0002";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "191.966 -677.521 124.938";rotation = "0 0 1 108.033";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "191.359 -679.832 124.938";rotation = "0 0 1 95.4926";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "190.965 -683.678 124.938";rotation = "0 0 1 103.227";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.85 -677.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75425 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.85 -678.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75425 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.85 -676.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.7545 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.851 -679.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.754 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployableVehiclePadBottom";position = "204.848 -682.522 138.438";rotation = "0 0 1 179.967";scale = "11.25 15.0001 0.3";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployableVehiclePad";position = "204.848 -682.522 138.438";rotation = "0 0 1 179.967";scale = "1.52066 1.10518 0.101598";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.85 -675.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75475 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.852 -680.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75375 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.848 -682.523 136.438";rotation = "0.707351 -0.706863 -4.1397e-06 180";scale = "9.749 13.0003 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.849 -674.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.755 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.852 -681.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75375 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.848 -682.523 135.088";rotation = "7.00992e-07 -3.2924e-06 1 179.96";scale = "9.7505 12.9987 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.849 -673.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.755 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.852 -682.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.7535 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.087 -662.783 133.938";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "184.837 -662.783 136.129";rotation = "-0.577616 0.577217 0.577217 119.977";scale = "1 1 1";team = "1";ownerGUID = "2714648";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.848 -672.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75525 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "204.848 -682.522 128.438";rotation = "0 0 -1 0.0395647";scale = "11.25 15 20";team = "1";ownerGUID = "2714648";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.852 -683.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75325 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.848 -671.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.7555 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.852 -684.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75325 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "185.087 -662.533 135.627";rotation = "-0.000244141 0.707107 0.707107 179.972";scale = "1 1 1";team = "1";ownerGUID = "2714648";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.848 -670.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.7555 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.087 -662.783 130.438";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.853 -685.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.753 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.848 -669.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75575 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.854 -686.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75275 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.848 -682.522 130.438";rotation = "0.707351 -0.706863 -4.1397e-06 180";scale = "9.74875 13.0013 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.087 -662.783 129.938";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.847 -668.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.756 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.854 -687.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75275 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.847 -667.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.756 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.854 -688.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.7525 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.846 -666.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75625 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.087 -666.806 123.303";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.87525 2.49933 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.855 -689.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75225 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.086 -666.806 122.98";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49933 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.086 -666.806 122.633";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.87525 2.49933 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.846 -665.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.7565 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.074 -695.778 139.188";rotation = "0.577085 0.577484 -0.577482 120.023";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.855 -690.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.752 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.339 -670.808 120.227";rotation = "0.707108 0.000247466 0.707105 179.972";scale = "1.606 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.086 -666.806 122.373";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49932 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.824 -695.778 144.938";rotation = "-0.000346378 1 1.26759e-06 180";scale = "0.125 0.166666 11";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.086 -666.806 122.048";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.324 -695.778 139.438";rotation = "0 0 1 179.96";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.846 -664.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.7565 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.086 -666.806 121.773";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.089 -670.804 115.938";rotation = "0 0 1 89.9607";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.855 -691.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.752 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.324 -696.278 140.818";rotation = "0 0 -1 90.0397";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.086 -666.806 121.495";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.337 -662.762 135.188";rotation = "-0.000345267 1 -0.000345265 90.0002";scale = "0.625 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.074 -695.778 145.188";rotation = "-0.000346378 1 -0.000346377 90.0002";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "201.663 -696.015 139.428";rotation = "-0.000245045 0.707105 0.707108 179.972";scale = "4.099 2.02 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "205.209 -682.184 125.188";rotation = "0.577481 -0.577088 0.577482 239.977";scale = "0.125 0.166666 3.00402";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.086 -666.806 121.142";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.46 -681.935 125.188";rotation = "-0.000345267 1 -0.000345265 90.0002";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.337 -662.761 133.688";rotation = "-0.000345267 1 -0.000345265 90.0002";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.653 -695.775 141.688";rotation = "-0.000346378 1 -0.000346377 90.0002";scale = "0.125 0.166666 8.158";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.089 -670.809 115.938";rotation = "0 0 1 89.9601";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "205.977 -682.673 125.438";rotation = "1 0 0 0";scale = "2 2 0.5";team = "1";ownerGUID = "2714648";nametoset = "/moveme 0 0 -3";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.855 -692.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75175 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "204.848 -682.545 123.438";rotation = "0 0 -1 0.0395647";scale = "10 13.3333 3";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";nametoset = "/moveme 0 0 10";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.086 -666.806 120.776";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.46 -682.685 125.188";rotation = "-0.577617 0.577218 0.577216 119.977";scale = "0.25 0.166666 2";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";nametoset = "stand here";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "201.903 -695.525 141.688";rotation = "-0.000244927 0.707107 0.707107 179.972";scale = "1 1 1";team = "1";ownerGUID = "2714648";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.087 -666.806 120.458";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.46 -683.435 125.188";rotation = "-0.577618 0.577216 0.577216 119.977";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.09 -670.555 120.214";rotation = "0.57722 0.577615 0.577216 119.977";scale = "1.6125 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.074 -695.772 139.188";rotation = "0.577085 0.577483 -0.577482 120.023";scale = "0.125 0.166666 18";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.856 -693.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.7515 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.086 -666.806 120.043";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.709 -681.686 125.188";rotation = "-1 -0.000345267 -0.000345263 90.0002";scale = "0.125 0.166666 3.99402";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.337 -662.783 130.688";rotation = "0.707108 0.000243355 0.707105 179.972";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.903 -695.775 139.438";rotation = "0 0 1 179.96";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.337 -662.761 130.188";rotation = "-0.000345267 1 -0.000345265 90.0002";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.089 -670.56 120.235";rotation = "0.577217 0.577619 0.577215 119.977";scale = "1.6015 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.086 -666.806 119.706";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.824 -696.023 143.438";rotation = "-0.000245363 0.707105 0.707108 179.972";scale = "2.125 0.999999 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.086 -666.806 119.319";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.574 -696.278 142.068";rotation = "0.707108 0.000245562 0.707105 179.972";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.856 -694.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.7515 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.574 -695.778 145.188";rotation = "0.707108 0.000244927 0.707105 179.972";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.087 -666.806 118.997";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "188.298 -698.809 130.438";rotation = "0 0 1 205.214";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.088 -669.518 117.489";rotation = "-0.000346154 1 -9.23121e-07 180";scale = "1.875 0.691669 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.087 -666.806 118.648";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "202.143 -695.535 139.428";rotation = "-1 -0.000347394 -0.000342263 89.9997";scale = "3.94101 2.02 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.153 -695.775 141.688";rotation = "0.707108 0.000244927 0.707105 179.972";scale = "0.125 0.166666 7.84202";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.857 -695.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.075 -697.266 141.967";rotation = "-0.577618 0.577216 0.577216 119.977";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.087 -666.806 118.311";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.87525 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.449 -671.056 115.688";rotation = "-1 -0.000347196 -0.00034064 90.0002";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.521 -673.805 115.438";rotation = "6.74791e-06 -5.17441e-06 1 89.9607";scale = "1.375 1.21333 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.703 -676.806 115.688";rotation = "0.577614 -0.577222 0.577215 119.977";scale = "0.125 0.166666 18.282";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.051 -668.112 117.032";rotation = "1 0 0 0";scale = "0.181 0.333333 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.086 -666.805 117.99";rotation = "-0.000347175 1 5.00002e-06 180";scale = "1.8755 2.50034 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.334 -662.808 120.231";rotation = "0.000343999 -1 -0.000346533 90.0002";scale = "1.603 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.163 -667.62 117.032";rotation = "1 0 0 0";scale = "0.125 0.676676 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.663 -667.676 117.032";rotation = "1 0 0 0";scale = "0.125 0.714009 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.051 -667.208 117.032";rotation = "1 0 0 0";scale = "0.181 0.401996 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.83 -704.523 139.188";rotation = "0.577217 0.577618 0.577216 119.977";scale = "0.125 0.166666 16.99";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.857 -696.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.751 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "196.59 -704.533 139.311";rotation = "0.577084 0.577484 0.577482 239.978";scale = "8.515 1.095 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.513 -667.545 117.032";rotation = "1 0 0 0";scale = "0.58775 0.624999 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.83 -704.523 140.646";rotation = "0.577219 0.577617 0.577215 119.977";scale = "0.125 0.166666 16.99";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.339 -670.809 115.688";rotation = "0.577616 -0.57722 0.577215 119.977";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.075 -698.201 141.967";rotation = "-0.577618 0.577216 0.577216 119.977";scale = "0.125 0.166666 16.998";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.084 -662.804 115.938";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.33 -704.523 139.188";rotation = "-0.000246895 0.707108 0.707105 179.972";scale = "0.125 0.166666 16.994";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "197.564 -696.018 139.362";rotation = "-0.577614 0.577215 0.577221 119.977";scale = "8.515 1.02 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.33 -704.523 140.568";rotation = "0.577219 0.577617 0.577215 119.977";scale = "0.125 0.166666 16.99";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.577 -700.276 142.865";rotation = "0.577084 0.577484 0.577482 239.978";scale = "2.12375 1.382 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.33 -704.023 142.068";rotation = "0.577219 0.577618 0.577215 119.978";scale = "0.125 0.166666 14.99";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.09 -671.938 115.938";rotation = "1 0.000344649 -5.64638e-06 180";scale = "1.375 3.07601 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployableVehicleStation";position = "202.024 -699.316 138.765";rotation = "0 0 1 179.21";scale = "1 1 1";team = "1";ownerGUID = "2714648";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "189.941 -668.547 115.938";rotation = "0 0 1 140.081";scale = "1 1 0.5";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.041 -665.767 117.489";rotation = "-0.000346154 1 -9.23121e-07 180";scale = "0.89725 1.808 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.324 -695.77 139.438";rotation = "0 0 -1 90.0397";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.574 -695.77 139.188";rotation = "0.577082 0.577485 0.577484 239.978";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.705 -674.69 115.188";rotation = "-0.000240269 0.707112 -0.707102 180.028";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.857 -697.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.751 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.824 -696.028 145.188";rotation = "0.577484 -0.577085 0.577482 239.977";scale = "0.125 0.166666 16.99";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.084 -662.809 123.438";rotation = "1 0.000345267 4.37657e-10 180";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.324 -696.27 140.717";rotation = "0 0 -1 90.0397";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.824 -695.77 144.938";rotation = "1 0.000347843 4.40923e-10 180";scale = "0.125 0.166666 11";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.33 -704.523 145.188";rotation = "0.577219 0.577617 0.577215 119.977";scale = "0.125 0.166666 16.99";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.324 -696.27 142.217";rotation = "0 0 -1 90.0397";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.076 -699.272 141.967";rotation = "-0.577618 0.577216 0.577216 119.977";scale = "0.125 0.166666 16.998";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.291 -664.832 117.025";rotation = "5.36647e-06 -3.79387e-06 1 89.9607";scale = "0.88701 1.30367 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.087 -667.323 115.688";rotation = "-1 -0.000347196 -0.000340639 90.0002";scale = "0.125 0.166666 19.406";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.084 -663.054 115.688";rotation = "-1 -0.000347163 -0.000343368 90.0002";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.087 -666.807 115.438";rotation = "5.36647e-06 -3.79387e-06 1 89.9607";scale = "1.875 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.574 -695.77 145.188";rotation = "0.707108 0.000245562 0.707105 179.972";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.857 -698.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75075 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.077 -700.172 141.967";rotation = "-0.577618 0.577216 0.577216 119.977";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.337 -667.076 115.688";rotation = "0.577616 -0.57722 0.577215 119.977";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.084 -663.059 115.688";rotation = "-0.577217 -0.577618 0.577216 119.977";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.109 -702.283 133.938";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.707 -678.438 115.438";rotation = "1 0.000343011 4.93796e-07 179.999";scale = "1.875 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "205.455 -674.435 115.188";rotation = "0.577085 0.577487 -0.577478 120.023";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.858 -699.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.7505 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.098 -702.275 130.688";rotation = "-0.000345267 1 -0.000345265 90.0002";scale = "0.125 0.166666 23.478";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.827 -700.273 144.938";rotation = "1 0 0 0";scale = "2.125 2.83166 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.109 -702.283 130.438";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.71 -683.19 115.188";rotation = "-0.000241922 0.707108 -0.707105 180.028";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.077 -701.231 141.967";rotation = "-0.577618 0.577216 0.577216 119.977";scale = "0.125 0.166666 16.998";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "198.612 -701.625 132.1";rotation = "-1 -0.000345267 -0.000345265 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "7";frequency = "22";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "198.612 -701.625 132.1";rotation = "1 0.000345266 -0.000345269 89.9997";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.109 -702.283 129.938";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.414 -702.275 130.438";rotation = "0 0 -1 0.0395647";scale = "0.657997 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.858 -700.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.7505 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.334 -662.809 115.688";rotation = "0.000343999 -1 -0.000346533 90.0002";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.98 -702.273 130.438";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.33 -704.519 139.188";rotation = "0.577217 0.577618 0.577216 119.977";scale = "0.125 0.166666 17.9979";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "203.641 -696.777 124.938";rotation = "0 0 1 23.3732";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.078 -702.452 141.967";rotation = "-0.577618 0.577216 0.577216 119.977";scale = "0.125 0.166666 16.998";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.713 -686.938 115.438";rotation = "1 0.000342936 -1.33974e-06 180";scale = "1.875 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "200.23 -702.273 131.938";rotation = "0.707108 0.000243355 0.707105 179.972";scale = "0.750002 0.166666 1.68002";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";cankill = "0";canmove = 0;closedscale = "0.750002 0.166666 1.68002";hasslided = "0";isdoor = "1";issliding = "0";moving = "open";openedscale = "0.750002 0.166666 0.1";powercontrol = "1";prevscale = "0.750002 0.166666 1.68002";state = "closed";timeout = "0";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "206.564 -696.01 139.381";rotation = "-0.577613 0.577216 0.577222 119.977";scale = "8.52 1.02 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.33 -704.52 140.467";rotation = "0.577217 0.577618 0.577216 119.977";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.859 -701.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75025 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.33 -704.273 140.818";rotation = "0 0 -1 90.0397";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "214.427 -671.246 124.938";rotation = "0 0 1 193.063";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.324 -696.52 141.967";rotation = "0.577484 -0.577084 0.577482 239.977";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.32 -702.272 130.438";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "205.96 -682.185 115.188";rotation = "-0.577482 0.577084 0.577484 239.978";scale = "0.125 0.333333 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.83 -704.52 139.318";rotation = "0.577217 0.577615 0.577218 119.977";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "206.59 -704.53 139.308";rotation = "0.577083 0.577483 0.577484 239.978";scale = "8.52 1.13 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.824 -696.02 140.678";rotation = "-0.577217 -0.577619 0.577215 119.977";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.08 -704.773 139.188";rotation = "-0.000345267 1 -0.000345264 90.0002";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "205.971 -682.814 115.442";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2714648";nametoset = "/moveme 0 0 10";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "201.57 -702.272 131.938";rotation = "0.707108 0.000243355 0.707105 179.972";scale = "0.750002 0.166666 1.13998";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";cankill = "0";canmove = 0;closedscale = "0.750002 0.166666 1.13998";hasslided = "0";isdoor = "1";issliding = "0";moving = "open";openedscale = "0.750002 0.166666 0.1";powercontrol = "1";prevscale = "0.750002 0.166666 1.13998";state = "closed";timeout = "0";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.577 -700.27 142.933";rotation = "0.577083 0.577483 0.577484 239.978";scale = "2.125 1.33667 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.83 -704.773 139.438";rotation = "0 0 1 179.96";scale = "0.125 0.166666 11";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.39 -702.271 130.438";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.324 -696.02 145.188";rotation = "0.577484 -0.577084 0.577482 239.977";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.33 -704.773 139.438";rotation = "0 0 1 179.96";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.46 -682.691 115.192";rotation = "0.000344655 -1 -0.000343853 89.9997";scale = "0.125 0.333347 34";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "202.639 -702.271 131.938";rotation = "0.707108 0.000243355 0.707105 179.972";scale = "0.750002 0.166666 1.306";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";cankill = "0";canmove = 0;closedscale = "0.750002 0.166666 1.306";hasslided = "0";isdoor = "1";issliding = "0";moving = "open";openedscale = "0.750002 0.166666 0.1";powercontrol = "1";prevscale = "0.750002 0.166666 1.306";state = "closed";timeout = "0";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.611 -704.785 138.438";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.859 -702.02 133.688";rotation = "1 0.000344554 -0.000348012 89.9997";scale = "9.75 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.83 -704.52 145.188";rotation = "0.577217 0.577615 0.577218 119.977";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.079 -703.66 141.967";rotation = "-0.577618 0.577216 0.577216 119.977";scale = "0.125 0.166666 16.998";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "200.264 -704.124 140.427";rotation = "-1 -0.000345266 -0.000345265 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";frequency = "27";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "200.264 -704.124 140.427";rotation = "1 0.000345266 -0.000345268 89.9997";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.08 -704.773 145.188";rotation = "-0.000346378 1 -0.000346377 90.0002";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.543 -702.27 130.438";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.359 -702.257 135.188";rotation = "-0.000345267 1 -0.000345265 90.0002";scale = "0.625 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "203.793 -702.27 131.938";rotation = "0.707108 0.000243355 0.707105 179.972";scale = "0.750002 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;closedscale = "0.750002 0.166666 1";hasslided = "0";isdoor = "1";issliding = "0";moving = "close";openedscale = "0.750002 0.166666 0.1";powercontrol = "1";prevscale = "0.750002 0.166666 0.9";state = "closed";timeout = "0";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.359 -702.283 133.688";rotation = "0.707108 0.000243355 0.707105 179.972";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "201.452 -704.52 143.674";rotation = "-0.000243831 0.707109 0.707105 179.972";scale = "1 1 1";team = "1";ownerGUID = "2714648";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "206.792 -696.325 124.938";rotation = "0 0 -1 2.38412";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.58 -704.273 142.068";rotation = "0.707108 0.000245562 0.707105 179.972";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.061 -705.276 129.3";rotation = "0 0 1 89.967";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.965 -690.94 115.188";rotation = "0.577614 -0.577217 0.57722 119.977";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.311 -705.276 135.05";rotation = "0.707108 0.000205099 0.707105 179.977";scale = "0.125 0.166666 8.496";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.08 -704.767 139.188";rotation = "-0.000345267 1 -0.000345265 90.0002";scale = "0.125 0.166666 18";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "206.09 -705.01 139.261";rotation = "-0.000244259 0.707105 0.707108 179.972";scale = "8.52 1.02 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.08 -704.77 140.427";rotation = "-0.000345267 1 -0.000345265 90.0002";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "205.96 -683.185 115.188";rotation = "-0.57722 -0.577615 0.577216 119.977";scale = "0.125 0.333333 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.83 -704.52 142.808";rotation = "-1 -0.000347394 -0.000342263 89.9997";scale = "2.125 1.42033 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.359 -702.283 130.188";rotation = "0.707108 0.000243355 0.707105 179.972";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "199.459 -705.425 130.884";rotation = "-0.000205646 0.707108 0.707105 179.977";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "7";frequency = "22";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "199.459 -705.425 131.884";rotation = "0.000201301 -0.707104 0.707109 179.976";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "207.033 -701.618 131.94";rotation = "-1 -0.000343381 -0.00034338 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "5";frequency = "15";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "207.033 -701.618 131.94";rotation = "1 0.000343381 -0.000343383 89.9997";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.58 -704.773 145.188";rotation = "0.707108 0.000244927 0.707105 179.972";scale = "0.125 0.166666 17";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.58 -702.27 130.438";rotation = "0 0 -1 0.0395647";scale = "1.1785 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.311 -705.276 129.05";rotation = "0.577573 -0.57724 0.577238 119.981";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.955 -674.43 115.188";rotation = "-0.577085 -0.577482 0.577484 239.978";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.207 -678.432 115.438";rotation = "-0.000343248 1 3.68893e-06 180";scale = "1.875 2.49967 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.809 -705.274 129.3";rotation = "0 0 -1 90.0334";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.187 -702.017 131.848";rotation = "0.577217 0.577618 0.577216 119.977";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.861 -704.785 138.688";rotation = "0.707108 0.000243355 0.707105 179.972";scale = "0.125 0.166666 88";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.811 -705.276 129.05";rotation = "0.577573 -0.577242 0.577236 119.981";scale = "0.125 0.166666 7.496";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.33 -704.27 140.717";rotation = "0 0 -1 90.0397";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "197.301 -705.517 128.81";rotation = "5.88261e-06 -4.27491e-06 1 89.967";scale = "0.52 4.26801 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.33 -704.27 142.217";rotation = "0 0 -1 90.0397";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "217.688 -674.881 124.938";rotation = "0 0 -1 100.685";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.061 -705.526 135.05";rotation = "0.577463 -0.577129 0.577459 239.981";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "211.21 -695.945 124.938";rotation = "0 0 1 2.80135";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.33 -704.77 138.938";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 13";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.312 -706.276 129.05";rotation = "0.577572 -0.577242 0.577236 119.98";scale = "0.125 0.166666 8.49798";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.58 -704.77 139.318";rotation = "0.707108 0.000243355 0.707105 179.972";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.213 -686.932 114.956";rotation = "2.46351e-06 2.45715e-06 -1 90.0392";scale = "1.875 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.83 -704.77 139.568";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 10.74";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "219.467 -671.494 124.938";rotation = "0 0 1 186.477";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "196.821 -705.516 129.29";rotation = "0.707108 0.000202549 0.707105 179.977";scale = "5.52 5.02 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "197.303 -710.536 135.29";rotation = "0.706903 0.70731 -2.59642e-06 180";scale = "5.02 4.269 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.178 -700.283 131.871";rotation = "0.577085 0.577483 -0.577482 120.023";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "197.302 -706.516 128.81";rotation = "-8.96136e-06 6.14078e-07 1 89.9658";scale = "0.52 4.268 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.58 -704.77 145.188";rotation = "0.707108 0.000243355 0.707105 179.972";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "205.97 -705.421 131.267";rotation = "-0.000205646 0.707108 0.707105 179.977";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";frequency = "15";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "205.97 -705.421 131.267";rotation = "0.000201301 -0.707104 0.707109 179.976";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.312 -707.276 129.05";rotation = "0.577572 -0.577242 0.577236 119.98";scale = "0.125 0.166666 8.49798";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "211.32 -702.016 131.836";rotation = "-0.000244702 0.707105 0.707109 179.972";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "7";switchRadius = "200";nametoset = "Emergency Power";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.061 -705.026 129.05";rotation = "-1 -0.000288562 -0.000288561 90.0002";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.812 -710.523 135.05";rotation = "0.57724 0.577575 0.577236 119.981";scale = "0.125 0.166666 9.99804";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.308 -702.265 130.438";rotation = "0 0 -1 0.0395647";scale = "1.1855 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "197.303 -707.516 128.81";rotation = "-8.96136e-06 6.14078e-07 1 89.9658";scale = "0.52 4.26699 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.21 -682.18 115.188";rotation = "1 0.000340715 -0.000344508 89.9997";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.965 -690.93 115.206";rotation = "-0.577613 0.577218 0.57722 119.977";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "201.572 -710.533 129.29";rotation = "0.577126 0.577463 0.577461 239.981";scale = "5.01902 5.52 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "202.052 -710.533 129.29";rotation = "-0.000290122 1 -0.000288213 90.0002";scale = "5.52 5.01903 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.429 -702.014 131.871";rotation = "0.577217 0.577618 0.577216 119.977";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.311 -708.276 129.05";rotation = "0.577572 -0.577242 0.577236 119.98";scale = "0.125 0.166666 8.5";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.197 -705.265 135.063";rotation = "-0.000288175 1 -0.000288174 90.0002";scale = "0.125 0.166666 28.276";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.812 -710.523 129.05";rotation = "1 0.00028879 -0.000290067 89.9997";scale = "0.125 0.166666 10.998";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "197.303 -708.516 128.81";rotation = "-8.96136e-06 6.14078e-07 1 89.9658";scale = "0.52 4.26801 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.609 -697.51 115.688";rotation = "-0.00024653 0.707108 0.707105 179.972";scale = "0.125 0.166666 19.058";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.585 -663.01 135.192";rotation = "0.577483 -0.577086 0.577482 239.977";scale = "0.623003 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.311 -709.276 129.05";rotation = "0.577572 -0.577242 0.577236 119.98";scale = "0.125 0.166666 8.5";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.587 -663.011 133.688";rotation = "0.577483 -0.577086 0.577482 239.977";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "214.21 -683.18 115.206";rotation = "-1 -0.000344506 -0.000340714 90.0002";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.064 -710.776 129.3";rotation = "0 0 1 89.967";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.314 -710.776 135.05";rotation = "0.707108 0.000205099 0.707105 179.977";scale = "0.125 0.166666 8.496";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.197 -705.265 129.063";rotation = "-0.577573 0.57724 0.577238 119.981";scale = "0.125 0.166666 28.276";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField6";position = "197.304 -709.516 128.81";rotation = "-8.96136e-06 6.14078e-07 1 89.9658";scale = "0.52 4.268 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.587 -663.011 130.688";rotation = "0.577483 -0.577086 0.577482 239.977";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "197.304 -711.016 129.29";rotation = "0.577219 0.577615 0.577217 119.977";scale = "5.52 4.268 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.587 -663.011 130.188";rotation = "-1 -0.000345267 -0.000345265 90.0002";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.311 -710.276 129.05";rotation = "0.577572 -0.577242 0.577236 119.98";scale = "0.125 0.166666 8.50198";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "215.492 -701.61 132.01";rotation = "-1 -0.000345267 -0.000345265 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";frequency = "27";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "215.492 -701.61 132.01";rotation = "1 0.000345266 -0.000345269 89.9997";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "215.443 -702.26 130.438";rotation = "0 0 -1 0.0395647";scale = "0.882248 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.077 -688.236 115.688";rotation = "0.577087 0.577482 -0.577482 120.023";scale = "0.125 0.166666 20.448";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.812 -710.773 129.3";rotation = "0 0 -1 90.0334";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "216.207 -705.505 134.823";rotation = "5.28947e-06 -2.19234e-06 1 179.967";scale = "14.158 5.02 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "213.606 -693 115.938";rotation = "-0.000344388 1 8.13306e-07 180";scale = "1.375 3.00598 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.607 -694.239 115.938";rotation = "0 0 -1 90.0397";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.587 -662.761 133.938";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "202.052 -710.533 129.29";rotation = "0.706902 0.707312 1.73726e-06 180";scale = "5.02 14.158 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "224.587 -662.511 135.882";rotation = "-0.000244141 0.707107 0.707107 179.972";scale = "1 1 1";team = "1";ownerGUID = "2714648";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "StationInventory";position = "220.654 -698.29 130.438";rotation = "0 0 1 146.486";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.587 -662.761 130.438";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "224.835 -663.26 135.812";rotation = "0.577085 0.577483 0.577483 239.977";scale = "1 1 1";team = "1";ownerGUID = "2714648";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.587 -662.761 129.938";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.606 -694.49 120.484";rotation = "0.577486 -0.577083 0.577482 239.977";scale = "1.5 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.359 -697.757 115.688";rotation = "0.577087 0.577482 -0.577482 120.023";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.314 -710.776 129.05";rotation = "0.577573 -0.57724 0.577238 119.981";scale = "0.125 0.166666 37.772";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.062 -710.773 135.05";rotation = "0.707108 0.000206756 0.707105 179.976";scale = "0.125 0.166666 28.276";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.447 -705.265 129.313";rotation = "0 0 1 89.967";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "216.21 -711.005 129.29";rotation = "-0.000203876 0.707105 0.707108 179.977";scale = "14.158 5.52 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.717 -691.237 115.938";rotation = "0.706863 0.70735 7.67472e-07 180.001";scale = "1.375 1.57467 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.857 -694.238 120.5";rotation = "0.707108 0.000245562 0.707105 179.972";scale = "1.5 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.234 123.401";rotation = "-0.000336042 1 -9.85478e-06 180.001";scale = "1.875 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.235 122.901";rotation = "-0.000336042 1 -9.85478e-06 180.001";scale = "1.875 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.359 -702.261 130.688";rotation = "-0.000345267 1 -0.000345265 90.0002";scale = "0.125 0.166666 14.304";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.234 122.401";rotation = "-0.000336042 1 -9.85478e-06 180.001";scale = "1.875 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.447 -705.515 135.063";rotation = "0.577463 -0.577129 0.577459 239.981";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.235 121.901";rotation = "-0.000336042 1 -9.85478e-06 180.001";scale = "1.87525 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.612 -701.989 115.688";rotation = "-0.000245677 0.707108 0.707105 179.972";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.235 121.401";rotation = "-0.000336042 1 -9.85478e-06 180.001";scale = "1.87525 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "216.687 -705.505 129.303";rotation = "-0.577568 0.577237 0.577245 119.981";scale = "5.02 5.52 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.331 -693.986 115.688";rotation = "1 0.000347315 -0.000341354 90.0002";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.612 -702.239 115.938";rotation = "0 0 1 179.96";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.234 120.901";rotation = "-0.000336042 1 -9.85478e-06 180.001";scale = "1.875 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.235 120.401";rotation = "-0.000336042 1 -9.85478e-06 180.001";scale = "1.875 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.234 119.901";rotation = "-0.000336042 1 -9.85478e-06 180.001";scale = "1.875 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.447 -705.015 129.063";rotation = "-1 -0.000288562 -0.000288561 90.0002";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.235 119.401";rotation = "-0.000336042 1 -9.85478e-06 180.001";scale = "1.87525 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.857 -694.239 115.688";rotation = "0.577083 0.577484 0.577484 239.978";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.235 118.901";rotation = "-0.000336042 1 -9.85478e-06 180.001";scale = "1.87525 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.235 118.401";rotation = "-0.000336042 1 -9.85478e-06 180.001";scale = "1.875 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.236 117.901";rotation = "-0.000347846 1 8.1272e-07 180";scale = "1.875 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.609 -702.261 133.938";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 5";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "218.991 -696.418 115.938";rotation = "0 0 -1 43.8306";scale = "1 1 0.5";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.607 -694.234 115.938";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.609 -702.261 130.438";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.45 -710.765 129.313";rotation = "0 0 1 89.967";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.609 -702.261 129.938";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.362 -702.232 120.469";rotation = "-0.000345267 1 -0.000345265 90.0002";scale = "1.5 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.609 -698.237 115.438";rotation = "5.46215e-06 6.06112e-06 1 89.9607";scale = "1.87524 2.5 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.612 -701.985 120.398";rotation = "0.577219 0.577618 0.577215 119.979";scale = "1.50125 0.166666 15";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.362 -702.234 115.688";rotation = "0.707108 0.000243355 -0.707105 180.028";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "227.111 -704.759 138.438";rotation = "0 0 -1 0.0395647";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.612 -701.984 115.688";rotation = "-0.577481 0.577084 0.577486 239.977";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "224.612 -702.234 123.438";rotation = "1 0.000345267 4.37657e-10 180";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "220.682 -631.15 151.599";rotation = "-0.657974 -0.366249 0.657975 139.77";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "211.652 -625.906 123.938";rotation = "0 0 1 162.746";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "150";switchRadius = "25";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); \ No newline at end of file diff --git a/Univ/Data/2714648/Buildings/5.cs b/Univ/Data/2714648/Buildings/5.cs new file mode 100644 index 0000000..27f3630 --- /dev/null +++ b/Univ/Data/2714648/Buildings/5.cs @@ -0,0 +1,129 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "ChuckConnors" +// Created in mission "slapmydash" +// Construction v0.70 Development Version 1 + +%building = new (ForceFieldBare) () {datablock = "DeployedForceField16";position = "-73.9781 -837.351 1137.95";rotation = "-0.560299 0.585691 -0.585688 238.524";scale = "35.0163 7.52 0.52";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedDecoration11";position = "-60.8329 -855.835 1124.41";rotation = "0 0 1 135.6";scale = "2 2 2";team = "1";ownerGUID = "2714648";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.494 -854.852 1130.19";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.6269 -857.849 1130.19";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.3611 -851.855 1130.19";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField16";position = "-75.5293 -872.332 1137.93";rotation = "0.58569 0.560303 0.585686 121.476";scale = "0.52 0.519998 35.0183";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.7598 -860.846 1130.19";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.2282 -848.858 1130.19";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.8927 -863.843 1130.19";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-74.0953 -845.861 1130.19";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField16";position = "-81.9856 -836.994 1137.93";rotation = "5.65959e-06 -2.47189e-06 1 92.539";scale = "35.5198 8.0351 0.52";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "StationInventory";position = "-80.1942 -855.996 1129.94";rotation = "0 0 -1 85.5609";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-79.4997 -849.074 1129.94";rotation = "0 0 -1 86.7206";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.0256 -866.84 1130.19";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.9624 -842.864 1130.19";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "-81.3546 -853.446 1129.93";rotation = "0 0 1 182.538";scale = "0.52 0.519998 0.52";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "-79.9553 -846.178 1129.93";rotation = "0 0 1 182.538";scale = "0.52 0.519998 0.52";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-80.4338 -861.648 1129.94";rotation = "0 0 -1 90.1538";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "-81.1848 -859.015 1129.93";rotation = "0 0 1 182.538";scale = "0.52 0.519998 0.52";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-81.4739 -855.672 1124.94";rotation = "0 0 1 224.457";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.1585 -869.837 1130.19";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-79.7729 -844.736 1126.94";rotation = "0 0 -1 78.2391";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-82.5814 -850.656 1139.69";rotation = "-0.560299 0.585688 0.585692 121.476";scale = "10.9167 6.49999 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.8295 -839.867 1130.19";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-80.056 -841.771 1129.94";rotation = "0 0 -1 82.106";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField16";position = "-73.9558 -836.851 1137.95";rotation = "0.999755 -0.0221525 -2.80804e-08 180";scale = "0.52 0.519998 7.52";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.2914 -872.834 1130.19";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "-81.697 -866.18 1129.93";rotation = "0 0 1 182.538";scale = "0.52 0.519998 0.52";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField16";position = "-81.464 -836.516 1130.43";rotation = "-0.999509 0.0221474 0.0221512 90.0282";scale = "7.5356 7.52 0.52";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField16";position = "-81.4638 -836.518 1137.93";rotation = "0.707021 -0.0156673 0.707019 181.795";scale = "0.52 0.519998 8.03535";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.9575 -837.109 1130.19";rotation = "0.594398 0.568635 -0.568635 118.545";scale = "0.125 0.166666 16.0309";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField16";position = "-75.0321 -872.855 1130.43";rotation = "0 0 -1 87.462";scale = "0.52 0.519998 8.02";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "StationInventory";position = "-80.4341 -869.326 1129.94";rotation = "0 0 -1 88.9563";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "-80.4499 -837.796 1129.93";rotation = "0 0 1 182.538";scale = "0.52 0.519998 0.52";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField16";position = "-81.444 -836.517 1130.43";rotation = "0 0 1 182.539";scale = "0.52 0.519998 8.02";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-84.1134 -857.991 1115.39";rotation = "0.577352 -0.57735 0.57735 120";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedTripwire";position = "-63.3896 -873.362 1146.44";rotation = "0.0156629 0.707018 0.707022 181.795";scale = "1 1 1";team = "2";ownerGUID = "2714648";powerFreq = "5";switchRadius = "200";beamRange = "160";tripMode = "4";fieldMode = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%tripField = new ForceFieldBare() {datablock = "TripField";scale = "0.01 0.01 0.01";};%building.tripField = %tripField;%tripField.pzone.delete();%building.pzone = "";%tripTrigger = new Trigger() {datablock = "TripTrigger";scale = "99.0002 98.9966 0.5";polyhedron = "0.0000000 1.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.0000000 1.0000000";};%building.tripTrigger = %tripTrigger;%tripTrigger.baseObj = %building;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.powerFreq));%building.deploy();adjustTripwire(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-83.4718 -859.45 1114.75";rotation = "0.5944 0.568632 -0.568635 118.545";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-69.2187 -869.717 1154.44";rotation = "0.758681 -0.651462 -8.25787e-07 180";scale = "1 1 0.5";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "5";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "-42.226 -860.044 1129.94";rotation = "0 0 1 7.57634";scale = "2 2 2";team = "1";ownerGUID = "2714648";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.8086 -872.707 1129.94";rotation = "0 0 1 182.538";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration1";position = "-81.5091 -832.114 1131.35";rotation = "-3.27474e-06 -3.15875e-06 -1 87.4614";scale = "1 1 1";team = "1";ownerGUID = "2714648";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-81.7589 -832.103 1134.15";rotation = "-0.5603 0.585691 -0.585688 238.523";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-81.663 -866.692 1149.94";rotation = "0 0 1 0.209357";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "-83.0366 -872 1147.43";rotation = "0.722595 0.691272 6.74045e-07 180";scale = "98.5197 98.5198 0.48";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.287 -872.229 1149.44";rotation = "0.0221495 0.999755 1.26728e-06 180";scale = "0.125 0.166666 5";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-81.8532 -828.583 1129.94";rotation = "0 0 1 182.538";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-86.8379 -828.134 1132.69";rotation = "-0.99951 0.0221414 0.0221452 90.0284";scale = "2.37489 1.83333 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.5941 -828.173 1135.69";rotation = "0.707021 -0.0156638 0.707019 181.794";scale = "0.125 0.166666 18.9768";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "-38.9288 -837.652 1129.94";rotation = "0 0 1 107.612";scale = "2 2 2";team = "1";ownerGUID = "2714648";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration3";position = "-86.5801 -828.145 1132.34";rotation = "0.0156629 0.707018 0.707022 181.795";scale = "1 1 1";team = "1";ownerGUID = "2714648";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-86.461 -828.031 1132.75";rotation = "0.0156629 0.707018 0.707022 181.795";scale = "0.1 0.166667 0.1";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-81.8421 -828.333 1134.99";rotation = "0.58569 0.560302 0.585686 121.476";scale = "0.125 0.166666 17.9997";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField16";position = "-81.2034 -819.343 1129.93";rotation = "-0.560299 0.585688 0.585692 121.476";scale = "9.01986 4.82005 0.48";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-81.9294 -824.656 1136.34";rotation = "0.594401 0.568633 -0.568633 118.546";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-38.8816 -845.285 1154.44";rotation = "0.38184 0.924228 1.17154e-06 180";scale = "1 1 0.5";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "5";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-88.4435 -824.649 1135.94";rotation = "0 0 -1 56.0796";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "-81.3931 -823.848 1142.34";rotation = "0.594403 0.56863 -0.568634 118.546";scale = "16.6047 28.4 0.872";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-88.775 -825.426 1135.94";rotation = "0 0 1 36.0133";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "-88.6935 -825.831 1130.34";rotation = "0.721732 -0.692173 -8.77392e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.8439 -828.162 1129.94";rotation = "0 0 1 182.538";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-86.6442 -823.638 1135.94";rotation = "0.999755 -0.0221484 -4.89856e-06 180";scale = "2.37212 2.99993 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-86.8882 -823.627 1128.44";rotation = "0 0 1 182.538";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-87.9224 -823.051 1135.94";rotation = "0 0 -1 93.4053";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.2759 -871.979 1147.22";rotation = "0.56863 -0.5944 -0.568637 118.545";scale = "0.125 0.166666 196.999";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-81.7816 -821.321 1136.34";rotation = "0.594401 0.568633 -0.568633 118.546";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField16";position = "-81.2034 -819.343 1129.93";rotation = "-0.560299 0.585688 0.585692 121.476";scale = "9.01986 4.82005 0.48";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "-89.3955 -823.89 1129.93";rotation = "0 0 1 182.538";scale = "0.52 0.519998 0.52";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.7975 -872.457 1149.69";rotation = "0.58569 0.560302 0.585686 121.476";scale = "0.125 0.166666 197.998";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-81.4325 -819.092 1129.94";rotation = "0 0 1 182.538";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration4";position = "-91.3919 -823.611 1132.53";rotation = "0.560298 -0.585689 0.585692 121.476";scale = "1 1 1";team = "1";ownerGUID = "2714648";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-91.2199 -823.868 1132.93";rotation = "0.560298 -0.585689 0.585692 121.476";scale = "0.1 0.166667 0.1";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "-88.437 -821.866 1130.34";rotation = "-0.685013 0.728531 9.23479e-07 180";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "-34.1241 -875.159 1130.52";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "182.634 2.34008 0.872";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration5";position = "-85.3736 -819.19 1132.37";rotation = "-0.860495 0.378969 -0.340487 97.5352";scale = "1 1 1";team = "1";ownerGUID = "2714648";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-85.3348 -819.375 1132.75";rotation = "-0.99951 0.0221426 0.022144 90.0284";scale = "0.1 0.166667 0.1";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.8833 -823.405 1132.69";rotation = "-0.594399 -0.568635 -0.568633 118.545";scale = "2.24995 1.83333 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.4343 -818.921 1135.69";rotation = "-0.568635 0.594399 -0.568633 118.545";scale = "0.125 0.166666 17.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-34.1185 -875.16 1140.28";rotation = "0.0156619 0.707019 0.707022 181.795";scale = "24.75 6.10999 1";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-86.4172 -818.643 1132.69";rotation = "-0.99951 0.0221414 0.0221452 90.0284";scale = "2.37489 1.83333 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.1734 -818.682 1135.69";rotation = "0.707021 -0.0156638 0.707019 181.794";scale = "0.125 0.166666 18.977";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-94.256 -822.966 1132.38";rotation = "8.06184e-07 -0.635997 0.771691 180";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedDecoration0";position = "-80.768 -815.391 1130.63";rotation = "2.02966e-06 -3.15875e-06 -1 87.4614";scale = "1 1 1";team = "1";ownerGUID = "2714648";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-81.0178 -815.38 1133.43";rotation = "0.560298 -0.585689 0.585692 121.476";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-85.854 -818.668 1131.68";rotation = "0.99951 -0.0221433 0.0221435 90.0278";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-91.849 -822.631 1131.13";rotation = "0.594402 0.568634 -0.568631 118.546";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "-89.5093 -819.575 1129.93";rotation = "0 0 1 182.538";scale = "0.52 0.519998 0.52";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.0373 -872.24 1147.19";rotation = "-0.0221452 -0.99951 0.0221427 90.0283";scale = "0.125 0.166666 196.999";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-89.6839 -821.468 1135.94";rotation = "0 0 1 148.623";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-81.5211 -815.444 1132.21";rotation = "0.594402 0.568634 -0.568631 118.546";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-83.5588 -872.718 1149.69";rotation = "0.707021 -0.0156638 0.707019 181.794";scale = "0.125 0.166666 198";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-86.7685 -815.084 1132.8";rotation = "-0.99951 0.0221433 0.0221433 90.0284";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-91.4232 -818.671 1129.94";rotation = "0 0 1 182.538";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-80.467 -811.989 1131.7";rotation = "-0.560299 0.585691 0.585688 121.476";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-80.467 -811.989 1131.7";rotation = "0.560299 -0.585688 0.585692 121.476";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-81.3873 -812.425 1133.59";rotation = "0.594402 0.568634 -0.568631 118.546";scale = "1 1 1";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedDecoration10";position = "-59.3866 -810.561 1129.94";rotation = "0 0 1 11.2184";scale = "2 2 2";team = "1";ownerGUID = "2714648";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-31.9043 -825.209 1128.44";rotation = "0 0 1 182.538";scale = "25 33.3333 3";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-82.7185 -808.63 1132.32";rotation = "-0.5944 -0.568632 -0.568635 118.545";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "-18.4904 -854.89 1129.94";rotation = "0 0 1 72.3462";scale = "10 10 7";team = "1";ownerGUID = "2714648";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration2";position = "-13.5421 -875.321 1130.4";rotation = "-1.27588e-06 -1.23982e-06 1 182.538";scale = "1 1 1";team = "1";ownerGUID = "2714648";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-13.5532 -875.571 1133.2";rotation = "0.99951 -0.0221433 0.0221434 90.0278";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-80.6674 -796.187 1139.69";rotation = "-0.594399 -0.568635 -0.568633 118.545";scale = "11.3329 6.49999 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate2";position = "-24.3058 -812.101 1129.94";rotation = "0 0 1 222.722";scale = "10 10 5";team = "1";ownerGUID = "2714648";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-11.6427 -828.951 1154.44";rotation = "0.939688 0.342032 4.33556e-07 180";scale = "1 1 0.5";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "5";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-64.8184 -792.368 1154.44";rotation = "0.70897 -0.705239 -8.93954e-07 180";scale = "1 1 0.5";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "5";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "0.827999 -857.633 1129.94";rotation = "0 0 -1 33.3808";scale = "10 10 5";team = "1";ownerGUID = "2714648";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "2.48422 -848.297 1129.94";rotation = "0 0 -1 83.2972";scale = "2 2 2";team = "1";ownerGUID = "2714648";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTripwire";position = "-62.2896 -774.313 1146.48";rotation = "-0.99951 0.0221414 0.0221452 90.0283";scale = "1 1 1";team = "2";ownerGUID = "2714648";powerFreq = "5";switchRadius = "200";beamRange = "160";tripMode = "4";fieldMode = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%tripField = new ForceFieldBare() {datablock = "TripField";scale = "0.01 0.01 0.01";};%building.tripField = %tripField;%tripField.pzone.delete();%building.pzone = "";%tripTrigger = new Trigger() {datablock = "TripTrigger";scale = "99.0001 98.9966 0.5";polyhedron = "0.0000000 1.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.0000000 1.0000000";};%building.tripTrigger = %tripTrigger;%tripTrigger.baseObj = %building;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.powerFreq));%building.deploy();adjustTripwire(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-79.4024 -773.305 1129.94";rotation = "0 0 1 182.538";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-78.9242 -773.826 1149.44";rotation = "0.0221495 0.999755 1.26728e-06 180";scale = "0.125 0.166666 4";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "12.9202 -870.86 1154.44";rotation = "0.570308 0.821431 1.04124e-06 180";scale = "1 1 0.5";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "5";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedTripwire";position = "15.6272 -870.704 1146.32";rotation = "0.594404 0.56863 -0.568633 118.546";scale = "1 1 1";team = "2";ownerGUID = "2714648";powerFreq = "5";switchRadius = "200";beamRange = "160";tripMode = "4";fieldMode = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%tripField = new ForceFieldBare() {datablock = "TripField";scale = "0.01 0.01 0.01";};%building.tripField = %tripField;%tripField.pzone.delete();%building.pzone = "";%tripTrigger = new Trigger() {datablock = "TripTrigger";scale = "99.0001 98.9991 0.5";polyhedron = "0.0000000 1.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.0000000 1.0000000";};%building.tripTrigger = %tripTrigger;%tripTrigger.baseObj = %building;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.powerFreq));%building.deploy();adjustTripwire(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "15.5938 -877.113 1129.94";rotation = "0 0 1 182.538";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-5.73822 -794.861 1154.44";rotation = "0.737301 0.675564 8.56339e-07 180";scale = "1 1 0.5";team = "2";ownerGUID = "2714648";deployed = "1";powerFreq = "5";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),2);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "15.0469 -876.537 1149.44";rotation = "0.0221495 0.999755 1.26728e-06 180";scale = "0.125 0.166666 4";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-79.1526 -773.316 1131.37";rotation = "0.707021 -0.0156638 0.707019 181.794";scale = "0.125 0.166666 198";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.6901 -775.258 1140.53";rotation = "-0.99951 0.0221414 0.0221452 90.0284";scale = "24.75 5.93999 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "-29.7122 -775.758 1130.53";rotation = "0.99951 -0.0221453 0.0221415 90.0278";scale = "182.655 2.3601 0.872";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.2286 -778.178 1147.69";rotation = "-0.707018 0.0156638 0.707022 181.795";scale = "0.125 0.166666 195.998";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.7502 -777.7 1149.69";rotation = "0.0221414 0.99951 0.0221413 90.0283";scale = "0.125 0.166666 198";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "18.0465 -827.425 1130.49";rotation = "0.594403 0.56863 -0.568634 118.546";scale = "182.646 2.2002 0.872";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "15.6049 -876.863 1131.29";rotation = "0.58569 0.560302 0.585686 121.476";scale = "0.125 0.166666 197.998";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "17.5471 -827.401 1140.49";rotation = "-0.594399 -0.568635 -0.568633 118.545";scale = "24.7498 5.96663 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.4673 -778.439 1147.69";rotation = "0.58569 0.560301 -0.585688 238.523";scale = "0.125 0.166666 195.894";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.9889 -777.961 1149.69";rotation = "-0.568635 0.594399 -0.568633 118.545";scale = "0.125 0.166666 197.998";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate6";position = "6.7998 -800.963 1129.94";rotation = "0 0 1 223.26";scale = "5 5 5";team = "1";ownerGUID = "2714648";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "20 -777.711 1129.94";rotation = "0 0 1 182.538";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.4784 -778.189 1149.44";rotation = "0.0221495 0.999755 1.26728e-06 180";scale = "0.125 0.166666 4";team = "2";ownerGUID = "2714648";needsfit = "1";powerFreq = "5";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-59.2116 -231.079 128.938";rotation = "0 0 -1 1.47243";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-61.9011 -231.024 129.338";rotation = "-0.0160106 0.999872 1.26743e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-61.9011 -231.024 129.338";rotation = "1.24746e-06 -1.2953e-12 1 178.165";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); \ No newline at end of file diff --git a/Univ/Data/2714648/Buildings/8.cs b/Univ/Data/2714648/Buildings/8.cs new file mode 100644 index 0000000..c6e5020 --- /dev/null +++ b/Univ/Data/2714648/Buildings/8.cs @@ -0,0 +1,89 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "ChuckConnors" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.833 -21.949 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 78.0016";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.868 -20.7854 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.76 -24.3593 101.75";rotation = "0.0151008 0.999772 0.0151008 90.0134";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.76 -24.3593 101.25";rotation = "0.588977 0.57145 -0.571447 119.006";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.895 -19.8863 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.798 -23.0979 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.917 -19.1431 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.76 -24.3593 104.25";rotation = "0.0151008 0.999772 0.0151008 90.0134";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.949 -18.1031 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.76 -24.3593 104.75";rotation = "0.588977 0.57145 -0.571447 119.006";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.978 -17.1402 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.013 -15.9652 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.043 -14.9885 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.071 -14.0521 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "253.041 -18.8859 101.3";rotation = "0 0 1 125.502";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.105 -12.9433 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 78.0016";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "253.799 -22.3454 101.9";rotation = "0.802633 0.596473 7.56084e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.141 -11.7451 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "252.626 -14.307 101.3";rotation = "0 0 1 95.7567";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.177 -10.5514 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.204 -9.6628 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.01 -24.3669 101";rotation = "0 0 -1 88.2693";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.01 -24.3669 101.5";rotation = "0 0 -1 88.2693";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.01 -24.3669 104.5";rotation = "0 0 -1 88.2693";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "256.01 -24.3669 105";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2714648";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.231 -8.7537 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.256 -7.9268 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.018 -24.117 101.75";rotation = "0.583078 0.565725 0.583074 121.004";scale = "0.125 0.166666 39.792";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.282 -7.0879 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 78.0016";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.31 -6.1588 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 78.0016";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.344 -5.029 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "236.866 -4.0294 101";rotation = "6.06112e-06 -6.41393e-06 1 91.7305";scale = "9.75002 13.0003 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "236.865 -4.0294 99.5";rotation = "0 0 -1 88.2693";scale = "11.25 15 20";team = "1";ownerGUID = "2714648";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "236.884 -4.05186 100";rotation = "0 0 -1 88.2693";scale = "11.25 15 20";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "236.9 -3.73318 100";rotation = "0 0 -1 88.2693";scale = "11.25 15 20";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.376 -3.9751 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 78.0016";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "239.608 -2.52083 104.5";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2714648";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.404 -3.0283 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "239.282 -0.6169 98.5";rotation = "0 0 -1 77.0915";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.428 -2.2538 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 78.0016";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.45 -1.5056 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.018 -24.117 101.25";rotation = "0.583078 0.565725 0.583074 121.004";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "257.195 14.8652 104.25";rotation = "-0.57145 0.588977 -0.571447 119.006";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.018 -24.117 104.75";rotation = "0.583078 0.565725 0.583074 121.004";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.476 -0.6447 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.5 0.1446 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "256.023 -2.4152 102.712";rotation = "-0.588977 -0.57145 -0.571447 119.006";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";frequency = "12";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "256.023 -2.4152 102.712";rotation = "0.588973 0.571448 -0.571452 119.006";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.668 -2.61095 101.5";rotation = "0 0 -1 88.2693";scale = "0.809942 0.166666 5";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.527 1.0473 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "259.802 -3.1402 102.158";rotation = "-0.565725 0.583078 0.583074 121.004";scale = "1 1 1";team = "1";ownerGUID = "2714648";deployed = "1";powerFreq = "1";frequency = "12";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "259.802 -3.1402 102.158";rotation = "0.565725 -0.583073 0.583079 121.004";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.565 2.2781 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 78.0016";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.594 3.2357 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 78.0016";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.528 -23.1739 101";rotation = "0 0 -1 88.2693";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.528 -23.1739 101.5";rotation = "0 0 -1 88.2693";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.619 4.0916 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "216.528 -23.1739 104.5";rotation = "0 0 -1 88.2693";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "216.528 -23.1739 105";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2714648";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.651 5.1274 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 78.0016";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.687 6.34074 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.715 7.26032 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.738 8.02207 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.713 16.0582 101.75";rotation = "-0.57145 0.588977 -0.571447 119.006";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.713 16.0582 101.25";rotation = "-0.57145 0.588977 -0.571447 119.006";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.713 16.0582 104.25";rotation = "-0.57145 0.588977 -0.571447 119.006";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.713 16.0582 104.75";rotation = "-0.57145 0.588977 -0.571447 119.006";scale = "0.125 0.166666 78";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.771 9.11268 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.717 -0.99181 101.75";rotation = "0.583078 0.565725 0.583074 121.004";scale = "0.125 0.166666 31.7284";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.798 10.0169 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.827 10.9585 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.862 12.1051 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 78.0016";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.889 13.0079 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.921 14.0758 104.25";rotation = "-0.565728 0.583073 0.583076 121.005";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "256.953 15.1227 101.75";rotation = "0.0151008 0.999772 0.0151008 90.0134";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.971 16.3005 101.25";rotation = "-0.588977 -0.57145 -0.571447 119.006";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.971 16.3005 104.25";rotation = "0.707068 -0.0106811 0.707065 181.224";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.971 16.3005 104.75";rotation = "-0.588977 -0.57145 -0.571447 119.006";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "257.203 15.1151 101";rotation = "0 0 -1 88.2693";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "257.203 15.1151 101.5";rotation = "0 0 -1 88.2693";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "257.203 15.1151 104.5";rotation = "0 0 -1 88.2693";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "257.203 15.1151 105";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2714648";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.721 16.3081 101";rotation = "0 0 -1 88.2693";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.721 16.3081 101.5";rotation = "0 0 -1 88.2693";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.721 16.3081 104.5";rotation = "0 0 -1 88.2693";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2714648";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "217.721 16.3081 105";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2714648";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); \ No newline at end of file diff --git a/Univ/Data/2714648/Ranks/CnC4/Saved.Rank b/Univ/Data/2714648/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..eae5891 --- /dev/null +++ b/Univ/Data/2714648/Ranks/CnC4/Saved.Rank @@ -0,0 +1,54 @@ +//Ranks File For GUID 2714648 +//Created On 2010-04-04, C&C 4 +$Rank::Name[2714648] = "ChuckConnors"; +$Rank::Rank[2714648, 1] = "Lieutenant Commander"; +$Rank::XP[2714648, 1] = 40353; +$Rank::Rank[2714648, 2] = "Delerion"; +$Rank::XP[2714648, 2] = 5115; +$Rank::Rank[2714648, 3] = "Raider"; +$Rank::XP[2714648, 3] = 0; +$CNC::KilledByObj[2714648, DeployedTempOfNod] = 1; +$CNC::KilledByPl[2714648, 2000343] = 7; +$CNC::TotalKills[2714648] = 54; +$CNC::UKills[2714648] = 19; +$CNC::KilledByObj[2714648, RifleSoldierArmor] = 3; +$CNC::TotalCrawlerDecoms[2714648] = 5; +$CNC::TotalBuilds[2714648] = 264; +$CNC::BuildingsBuilt[2714648, "PowerPlant"] = 68; +$CNC::BuildingsBuilt[2714648, "Bunker"] = 105; +$CNC::TotalBuildingLosses[2714648] = 18; +$CNC::BuildingLosses[2714648, "PowerPlant"] = 3; +$CNC::BuildingLosses[2714648, "Bunker"] = 2; +$CNC::Kills[2714648, 2216015] = 1; +$CNC::TotalCrawlerKills[2714648] = 10; +$CNC::KilledByPl[2714648, 2003098] = 4; +$CNC::TotalBuildingKills[2714648] = 4; +$CNC::BuildingKills[2714648, "PowerPlant"] = 1; +$CNC::Kills[2714648, 2485526] = 1; +$CNC::BuildingKills[2714648, "Bunker"] = 1; +$CNC::Kills[2714648, 2763554] = 4; +$CNC::KilledByPl[2714648, 2001729] = 5; +$CNC::Kills[2714648, 2001729] = 6; +$CNC::Kills[2714648, 2000343] = 4; +$CNC::KilledByObj[2714648, VenomUnit] = 1; +$CNC::KilledByObj[2714648, CrawlerTurretBase] = 2; +$CNC::BuildingsBuilt[2714648, "GunTurret"] = 35; +$CNC::BuildingsBuilt[2714648, "MissileTurret"] = 27; +$CNC::Kills[2714648, 2982546] = 4; +$CNC::KilledByObj[2714648, ObeliskTurretDeployedBase] = 5; +$CNC::BuildingsBuilt[2714648, "FocusBeam"] = 18; +$CNC::BuildingLosses[2714648, "MissileTurret"] = 1; +$CNC::BuildingLosses[2714648, "GunTurret"] = 3; +$CNC::KilledByObj[2714648, FocusBeamTurretDeployedBase] = 3; +$CNC::KilledByObj[2714648, DeployedIonControl] = 1; +$CNC::Deaths[2714648] = 84; +$CNC::Kills[2714648, 2130825] = 6; +$CNC::CrawlerKills[2714648, 2744981] = 1; +$CNC::BuildingsBuilt[2714648, "FalconMRLS"] = 5; +$CNC::Kills[2714648, 2886178] = 5; +$CNC::BuildingLosses[2714648, "FalconMRLS"] = 4; +$CNC::KilledByObj[2714648, BunkerTurretDeployedBase] = 1; +$CNC::BuildingLosses[2714648, "FocusBeam"] = 3; +$CNC::KilledByPl[2714648, 2886178] = 3; +$CNC::CrawlerKills[2714648, 2886178] = 5; +$CNC::KilledByObj[2714648, ZoneCaptArmor] = 1; \ No newline at end of file diff --git a/Univ/Data/2714648/Ranks/Powers/Saved.Dat b/Univ/Data/2714648/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..05372ce --- /dev/null +++ b/Univ/Data/2714648/Ranks/Powers/Saved.Dat @@ -0,0 +1,23 @@ +$PowerSave::Level[2714648, 1] = 15; +$PowerSave::SpendPoints[2714648, 1] = 30; +$PowerSave::EXP[2714648, 1] = 2062; +$PowerSave::TopPlPosition[2714648, 1] = 1; +$PowerSave::Class[2714648, 1] = "Demon"; +$PowerSave::HasPower[2714648, 1, "FireBolt"] = 1; +$PowerSave::HasPower[2714648, 1, "EnergyBall1"] = 1; +$PowerSave::HasPower[2714648, 1, "FireBall3"] = 1; +$PowerSave::HasPower[2714648, 1, "EleStrike"] = 1; +$PowerSave::Level[2714648, 2] = 1; +$PowerSave::SpendPoints[2714648, 2] = 1; +$PowerSave::EXP[2714648, 2] = 0; +$PowerSave::TopPlPosition[2714648, 2] = 1; +$PowerSave::Class[2714648, 2] = "Witch"; +$PowerSave::HasPower[2714648, 2, "LightStrike"] = 1; +$PowerSave::Level[2714648, 3] = 19; +$PowerSave::SpendPoints[2714648, 3] = 19; +$PowerSave::EXP[2714648, 3] = 9388; +$PowerSave::TopPlPosition[2714648, 3] = 1; +$PowerSave::Class[2714648, 3] = "Phantom"; +$PowerSave::HasPower[2714648, 3, "ShadowStrike"] = 1; +$PowerSave::HasPower[2714648, 3, "ShadowBomb"] = 1; +$PowerSave::HasPower[2714648, 3, "ShadowArtillery"] = 1; \ No newline at end of file diff --git a/Univ/Data/2714648/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2714648/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..e3e8184 --- /dev/null +++ b/Univ/Data/2714648/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,123 @@ +//Ranks & Settings File For GUID 2714648 / Name: ChuckConnors +//Created On 2010-11-02, Total Warfare Mod 2 3.4 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2714648) { + + new ScriptObject(TWM2Client_2714648) { + + noMoreEXP91add7cf7886d77002ae84ea77fa577c0db892c1 = "0"; + weaponKillsNuclearImage = "12"; + noMoreEXPba937bb0ce80fc1d9d269b739df9ba36963f59ef = "0"; + challengeCompleteM1SniperRifleImage_1 = "1"; + weaponKillsG17SniperRifleImage = "1"; + weaponKillsMiniChaingunImage = "4"; + CGCalls = "0"; + weaponKillslasergunImage = "2"; + rank = "3 Star General"; + hasMedalRevengeAvoidedAgain = "1"; + weaponKillsspikerImage = "1"; + weaponKillsM1700Image = "40"; + weaponKillsMp26Image = "8"; + bossDefeatCountYvex = "2"; + xpGain20101111 = "41"; + phrase = "None Set"; + noMoreEXPee7c9a49018013a409231982c286cef30e7823cc = "0"; + weaponKillspistolImage = "5"; + HarrierCalls = "0"; + hasMedalTheSourceOfAllEvil = "1"; + noMoreEXPa8fddb1f8fd50ae9e9deff924f327c011b684f1c = "0"; + xpGaind163c4100b1ac6d411ab99ba7d2497825c4d50ee = "157058"; + rankNumber = "51"; + noMoreEXP85e7d97d19576d63d1950df6305f4e40ba337578 = "1"; + hasMedalTheUltimateHeadshot = "1"; + xpGain85e7d97d19576d63d1950df6305f4e40ba337578 = "75000"; + xpGain20101102 = "27891"; + UAVCalls = "20"; + HWCalls = "0"; + xpGainfdd9330966537889b883c917c248124703b206ee = "22912"; + hasMedalTheNewGeneral = "1"; + xpGain91add7cf7886d77002ae84ea77fa577c0db892c1 = "748"; + xpGainba937bb0ce80fc1d9d269b739df9ba36963f59ef = "3620"; + weaponKillsS3RifleImage = "72"; + ZBCalls = "0"; + money = "557916"; + challengeCompleteLRog1 = "1"; + challengeCompleteVard1 = "1"; + noMoreEXP3036b90eb1218d797775c8e553bff2027f8a2da7 = "0"; + challengeCompleteAcceptance = "1"; + hasMedalSerialKiller = "1"; + noMoreEXPfdd9330966537889b883c917c248124703b206ee = "0"; + noMoreEXP1d2b8714ce7c012c9d52c1996bb86953bf638943 = "0"; + noMoreEXPd163c4100b1ac6d411ab99ba7d2497825c4d50ee = "0"; + SlthAirstrikeCalls = "0"; + GMCalls = "0"; + weaponKillsWp400Image = "25"; + hasMedalDailyMax = "1"; + vehicleKillsScoutFlyer = "1"; + NukeCalls = "0"; + xpGain1d2b8714ce7c012c9d52c1996bb86953bf638943 = "2050"; + hasMedalHonorsB = "1"; + weaponKillsG41RifleImage = "5"; + weaponKillsM4A1Image = "19"; + bossDefeatCountVengenor = "1"; + xp = "688933"; + bossDefeatCountVardison3 = "4"; + bossDefeatCountLordRog = "2"; + xpGaineda914a77e55aad7e7c12a57aa7f122fa43d085b = "2009"; + weaponKillsM1SniperRifleImage = "190"; + millionxp = "0"; + officer = "0"; + weaponKillsHarbingerGunshipColliderImage = "2"; + weaponKillsMRXXImage = "4"; + HeliCalls = "3"; + weaponKillsSA2400Image = "1"; + noMoreEXP415828c918be6cdc06183a0e62ee2793b28dd66e = "0"; + xpGain3036b90eb1218d797775c8e553bff2027f8a2da7 = "223144"; + weaponKillsPulsePhaserImage = "62"; + xpGain20101109 = "3064"; + xpGainee7c9a49018013a409231982c286cef30e7823cc = "112408"; + challengeCompletePulsePhaserImage_1 = "1"; + weaponKillsflamerImage = "3"; + ArtyCalls = "0"; + hasMedalHonorsC = "1"; + noMoreEXPeda914a77e55aad7e7c12a57aa7f122fa43d085b = "0"; + hasMedalSrysly = "1"; + name = "ChuckConnors"; + GunHeliCalls = "0"; + weaponKillsSuperChaingunImage = "32"; + gameTime = "1336"; + AirstrikeCalls = "9"; + challengeCompleteS3RifleImage_1 = "1"; + xpGaina8fddb1f8fd50ae9e9deff924f327c011b684f1c = "58988"; + challengeCompleteVard2 = "1"; + }; + new ScriptObject(ClientStore2714648) { + + nextSlot = "0"; + nextLoto = "0"; + }; + new ScriptObject(CCD_2714648) { + + ZombieKillCount20110630__2 = "8"; + totalZombieKillCount20110630 = "59"; + ZombieKillCount20110630_PulsePhaserImage_1 = "2"; + zombieHeadshots20110630 = "44"; + ZombieKillCount20110630_M1SniperRifleImage_1 = "44"; + killstreakCalls20110630_2 = "2"; + ZombieKillCount20110630_PulsePhaserImage_2 = "3"; + ZombieKillCount20110630__1 = "1"; + ZombieKillCount20110630_Grenade_2 = "1"; + expireDate = "20110630"; + ZombieKillCount20110630_0_2 = "12"; + ZombieKillCount20110630_0_1 = "47"; + }; + new ScriptObject(CCD_2714648) { + + ZombieKillCount20110706__9 = "1"; + totalZombieKillCount20110706 = "6"; + ZombieKillCount20110706_PulsePhaserImage_9 = "5"; + expireDate = "20110731"; + ZombieKillCount20110706_0_9 = "6"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2727198/Buildings/1.cs b/Univ/Data/2727198/Buildings/1.cs new file mode 100644 index 0000000..0db0296 --- /dev/null +++ b/Univ/Data/2727198/Buildings/1.cs @@ -0,0 +1,121 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Iplop" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "217.173 -39.8657 100.5";rotation = "0 0 1 6.55276";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "215.801 -49.5323 100.49";rotation = "-0.621336 -0.55405 -0.554049 116.291";scale = "3.01995 4.27001 0.52";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "216.203 -34.8035 100.55";rotation = "0.477855 0.878439 1.1135e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";nametoset = "Crow's Nest";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "221.199 -48.6324 100.5";rotation = "0 0 1 6.55276";scale = "0.125 13 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "216.133 -34.8434 104.7";rotation = "0 0 1 43.6155";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "200";switchRadius = "5";nametoset = "Crow's Nest";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "221.199 -48.6324 103.25";rotation = "0 0 1 6.55252";scale = "0.125 13.3333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "210.961 -32.6132 100.5";rotation = "0 0 1 96.5526";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "204.603 -44.5566 96.3";rotation = "0 0 1 89.0955";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "4";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.709 -44.0961 100.25";rotation = "0.706529 -0.0404483 0.706527 184.632";scale = "0.125 13.3333 80";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "215.29 -56.2579 100.5";rotation = "0 0 1 6.55276";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "201.578 -46.3785 100.5";rotation = "2.89605e-06 -5.92883e-06 1 6.55276";scale = "9.875 13.1667 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "201.91 -46.445 104.35";rotation = "0 0 -1 82.0264";scale = "0.75 0.75 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "205.508 -47.0095 88.98";rotation = "0 0 1 186.553";scale = "0.125 1 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "205.258 -46.9911 90.828";rotation = "-0.533356 0.598137 0.598133 123.853";scale = "1.25 1.25 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";isSwitchedOff = "1";switchRadius = "200";nametoset = "|WARNING| Sterilize Base";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "181.685 -44.0912 105";rotation = "0.706529 -0.040448 0.706527 184.632";scale = "0.125 13.3333 80";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "205.756 -47.038 92.73";rotation = "0.0570589 0.996738 0.0570671 90.1863";scale = "0.125 1.33333 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "197.585 -45.008 95.9";rotation = "0 0 -1 70.9729";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "3";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "197.545 -45.8144 95.3";rotation = "0 0 -1 83.7091";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "201.982 -44.8429 88.98";rotation = "0 0 1 186.553";scale = "2 0.166666 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "201.293 -31.254 100.49";rotation = "-0.996739 0.057058 0.0570634 90.187";scale = "3.0206 4.27001 0.52";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "222.871 -29.3011 105.25";rotation = "0 0 1 61.542";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "201.582 -48.3201 88.98";rotation = "0 0 1 186.553";scale = "2 0.166666 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "205.756 -47.038 88.73";rotation = "0.0570595 0.996739 0.0570656 90.1869";scale = "0.125 1.33333 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "212.806 -60.6906 100.5";rotation = "0 0 1 141.317";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";nametoset = "Supply";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "194.63 -45.2491 96.5";rotation = "0 0 -1 77.147";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "203.832 -26.7576 100.5";rotation = "0 0 1 96.5531";scale = "0.125 13.3333 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "199.473 -46.2953 89.15";rotation = "-0.586622 0.809861 1.02657e-06 180";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "203.832 -26.7576 103.25";rotation = "0 0 1 96.5531";scale = "0.125 13.3333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "198.057 -46.1535 88.98";rotation = "0 0 1 186.553";scale = "0.125 1 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "207.59 -61.9106 100.5";rotation = "0 0 1 96.5526";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "194.567 -30.7432 100.5";rotation = "0 0 1 96.5526";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "197.877 -60.5323 100.49";rotation = "-0.996739 0.057058 0.0570634 90.187";scale = "3.06691 4.27001 0.52";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "218.388 -67.3946 105.25";rotation = "0 0 1 147.664";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.791 -44.7348 125.5";rotation = "0.19508 -0.011176 0.980724 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "199.324 -65.9995 100.5";rotation = "0 0 1 96.5531";scale = "0.125 13.3333 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.294 -44.6777 125.5";rotation = "0.0570639 0.996738 0.057069 90.187";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "199.324 -65.9995 103.25";rotation = "0 0 1 96.5531";scale = "0.125 13.3333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.117 -44.0283 125.5";rotation = "0.0111756 0.195075 0.980725 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "188.753 -31.3356 100.55";rotation = "-0.341593 0.939848 1.19134e-06 180";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.18 -45.6711 125.5";rotation = "0.0570618 0.996738 0.0570677 90.1875";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.066 -46.6645 125.5";rotation = "0.0570594 0.996739 0.0570635 90.187";scale = "0.609761 0.609759 4.76192";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "186.872 -36.4029 100.5";rotation = "0 0 1 6.55276";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "188.734 -31.3526 104.7";rotation = "0 0 -1 13.2399";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "200";switchRadius = "25";nametoset = "Panic Room";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "203.952 -47.6579 125.5";rotation = "0.0570599 0.996739 0.057064 90.187";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.335 -48.7084 125.5";rotation = "0.195081 -0.01117 0.980724 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "203.838 -48.6513 125.5";rotation = "0.0570599 0.996739 0.057064 90.187";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "185.5 -46.0695 100.49";rotation = "-0.621336 -0.55405 -0.554049 116.291";scale = "3.01996 4.27001 0.52";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.62 -46.2249 125.5";rotation = "0.195075 -0.0111717 0.980725 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "205.808 -44.8834 128";rotation = "0.385378 0.838431 0.38538 100.044";scale = "0.609756 0.609756 2.355";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.506 -47.2183 125.5";rotation = "0.195073 -0.0111696 0.980725 186.427";scale = "0.609756 0.609759 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "191.151 -60.0214 100.5";rotation = "0 0 1 96.5526";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "203.518 -49.2437 125.5";rotation = "-0.0111668 -0.195081 0.980724 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "186.48 -50.8291 100.5";rotation = "0 0 -1 87.823";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "4";isSwitchedOff = "1";switchRadius = "25";nametoset = "Turret Control";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "202.627 -43.8571 125.5";rotation = "0.0111756 0.195075 0.980725 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "200.143 -43.5718 125.5";rotation = "0.0111756 0.195075 0.980725 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "205.369 -48.7975 128";rotation = "-0.299384 0.90595 -0.299373 95.6496";scale = "0.609756 0.609756 2.355";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "201.633 -43.743 125.5";rotation = "0.0111756 0.195075 0.980725 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "183.896 -42.5858 100.5";rotation = "0 0 1 96.5531";scale = "0.125 1.33333 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "198.83 -44.0499 125.5";rotation = "0.0549247 0.959533 0.276188 23.4231";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "243.618 -31.086 101.647";rotation = "0.621335 0.554045 -0.554055 116.292";scale = "20.02 1.72 80.02";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "243.62 -31.0662 101.647";rotation = "-0.0404438 -0.706526 0.706531 184.632";scale = "20.02 1.72 40.02";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "202.028 -49.0725 125.5";rotation = "-0.0111676 -0.195081 0.980724 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "199.545 -48.7872 125.5";rotation = "-0.0111668 -0.195081 0.980724 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "201.035 -48.9583 125.5";rotation = "-0.0111668 -0.195081 0.980724 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "183.496 -46.0629 100.5";rotation = "0 0 1 96.5531";scale = "0.125 1.33333 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "184.989 -52.7951 100.5";rotation = "0 0 1 6.55276";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "199.213 -45.1005 125.5";rotation = "0.0569456 0.994732 0.0852342 67.7803";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "200.311 -42.5533 128";rotation = "-0.239424 0.940934 -0.239413 93.4855";scale = "0.609756 0.609756 2.78688";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "198.374 -48.0236 125.5";rotation = "0.0549221 0.959538 0.27617 23.423";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "199.099 -46.0939 125.5";rotation = "0.0569436 0.994733 0.0852285 67.7798";scale = "0.609759 0.609759 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "206.331 -46.9347 130.58";rotation = "0 0 1 186.553";scale = "0.125 2.7748 1";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "198.985 -47.0873 125.5";rotation = "0.0569441 0.994733 0.0852291 67.7798";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "182.602 -44.1987 102.5";rotation = "-0.533359 0.598136 0.598131 123.853";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "4";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "182.602 -44.1987 102.5";rotation = "0.533358 -0.598131 0.598138 123.853";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "199.485 -49.7926 128";rotation = "0.336831 0.879254 0.336834 97.3518";scale = "0.609756 0.609756 2.71834";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "186.083 -58.156 100.5";rotation = "0 0 1 238.502";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "3";isSwitchedOff = "1";switchRadius = "200";nametoset = "Get Off My Lawn!!!";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "202.374 -42.0462 130.58";rotation = "0 0 1 186.553";scale = "2.36885 0.166666 1";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "206.607 -46.7207 130.33";rotation = "0.0570594 0.996739 0.0570635 90.187";scale = "0.125 2.9406 19.9303";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "183.184 -33.4449 100.5";rotation = "0 0 1 6.55276";scale = "0.125 5.83333 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "181.957 -44.1246 100.5";rotation = "0 0 1 6.55276";scale = "0.125 0.999999 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "201.651 -46.1836 130.58";rotation = "0 0 1 98.7264";scale = "0.5 0.5 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";nametoset = "Supply";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "183.184 -33.4449 103.25";rotation = "0 0 1 6.55264";scale = "0.125 5.83333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "181.312 -44.0505 102.5";rotation = "-0.621337 -0.554049 -0.554048 116.292";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "4";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "181.312 -44.0505 102.5";rotation = "0.621333 0.55405 -0.554052 116.291";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "195.852 -44.7143 127.037";rotation = "0.195073 -0.0111718 0.980725 186.427";scale = "0.64292 0.0833333 7.18796";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.806 -44.1169 100.259";rotation = "-0.595582 0.667913 0.446289 136.599";scale = "0.75273 0.173303 4";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "195.616 -46.7003 127.04";rotation = "0.195079 -0.0111697 0.980724 186.427";scale = "0.638642 0.0833333 7.26458";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "206.359 -46.6804 133.08";rotation = "0 0 1 186.553";scale = "0.125 2.93276 2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "193.308 -42.9799 127.6";rotation = "0.102591 0.994724 1.2609e-06 180";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "194.474 -45.8826 127.413";rotation = "0.0570588 0.996739 0.0570623 90.187";scale = "0.0625 2.87863 6";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "206.073 -51.3189 130.578";rotation = "0.621335 0.55405 -0.55405 116.291";scale = "0.125 0.333333 27.6";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "194.539 -43.13 127.538";rotation = "0 0 -1 83.4473";scale = "0.787968 0.166666 5.48588";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "196.553 -48.4675 130.37";rotation = "0.724463 0.646008 -0.24047 149.814";scale = "0.76379 0.166665 7.78188";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "197.129 -44.0945 130.58";rotation = "0 0 1 186.553";scale = "0.125 1.9223 1";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "184.739 -25.2492 105.25";rotation = "0 0 -1 36.6705";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "201.884 -41.99 133.08";rotation = "0 0 1 96.5531";scale = "0.125 3.15593 2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "193.454 -41.6707 127.538";rotation = "0 0 -1 83.4473";scale = "0.125 0.667057 5.49616";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "194.501 -45.5636 130.41";rotation = "-0.53336 0.598135 -0.598132 236.147";scale = "0.5625 0.0833333 4.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "184.011 -24.2189 101.648";rotation = "-0.0404474 -0.706526 0.706531 184.632";scale = "20.02 1.72 40.02";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "183.971 -24.217 100.515";rotation = "0.706529 -0.0404512 0.706527 184.632";scale = "4.27 40.0118 40.0469";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "180.731 -54.8044 100.5";rotation = "0 0 1 6.55276";scale = "0.125 5.83333 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "180.731 -54.8044 103.25";rotation = "0 0 1 6.55264";scale = "0.125 5.83333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "196.679 -45.8145 134.33";rotation = "0.706529 -0.0404512 0.706527 184.632";scale = "0.125 3.09405 19.9248";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "196.58 -46.6822 130.83";rotation = "-0.53336 0.598135 0.598132 123.853";scale = "0.125 0.166666 7.7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "191.771 -45.318 127.538";rotation = "0 0 -1 83.4473";scale = "2.03278 0.166666 5.49998";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "201.116 -50.7494 133.08";rotation = "0 0 1 186.553";scale = "2.49762 0.166666 2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "192.52 -49.7528 127.538";rotation = "0 0 -1 83.4473";scale = "0.125 1 5.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "193.179 -43.9658 130.286";rotation = "0 0 1 186.553";scale = "0.747747 1.70765 0.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "239.045 -70.8037 99.927";rotation = "-0.533359 0.598132 0.598136 123.852";scale = "20.02 1.72 80.02";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "197.1 -44.3429 133.08";rotation = "0 0 1 96.5531";scale = "1.31667 0.166666 2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "191.478 -47.8707 130.288";rotation = "-0.426966 -0.380729 -0.820211 94.7827";scale = "1 0.0666667 13.06";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "180.483 -63.2151 105.25";rotation = "0 0 1 236.554";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "246.572 -10.7354 100";rotation = "0 0 1 231.951";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "236.532 -90.4051 100.5";rotation = "0 0 1 96.5526";scale = "0.125 0.166666 1.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "237.23 -91.3149 100";rotation = "0 0 -1 40.1862";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "165.762 -1.43165 100";rotation = "0 0 1 139.594";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.551 -81.3325 100.5";rotation = "0 0 1 96.5531";scale = "0.125 0.166666 1.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "156.728 -82.0605 100";rotation = "0 0 1 52.4285";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); \ No newline at end of file diff --git a/Univ/Data/2727198/Buildings/2.cs b/Univ/Data/2727198/Buildings/2.cs new file mode 100644 index 0000000..906655a --- /dev/null +++ b/Univ/Data/2727198/Buildings/2.cs @@ -0,0 +1,81 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Iplop" +// Created in mission "flatlandbig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.374 -9.7003 103.35";rotation = "0.421165 -0.503893 0.75413 115.552";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.245 -17.0022 103.35";rotation = "0.29034 -0.531638 0.795653 133.028";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-28.662 -5.7632 100.25";rotation = "-0.992099 0.0887062 0.0887225 90.4529";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.374 -9.7003 103.35";rotation = "-0.641312 0.767281 9.72592e-07 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-30.081 -13.6363 100.25";rotation = "-0.923572 0.271118 0.271126 94.5489";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.514 -1.8553 103.35";rotation = "0.567649 -0.457385 0.684524 99.301";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.245 -17.0022 103.35";rotation = "-0.479304 0.877649 1.1125e-06 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-30.364 2.0537 100.25";rotation = "-0.988623 -0.106368 -0.106346 90.6539";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.514 -1.8553 103.35";rotation = "0.778678 -0.627424 -7.95316e-07 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-37.692 -22.6492 103.35";rotation = "0.171424 -0.547346 0.819162 151.222";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-34.405 -20.3669 100.25";rotation = "-0.803976 0.420489 0.42049 102.401";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-37.692 -22.6492 103.35";rotation = "-0.298873 0.954293 1.20965e-06 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.646 5.3386 103.35";rotation = "0.728121 -0.380815 0.56993 85.0837";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-34.927 8.6245 100.25";rotation = "-0.914325 -0.286378 -0.286351 95.1236";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.646 5.3386 103.35";rotation = "0.886122 -0.463451 -5.87466e-07 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-40.976 -24.9304 100.25";rotation = "-0.659599 0.531476 0.531472 113.18";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-44.886 -25.7816 103.35";rotation = "-0.106956 0.994264 1.26032e-06 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-44.886 -25.7816 103.35";rotation = "0.0596586 -0.55458 0.829989 169.796";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-46.551 -1.9089 95";rotation = "0 0 -1 73.208";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-41.658 12.9487 100.25";rotation = "-0.791429 -0.43224 -0.432213 103.281";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-38.294 10.7862 103.35";rotation = "0.959511 -0.281673 -3.57046e-07 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-38.294 10.7862 103.35";rotation = "0.88416 -0.259554 0.38845 74.1585";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-59.896 -22.8403 100.04";rotation = "0.203246 0.69236 0.692336 202.977";scale = "1.975 0.156667 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-52.685 -25.6765 100.04";rotation = "0.0631092 0.705709 0.705685 187.221";scale = "1.975 0.156333 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.453 -16.8668 100.04";rotation = "-0.360237 0.65964 0.659624 140.378";scale = "1.975 0.155333 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-37.833 -22.4437 100.04";rotation = "-0.216217 0.690387 0.690374 155.598";scale = "1.975 0.155667 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-44.938 -25.5372 100.04";rotation = "-0.0758446 0.705079 0.705061 171.325";scale = "1.975 0.156 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.851 5.1962 100.04";rotation = "-0.803976 0.420492 0.420487 102.402";scale = "1.975 0.154333 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.618 -9.6558 100.04";rotation = "-0.508798 0.608744 0.608732 126.065";scale = "1.975 0.155 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.758 -1.9083 100.04";rotation = "-0.659599 0.531476 0.531472 113.182";scale = "1.975 0.154667 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "-49.161 -6.132 99.639";rotation = "0 0 -1 102.28";scale = "104.878 104.878 3.32381";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "-49.161 -6.132 99.639";rotation = "0 0 -1 79.7798";scale = "104.878 104.878 3.34286";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "-49.161 -6.132 99.639";rotation = "0 0 -1 57.2798";scale = "104.878 104.878 3.3619";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "-49.161 -6.132 99.639";rotation = "0 0 -1 34.7798";scale = "104.878 104.878 3.38095";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-49.196 -6.019 100.29";rotation = "0.999749 -0.0224263 -2.84274e-08 180";scale = "0.75 0.75 0.1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "150.804 43.981 100.4";rotation = "-0.000113031 -1.26893e-12 1 2.56749";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.567 -10.3561 103.11";rotation = "0.495039 0.614386 0.614383 232.674";scale = "1.975 0.146667 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.707 -2.6086 103.11";rotation = "-0.64587 -0.539839 -0.539839 114.286";scale = "1.975 0.15 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.475 -17.4606 103.1";rotation = "0.346867 0.6632 0.663212 218.259";scale = "1.975 0.143333 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.387 13.2729 103.11";rotation = "-0.988624 -0.106357 -0.106351 90.6557";scale = "1.975 0.16 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.492 10.1793 103.11";rotation = "-0.914327 -0.286365 -0.286359 95.1253";scale = "1.975 0.156667 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.872 4.6025 103.11";rotation = "-0.791433 -0.432225 -0.432221 103.281";scale = "1.975 0.153333 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-45.64 13.4123 103.11";rotation = "-0.992099 0.088711 0.0887144 90.4546";scale = "1.975 0.163333 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-38.429 10.5762 103.11";rotation = "-0.923576 0.271115 0.271115 94.5506";scale = "1.975 0.165 79.44";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "-48.962 -0.838001 100.504";rotation = "0.591454 0.806338 1.02211e-06 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-51.63 -9.4989 100.264";rotation = "0 0 1 214.992";scale = "0.5 0.5 0.05";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-48.793 -26.632 100.25";rotation = "-0.508799 0.608742 0.608733 126.064";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-52.732 -25.9227 103.35";rotation = "0.0890731 0.996025 1.26255e-06 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-52.732 -25.9227 103.35";rotation = "-0.0496236 -0.554886 0.830445 188.495";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-49.531 14.3681 100.25";rotation = "-0.645865 -0.539854 -0.539829 114.286";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-45.595 13.6581 103.35";rotation = "0.996025 -0.0890693 -1.12903e-07 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-38.625 24.2987 95";rotation = "0 0 -1 4.97123";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "-30.8044 28.0968 100";rotation = "0 0 -1 72.2884";scale = "1.21951 1.2195 3.33333";team = "1";ownerGUID = "2727198";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-45.595 13.6581 103.35";rotation = "0.987292 -0.0882885 0.132133 68.1785";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "-31.0425 28.1729 100.25";rotation = "0.152156 0.976574 0.152155 91.3581";scale = "0.819672 0.819669 2.32558";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.666 -25.2127 100.25";rotation = "-0.360235 0.659639 0.659627 140.376";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.033 -23.0507 103.35";rotation = "0.281677 0.959509 1.21627e-06 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-57.348 12.6665 100.25";rotation = "0.495036 0.614396 0.614375 232.674";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.033 -23.0507 103.35";rotation = "-0.16097 -0.548325 0.820627 207.09";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.441 13.517 103.35";rotation = "0.994264 0.106956 1.35576e-07 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-53.441 13.517 103.35";rotation = "0.981766 0.105611 -0.158059 68.4777";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.397 -20.8885 100.25";rotation = "-0.216214 0.690392 0.69037 155.598";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.681 -17.6032 103.35";rotation = "0.463456 0.88612 9.9765e-07 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-63.919 8.103 100.25";rotation = "0.346864 0.663215 0.663198 218.259";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.635 10.3846 103.35";rotation = "0.954293 0.298874 3.78851e-07 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.681 -17.6032 103.35";rotation = "-0.279032 -0.533503 0.798446 225.331";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-67.96 -14.3177 100.25";rotation = "-0.0758461 0.70508 0.70506 171.325";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.813 -10.4093 103.35";rotation = "0.627421 0.778681 9.87042e-07 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-46.225 32.0614 100.4";rotation = "-0.58894 0.808177 1.02444e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "553.775 82.0614 100.4";rotation = "6.44729e-07 -2.8961e-12 1 107.836";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.635 10.3846 103.35";rotation = "0.871119 0.272824 -0.408312 74.979";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.243 1.3724 100.25";rotation = "0.203245 0.692357 0.692339 202.977";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.082 4.7376 103.35";rotation = "0.877649 0.479304 6.07561e-07 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.662 -6.5007 100.25";rotation = "0.0631078 0.705707 0.705688 187.221";scale = "0.125 0.499999 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.953 -2.5643 103.35";rotation = "0.767278 0.641314 8.12924e-07 180";scale = "2 0.166666 1.2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.813 -10.4093 103.35";rotation = "0.408582 0.507081 -0.7589 117.11";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.082 4.7376 103.35";rotation = "0.713145 0.389465 -0.582874 86.2709";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.953 -2.5643 103.35";rotation = "0.553561 0.462684 -0.692455 100.719";scale = "2.5625 0.0833332 12";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2727198/Buildings/3.cs b/Univ/Data/2727198/Buildings/3.cs new file mode 100644 index 0000000..ca6cf88 --- /dev/null +++ b/Univ/Data/2727198/Buildings/3.cs @@ -0,0 +1,116 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Iplop" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "180.731 -54.8044 100.5";rotation = "0 0 1 6.55276";scale = "0.125 5.83333 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "183.496 -46.0629 100.5";rotation = "0 0 1 96.5531";scale = "0.125 1.33333 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.806 -44.1169 100.259";rotation = "-0.595582 0.667913 0.446289 136.599";scale = "0.75273 0.173303 4";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "180.731 -54.8044 103.25";rotation = "0 0 1 6.55264";scale = "0.125 5.83333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "181.312 -44.0505 102.5";rotation = "-0.621337 -0.554049 -0.554048 116.292";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "4";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "181.312 -44.0505 102.5";rotation = "0.621333 0.55405 -0.554052 116.291";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "184.989 -52.7951 100.5";rotation = "0 0 1 6.55276";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "181.957 -44.1246 100.5";rotation = "0 0 1 6.55276";scale = "0.125 0.999999 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "182.602 -44.1987 102.5";rotation = "-0.533359 0.598136 0.598131 123.853";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "4";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "182.602 -44.1987 102.5";rotation = "0.533358 -0.598131 0.598138 123.853";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "186.48 -50.8291 100.5";rotation = "0 0 -1 87.823";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "4";isSwitchedOff = "1";switchRadius = "25";nametoset = "Turret Control";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "185.5 -46.0695 100.49";rotation = "-0.621336 -0.55405 -0.554049 116.291";scale = "3.01996 4.27001 0.52";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "183.896 -42.5858 100.5";rotation = "0 0 1 96.5531";scale = "0.125 1.33333 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "186.083 -58.156 100.5";rotation = "0 0 1 238.502";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "3";isSwitchedOff = "1";switchRadius = "200";nametoset = "Get Off My Lawn!!!";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "180.483 -63.2151 105.25";rotation = "0 0 1 236.554";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "186.872 -36.4029 100.5";rotation = "0 0 1 6.55276";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "191.151 -60.0214 100.5";rotation = "0 0 1 96.5526";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "183.184 -33.4449 100.5";rotation = "0 0 1 6.55276";scale = "0.125 5.83333 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "183.184 -33.4449 103.25";rotation = "0 0 1 6.55264";scale = "0.125 5.83333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "194.63 -45.2491 96.5";rotation = "0 0 -1 77.147";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "197.585 -45.008 95.9";rotation = "0 0 -1 70.9729";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "3";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "197.545 -45.8144 95.3";rotation = "0 0 -1 83.7091";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "188.753 -31.3356 100.55";rotation = "-0.341593 0.939848 1.19134e-06 180";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "198.057 -46.1535 88.98";rotation = "0 0 1 186.553";scale = "0.125 1 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "188.734 -31.3526 104.7";rotation = "0 0 -1 13.2399";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "200";switchRadius = "25";nametoset = "Panic Room";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.709 -44.0961 100.25";rotation = "0.706529 -0.0404483 0.706527 184.632";scale = "0.125 13.3333 80";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "201.578 -46.3785 100.5";rotation = "0 0 1 6.55276";scale = "9.875 13.1667 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "181.685 -44.0912 105";rotation = "0.706529 -0.0404483 0.706527 184.632";scale = "0.125 13.3333 80";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "197.877 -60.5323 100.49";rotation = "-0.996739 0.057058 0.0570634 90.187";scale = "3.06691 4.27001 0.52";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "199.473 -46.2953 89.15";rotation = "-0.586622 0.809861 1.02657e-06 180";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "201.91 -46.445 104.35";rotation = "0 0 -1 82.0264";scale = "0.75 0.75 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "205.756 -47.038 92.73";rotation = "0.0570589 0.996738 0.0570671 90.1867";scale = "0.125 1.33333 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "204.603 -44.5566 96.3";rotation = "0 0 1 89.0955";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "4";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "201.582 -48.3201 88.98";rotation = "0 0 1 186.553";scale = "2 0.166666 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "194.567 -30.7432 100.5";rotation = "0 0 1 96.5526";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "201.982 -44.8429 88.98";rotation = "0 0 1 186.553";scale = "2 0.166666 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "205.756 -47.038 88.73";rotation = "0.0570595 0.996739 0.0570656 90.1869";scale = "0.125 1.33333 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "199.324 -65.9995 100.5";rotation = "0 0 1 96.5531";scale = "0.125 13.3333 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "199.324 -65.9995 103.25";rotation = "0 0 1 96.5531";scale = "0.125 13.3333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "183.971 -24.217 100.515";rotation = "0.706529 -0.0404512 0.706527 184.632";scale = "4.27 40.0118 40.0469";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "184.739 -25.2492 105.25";rotation = "0 0 -1 36.6705";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "205.258 -46.9911 90.828";rotation = "-0.533356 0.598137 0.598133 123.853";scale = "1.25 1.25 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";switchRadius = "200";nametoset = "|WARNING| Sterilize Base";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "205.508 -47.0095 88.98";rotation = "0 0 1 186.553";scale = "0.125 1 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "201.293 -31.254 100.49";rotation = "-0.996739 0.057058 0.0570634 90.187";scale = "3.0206 4.27001 0.52";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "207.59 -61.9106 100.5";rotation = "0 0 1 96.5526";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "194.474 -45.8826 127.413";rotation = "0.0570588 0.996739 0.0570623 90.187";scale = "0.0625 2.87863 6";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "193.308 -42.9799 127.6";rotation = "0.102591 0.994724 1.2609e-06 180";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "198.985 -47.0873 125.5";rotation = "0.0569441 0.994733 0.0852291 67.7798";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "192.52 -49.7528 127.538";rotation = "0 0 -1 83.4473";scale = "0.125 1 5.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "191.771 -45.318 127.538";rotation = "0 0 -1 83.4473";scale = "2.03278 0.166666 5.49998";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "199.099 -46.0939 125.5";rotation = "0.0569436 0.994733 0.0852285 67.7798";scale = "0.609759 0.609759 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "199.213 -45.1005 125.5";rotation = "0.0569456 0.994732 0.0852342 67.7803";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "198.374 -48.0236 125.5";rotation = "0.0549221 0.959538 0.27617 23.423";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "196.553 -48.4675 130.37";rotation = "0.724463 0.646008 -0.24047 149.814";scale = "0.76379 0.166665 7.78188";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "193.454 -41.6707 127.538";rotation = "0 0 -1 83.4473";scale = "0.125 0.667057 5.49616";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "198.83 -44.0499 125.5";rotation = "0.0549247 0.959533 0.276188 23.4231";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "194.539 -43.13 127.538";rotation = "0 0 -1 83.4473";scale = "0.787968 0.166666 5.48588";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "199.545 -48.7872 125.5";rotation = "-0.0111668 -0.195081 0.980724 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "195.616 -46.7003 127.04";rotation = "0.195079 -0.0111697 0.980724 186.427";scale = "0.638642 0.0833333 7.26458";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "203.832 -26.7576 100.5";rotation = "0 0 1 96.5531";scale = "0.125 13.3333 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "203.838 -48.6513 125.5";rotation = "0.0570599 0.996739 0.057064 90.187";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "203.832 -26.7576 103.25";rotation = "0 0 1 96.5531";scale = "0.125 13.3333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "203.952 -47.6579 125.5";rotation = "0.0570599 0.996739 0.057064 90.187";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "195.852 -44.7143 127.037";rotation = "0.195073 -0.0111718 0.980725 186.427";scale = "0.64292 0.0833333 7.18796";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "199.485 -49.7926 128";rotation = "0.336831 0.879254 0.336834 97.3518";scale = "0.609756 0.609756 2.71834";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.066 -46.6645 125.5";rotation = "0.0570594 0.996739 0.0570635 90.187";scale = "0.609761 0.609759 4.76192";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "193.179 -43.9658 130.286";rotation = "0 0 1 186.553";scale = "0.747747 1.70765 0.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.18 -45.6711 125.5";rotation = "0.0570618 0.996738 0.0570677 90.1875";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.294 -44.6777 125.5";rotation = "0.0570639 0.996738 0.057069 90.187";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "200.143 -43.5718 125.5";rotation = "0.0111756 0.195075 0.980725 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "196.58 -46.6822 130.83";rotation = "-0.53336 0.598135 0.598132 123.853";scale = "0.125 0.166666 7.7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "194.501 -45.5636 130.41";rotation = "-0.53336 0.598135 -0.598132 236.147";scale = "0.5625 0.0833333 4.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "200.311 -42.5533 128";rotation = "-0.239424 0.940934 -0.239413 93.4855";scale = "0.609756 0.609756 2.78688";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "212.806 -60.6906 100.5";rotation = "0 0 1 141.317";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";nametoset = "Supply";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "201.035 -48.9583 125.5";rotation = "-0.0111668 -0.195081 0.980724 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "191.478 -47.8707 130.288";rotation = "-0.426966 -0.380729 -0.820211 94.7827";scale = "1 0.0666667 13.06";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "202.028 -49.0725 125.5";rotation = "-0.0111676 -0.195081 0.980724 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "210.961 -32.6132 100.5";rotation = "0 0 1 96.5526";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "203.518 -49.2437 125.5";rotation = "-0.0111668 -0.195081 0.980724 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "197.129 -44.0945 130.58";rotation = "0 0 1 186.553";scale = "0.125 1.9223 1";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "201.633 -43.743 125.5";rotation = "0.0111756 0.195075 0.980725 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "215.29 -56.2579 100.5";rotation = "0 0 1 6.55276";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "206.073 -51.3189 130.578";rotation = "0.621335 0.55405 -0.55405 116.291";scale = "0.125 0.333333 27.6";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "215.801 -49.5323 100.49";rotation = "-0.621336 -0.55405 -0.554049 116.291";scale = "3.01995 4.27001 0.52";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.335 -48.7084 125.5";rotation = "0.195081 -0.01117 0.980724 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "202.627 -43.8571 125.5";rotation = "0.0111756 0.195075 0.980725 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.117 -44.0283 125.5";rotation = "0.0111756 0.195075 0.980725 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "205.369 -48.7975 128";rotation = "-0.299384 0.90595 -0.299373 95.6496";scale = "0.609756 0.609756 2.355";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.791 -44.7348 125.5";rotation = "0.19508 -0.011176 0.980724 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "206.607 -46.7207 130.33";rotation = "0.0570594 0.996739 0.0570635 90.187";scale = "0.125 2.9406 19.9303";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "201.651 -46.1836 130.58";rotation = "0 0 1 98.7264";scale = "0.5 0.5 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";nametoset = "Supply";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.506 -47.2183 125.5";rotation = "0.195073 -0.0111696 0.980725 186.427";scale = "0.609756 0.609759 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.62 -46.2249 125.5";rotation = "0.195075 -0.0111717 0.980725 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "205.808 -44.8834 128";rotation = "0.385378 0.838431 0.38538 100.044";scale = "0.609756 0.609756 2.355";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "197.1 -44.3429 133.08";rotation = "0 0 1 96.5531";scale = "1.31667 0.166666 2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "217.173 -39.8657 100.5";rotation = "0 0 1 6.55276";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "202.374 -42.0462 130.58";rotation = "0 0 1 186.553";scale = "2.36885 0.166666 1";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "216.203 -34.8035 100.55";rotation = "0.477855 0.878439 1.1135e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";nametoset = "Crow's Nest";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "156.728 -82.0605 100";rotation = "0 0 1 52.4285";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "216.133 -34.8434 104.7";rotation = "0 0 1 43.6155";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "200";isSwitchedOff = "1";switchRadius = "5";nametoset = "Crow's Nest";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "201.116 -50.7494 133.08";rotation = "0 0 1 186.553";scale = "2.49762 0.166666 2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "206.331 -46.9347 130.58";rotation = "0 0 1 186.553";scale = "0.125 2.7748 1";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "196.679 -45.8145 134.33";rotation = "0.706529 -0.0404512 0.706527 184.632";scale = "0.125 3.09405 19.9248";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "201.884 -41.99 133.08";rotation = "0 0 1 96.5531";scale = "0.125 3.15593 2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "221.199 -48.6324 100.5";rotation = "0 0 1 6.55276";scale = "0.125 13 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "221.199 -48.6324 103.25";rotation = "0 0 1 6.55252";scale = "0.125 13.3333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "206.359 -46.6804 133.08";rotation = "0 0 1 186.553";scale = "0.125 2.93276 2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "218.388 -67.3946 105.25";rotation = "0 0 1 147.664";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "222.871 -29.3011 105.25";rotation = "0 0 1 61.542";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "166.376 -2.15006 100.345";rotation = "-0.533358 0.598136 -0.598133 236.147";scale = "80.02 0.370001 80.02";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "165.762 -1.43165 100";rotation = "0 0 1 139.594";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "237.23 -91.3149 100";rotation = "0 0 -1 40.1862";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "246.572 -10.7354 100";rotation = "0 0 1 231.951";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); \ No newline at end of file diff --git a/Univ/Data/2727198/Buildings/5.cs b/Univ/Data/2727198/Buildings/5.cs new file mode 100644 index 0000000..4990ebe --- /dev/null +++ b/Univ/Data/2727198/Buildings/5.cs @@ -0,0 +1,124 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Iplop" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "185.5 -46.0695 100.49";rotation = "-0.621336 -0.55405 -0.554049 116.291";scale = "3.01996 4.27001 0.52";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "194.63 -45.2491 96.5";rotation = "0 0 -1 77.147";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "186.48 -50.8291 100.5";rotation = "0 0 -1 87.823";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "4";isSwitchedOff = "1";switchRadius = "25";nametoset = "Turret Control";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "183.496 -46.0629 100.5";rotation = "0 0 1 96.5531";scale = "0.125 1.33333 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "183.896 -42.5858 100.5";rotation = "0 0 1 96.5531";scale = "0.125 1.33333 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "197.585 -45.008 95.9";rotation = "0 0 -1 70.9729";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "184.989 -52.7951 100.5";rotation = "0 0 1 6.55276";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "197.545 -45.8144 95.3";rotation = "0 0 -1 83.7091";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "182.602 -44.1987 102.5";rotation = "-0.533359 0.598136 0.598131 123.853";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "4";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "182.602 -44.1987 102.5";rotation = "0.533358 -0.598131 0.598138 123.853";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "181.957 -44.1246 100.5";rotation = "0 0 1 6.55276";scale = "0.125 0.999999 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "181.312 -44.0505 102.5";rotation = "-0.621337 -0.554049 -0.554048 116.292";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "4";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "181.312 -44.0505 102.5";rotation = "0.621333 0.55405 -0.554052 116.291";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.709 -44.0961 100.25";rotation = "0.706529 -0.0404483 0.706527 184.632";scale = "0.125 13.3333 80";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "201.578 -46.3785 100.5";rotation = "0 0 1 6.55276";scale = "9.875 13.1667 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "181.806 -44.1169 100.259";rotation = "-0.595582 0.667913 0.446289 136.599";scale = "0.75273 0.173303 4";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "181.685 -44.0912 105";rotation = "0.706529 -0.0404483 0.706527 184.632";scale = "0.125 13.3333 80";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "186.872 -36.4029 100.5";rotation = "0 0 1 6.55276";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "201.91 -46.445 104.35";rotation = "0 0 -1 82.0264";scale = "0.75 0.75 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "204.603 -44.5566 96.3";rotation = "0 0 1 89.0955";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "4";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "198.057 -46.1535 88.98";rotation = "0 0 1 186.553";scale = "0.125 1 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "186.083 -58.156 100.5";rotation = "0 0 1 238.502";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "3";switchRadius = "200";nametoset = "Get Off My Lawn!!!";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "205.756 -47.038 92.73";rotation = "0.0570589 0.996738 0.0570671 90.1866";scale = "0.125 1.33333 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "180.731 -54.8044 100.5";rotation = "0 0 1 6.55276";scale = "0.125 5.83333 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "191.151 -60.0214 100.5";rotation = "0 0 1 96.5526";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "180.731 -54.8044 103.25";rotation = "0 0 1 6.55264";scale = "0.125 5.83333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "199.473 -46.2953 89.15";rotation = "-0.586622 0.809861 1.02657e-06 180";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "201.582 -48.3201 88.98";rotation = "0 0 1 186.553";scale = "2 0.166666 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "201.982 -44.8429 88.98";rotation = "0 0 1 186.553";scale = "2 0.166666 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "197.877 -60.5323 100.49";rotation = "-0.996739 0.057058 0.0570634 90.187";scale = "3.06691 4.27001 0.52";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "183.184 -33.4449 100.5";rotation = "0 0 1 6.55276";scale = "0.125 5.83333 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "188.753 -31.3356 100.55";rotation = "-0.341593 0.939848 1.19134e-06 180";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "205.756 -47.038 88.73";rotation = "0.0570595 0.996739 0.0570656 90.1869";scale = "0.125 1.33333 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "183.184 -33.4449 103.25";rotation = "0 0 1 6.55264";scale = "0.125 5.83333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "188.734 -31.3526 104.7";rotation = "0 0 -1 13.2399";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "200";switchRadius = "25";nametoset = "Panic Room";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "194.567 -30.7432 100.5";rotation = "0 0 1 96.5526";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "205.258 -46.9911 90.828";rotation = "-0.533356 0.598137 0.598133 123.853";scale = "1.25 1.25 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";isSwitchedOff = "1";switchRadius = "200";nametoset = "|WARNING| Sterilize Base";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "205.508 -47.0095 88.98";rotation = "0 0 1 186.553";scale = "0.125 1 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "201.293 -31.254 100.49";rotation = "-0.996739 0.057058 0.0570634 90.187";scale = "3.0206 4.27001 0.52";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "174.562 -23.1436 100.788";rotation = "-0.0404438 -0.706526 0.706531 184.632";scale = "5 0.633333 80";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "199.324 -65.9995 100.5";rotation = "0 0 1 96.5531";scale = "0.125 13.3333 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "180.483 -63.2151 105.25";rotation = "0 0 1 236.554";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "199.324 -65.9995 103.25";rotation = "0 0 1 96.5531";scale = "0.125 13.3333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "207.59 -61.9106 100.5";rotation = "0 0 1 96.5526";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "184.739 -25.2492 105.25";rotation = "0 0 -1 36.6705";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "203.832 -26.7576 100.5";rotation = "0 0 1 96.5531";scale = "0.125 13.3333 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "183.971 -24.217 100.515";rotation = "0.706529 -0.0404512 0.706527 184.632";scale = "4.27 40.0118 40.0469";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "203.832 -26.7576 103.25";rotation = "0 0 1 96.5531";scale = "0.125 13.3333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "210.961 -32.6132 100.5";rotation = "0 0 1 96.5526";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField7";position = "215.801 -49.5323 100.49";rotation = "-0.621336 -0.55405 -0.554049 116.291";scale = "3.01995 4.27001 0.52";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "StationInventory";position = "212.806 -60.6906 100.5";rotation = "0 0 1 141.317";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";nametoset = "Supply";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "215.29 -56.2579 100.5";rotation = "0 0 1 6.55276";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "198.985 -47.0873 125.5";rotation = "0.0569441 0.994733 0.0852291 67.7798";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "199.099 -46.0939 125.5";rotation = "0.0569436 0.994733 0.0852285 67.7798";scale = "0.609759 0.609759 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "199.213 -45.1005 125.5";rotation = "0.0569456 0.994732 0.0852342 67.7803";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "217.173 -39.8657 100.5";rotation = "0 0 1 6.55276";scale = "0.125 4.5 8.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "194.474 -45.8826 127.413";rotation = "0.0570588 0.996739 0.0570623 90.187";scale = "0.0625 2.87863 6";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "203.952 -47.6579 125.5";rotation = "0.0570599 0.996739 0.057064 90.187";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "203.838 -48.6513 125.5";rotation = "0.0570599 0.996739 0.057064 90.187";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.066 -46.6645 125.5";rotation = "0.0570594 0.996739 0.0570635 90.187";scale = "0.609761 0.609759 4.76192";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "198.374 -48.0236 125.5";rotation = "0.0549221 0.959538 0.27617 23.423";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.18 -45.6711 125.5";rotation = "0.0570618 0.996738 0.0570677 90.1875";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.294 -44.6777 125.5";rotation = "0.0570639 0.996738 0.057069 90.187";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "198.83 -44.0499 125.5";rotation = "0.0549247 0.959533 0.276188 23.4231";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "193.308 -42.9799 127.6";rotation = "0.102591 0.994724 1.2609e-06 180";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "216.203 -34.8035 100.55";rotation = "0.477855 0.878439 1.1135e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";nametoset = "Crow's Nest";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "199.545 -48.7872 125.5";rotation = "-0.0111668 -0.195081 0.980724 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "216.133 -34.8434 104.7";rotation = "0 0 1 43.6155";scale = "0.75 0.75 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "200";switchRadius = "5";nametoset = "Crow's Nest";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "200.143 -43.5718 125.5";rotation = "0.0111756 0.195075 0.980725 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "191.771 -45.318 127.538";rotation = "0 0 -1 83.4473";scale = "2.03278 0.166666 5.49998";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "199.485 -49.7926 128";rotation = "0.336831 0.879254 0.336834 97.3518";scale = "0.609756 0.609756 2.71834";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "192.52 -49.7528 127.538";rotation = "0 0 -1 83.4473";scale = "0.125 1 5.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "195.616 -46.7003 127.04";rotation = "0.195079 -0.0111697 0.980724 186.427";scale = "0.638642 0.0833333 7.26458";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "196.553 -48.4675 130.37";rotation = "0.724463 0.646008 -0.24047 149.814";scale = "0.76379 0.166665 7.78188";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "195.852 -44.7143 127.037";rotation = "0.195073 -0.0111718 0.980725 186.427";scale = "0.64292 0.0833333 7.18796";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "200.311 -42.5533 128";rotation = "-0.239424 0.940934 -0.239413 93.4855";scale = "0.609756 0.609756 2.78688";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "194.539 -43.13 127.538";rotation = "0 0 -1 83.4473";scale = "0.787968 0.166666 5.48588";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "193.454 -41.6707 127.538";rotation = "0 0 -1 83.4473";scale = "0.125 0.667057 5.49616";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "203.518 -49.2437 125.5";rotation = "-0.0111668 -0.195081 0.980724 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "201.035 -48.9583 125.5";rotation = "-0.0111668 -0.195081 0.980724 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.117 -44.0283 125.5";rotation = "0.0111756 0.195075 0.980725 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "202.028 -49.0725 125.5";rotation = "-0.0111676 -0.195081 0.980724 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "201.633 -43.743 125.5";rotation = "0.0111756 0.195075 0.980725 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.335 -48.7084 125.5";rotation = "0.195081 -0.01117 0.980724 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.791 -44.7348 125.5";rotation = "0.19508 -0.011176 0.980724 186.427";scale = "0.609756 0.609756 2.61905";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "202.627 -43.8571 125.5";rotation = "0.0111756 0.195075 0.980725 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "221.199 -48.6324 100.5";rotation = "0 0 1 6.55276";scale = "0.125 13 2.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "193.179 -43.9658 130.286";rotation = "0 0 1 186.553";scale = "0.747747 1.70765 0.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "221.199 -48.6324 103.25";rotation = "0 0 1 6.55252";scale = "0.125 13.3333 3";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "194.501 -45.5636 130.41";rotation = "-0.53336 0.598135 -0.598132 236.147";scale = "0.5625 0.0833333 4.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "237.893 -80.7472 100.787";rotation = "-0.533359 0.598132 0.598136 123.852";scale = "5 0.633333 160";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "196.58 -46.6822 130.83";rotation = "-0.53336 0.598135 0.598132 123.853";scale = "0.125 0.166666 7.7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "205.369 -48.7975 128";rotation = "-0.299384 0.90595 -0.299373 95.6496";scale = "0.609756 0.609756 2.355";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.506 -47.2183 125.5";rotation = "0.195073 -0.0111696 0.980725 186.427";scale = "0.609756 0.609759 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "204.62 -46.2249 125.5";rotation = "0.195075 -0.0111717 0.980725 186.427";scale = "0.609756 0.609756 4.76191";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "205.808 -44.8834 128";rotation = "0.385378 0.838431 0.38538 100.044";scale = "0.609756 0.609756 2.355";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "197.129 -44.0945 130.58";rotation = "0 0 1 186.553";scale = "0.125 1.9223 1";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "206.073 -51.3189 130.578";rotation = "0.621335 0.55405 -0.55405 116.291";scale = "0.125 0.333333 27.6";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "206.607 -46.7207 130.33";rotation = "0.0570594 0.996739 0.0570635 90.187";scale = "0.125 2.9406 19.9303";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "201.651 -46.1836 130.58";rotation = "0 0 1 98.7264";scale = "0.5 0.5 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";nametoset = "Supply";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "191.478 -47.8707 130.288";rotation = "-0.426966 -0.380729 -0.820211 94.7827";scale = "1 0.0666667 13.06";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "202.374 -42.0462 130.58";rotation = "0 0 1 186.553";scale = "2.36885 0.166666 1";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "244.75 -21.1403 100.787";rotation = "0.621335 0.554045 -0.554055 116.292";scale = "5 0.633333 160";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "197.1 -44.3429 133.08";rotation = "0 0 1 96.5531";scale = "1.31667 0.166666 2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "206.331 -46.9347 130.58";rotation = "0 0 1 186.553";scale = "0.125 2.7748 1";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "201.116 -50.7494 133.08";rotation = "0 0 1 186.553";scale = "2.49762 0.166666 2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "218.388 -67.3946 105.25";rotation = "0 0 1 147.664";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "201.884 -41.99 133.08";rotation = "0 0 1 96.5531";scale = "0.125 3.15593 2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedmspine";position = "196.679 -45.8145 134.33";rotation = "0.706529 -0.0404512 0.706527 184.632";scale = "0.125 3.09405 19.9248";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "206.359 -46.6804 133.08";rotation = "0 0 1 186.553";scale = "0.125 2.93276 2";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "222.871 -29.3011 105.25";rotation = "0 0 1 61.542";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "233.674 -29.9338 100.787";rotation = "-0.0404438 -0.706526 0.706531 184.632";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.69 -68.3389 100.787";rotation = "0.70653 -0.0404448 0.706527 184.632";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.551 -81.3325 100.5";rotation = "0 0 1 96.5531";scale = "0.125 0.166666 1.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "156.728 -82.0605 100";rotation = "0 0 1 52.4285";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "165.762 -1.43165 100";rotation = "0 0 1 139.594";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "236.532 -90.4051 100.5";rotation = "0 0 1 96.5526";scale = "0.125 0.166666 1.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "237.23 -91.3149 100";rotation = "0 0 -1 40.1862";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "246.572 -10.7354 100";rotation = "0 0 1 231.951";scale = "0.3 0.3 1";team = "1";ownerGUID = "2727198";powerFreq = "4";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "237.893 -80.7472 100.787";rotation = "-0.533361 0.598134 -0.598132 236.147";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "244.75 -21.1403 100.787";rotation = "-0.621334 -0.554055 -0.554047 116.292";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2727198/Buildings/6.cs b/Univ/Data/2727198/Buildings/6.cs new file mode 100644 index 0000000..65a3fbe --- /dev/null +++ b/Univ/Data/2727198/Buildings/6.cs @@ -0,0 +1,29 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Iplop" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "129.716 -14.3665 100.25";rotation = "0.01088 0.707065 0.707065 181.247";scale = "0.125 0.666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "129.716 -14.3665 102.6";rotation = "0.0108826 0.70707 0.70706 181.246";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.143 -8.62691 102.6";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.097 -10.1262 102.6";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.189 -7.12761 102.6";rotation = "-0.589192 -0.571339 -0.571335 118.988";scale = "0.075 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.051 -11.6255 102.6";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "139.999 -5.20892 100.02";rotation = "0.746939 -0.664893 -8.42812e-07 180";scale = "0.75 0.75 0.1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "140.999 -4.45892 103.25";rotation = "-3.33047e-06 3.43372e-13 1 83.3482";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.235 -5.62832 102.6";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "140.004 -5.17864 99.5";rotation = "0 0 1 181.763";scale = "5.25 6.83333 7.5";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.004 -13.1248 102.6";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.449 -15.224 100.25";rotation = "-0.565504 0.583184 0.583183 121.022";scale = "0.125 0.666666 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.282 -4.12904 102.6";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.449 -15.224 102.6";rotation = "-0.565504 0.583184 0.583183 121.022";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.328 -2.62975 102.6";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.374 -1.13046 102.6";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "118.793 -4.09868 100.4";rotation = "0.859623 0.510929 6.47649e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "118.793 -4.09868 100.4";rotation = "-4.61364e-06 1.29423e-13 -1 61.4514";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.42 0.368837 102.6";rotation = "-0.589193 -0.57134 -0.571334 118.987";scale = "0.075 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.466 1.86813 102.6";rotation = "-0.589194 -0.571337 -0.571336 118.988";scale = "0.075 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.512 3.36742 102.6";rotation = "-0.589191 -0.571336 -0.57134 118.987";scale = "0.075 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.558 4.8667 100.25";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.125 0.666666 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.558 4.8667 102.6";rotation = "-0.589192 -0.571347 -0.571328 118.987";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.307 4.50896 100.25";rotation = "-0.999763 0.0153809 0.0153863 90.0134";scale = "0.125 0.666666 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.307 4.50896 102.6";rotation = "-0.999763 0.0153817 0.0153859 90.0134";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "153.918 -8.61364 95";rotation = "0 0 1 176.518";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); \ No newline at end of file diff --git a/Univ/Data/2727198/Buildings/7.cs b/Univ/Data/2727198/Buildings/7.cs new file mode 100644 index 0000000..ff4509d --- /dev/null +++ b/Univ/Data/2727198/Buildings/7.cs @@ -0,0 +1,65 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Iplop" +// Created in mission "flatlandbig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "129.716 25.6335 100.25";rotation = "0.0108784 0.707065 0.707065 181.247";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "129.716 25.6335 102.7";rotation = "0.0108826 0.70707 0.70706 181.246";scale = "0.125 0.0999999 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "130.033 35.9195 102.85";rotation = "0 0 1 214.596";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "136.894 34.6458 100";rotation = "0 0 1 0.401538";scale = "0.5 0.5 0.04";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "123.36 35.2881 100.8";rotation = "-0.589192 -0.571335 -0.57134 118.987";scale = "14 0.3 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "123.36 35.2881 100.25";rotation = "0.589193 0.571339 -0.571335 118.987";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "139.999 34.7911 100.02";rotation = "0.746939 -0.664893 -8.42812e-07 180";scale = "0.75 0.75 0.1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "140.999 -4.45892 103.25";rotation = "-3.33047e-06 3.43372e-13 1 83.3482";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "140.004 34.8214 99.5";rotation = "4.88358e-07 -1.39573e-07 1 181.763";scale = "8.25 10.6667 8";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.328 37.3703 102.75";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.0666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.282 35.871 102.75";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.0666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "125.948 30.0759 97";rotation = "0 0 1 166.657";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.374 38.8695 102.75";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.0666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.235 34.3717 102.75";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.0666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "140.815 37.3986 100";rotation = "0 0 1 94.0046";scale = "0.1 0.1 0.5";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";isSwitchedOff = "1";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.42 40.3688 102.75";rotation = "-0.589193 -0.57134 -0.571334 118.987";scale = "0.075 0.0666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.189 32.8724 102.75";rotation = "-0.589192 -0.571339 -0.571335 118.988";scale = "0.075 0.0666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.466 41.8681 102.75";rotation = "-0.589194 -0.571337 -0.571336 118.988";scale = "0.075 0.0666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.143 31.3731 102.75";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.0666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.512 43.3674 102.75";rotation = "-0.589191 -0.571336 -0.57134 118.987";scale = "0.075 0.0666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "142.492 34.5545 100.02";rotation = "0.998223 0.0595952 7.55423e-08 180";scale = "0.75 0.75 0.1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "6";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "142.492 34.5545 100.4";rotation = "-4.25023e-05 -4.77813e-13 -1 6.83242";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.097 29.8738 102.75";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.0666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.558 44.8667 100.25";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.051 28.3745 102.75";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.0666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.558 44.8667 102.7";rotation = "-0.589192 -0.571347 -0.571328 118.987";scale = "0.125 0.0999999 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.004 26.8752 102.75";rotation = "-0.589194 -0.571339 -0.571334 118.987";scale = "0.075 0.0666666 39";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.449 24.776 100.25";rotation = "-0.565504 0.583184 0.583183 121.022";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.449 24.776 102.7";rotation = "-0.565504 0.583184 0.583183 121.022";scale = "0.125 0.0999999 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "116.236 42.989 100.4";rotation = "-0.638834 0.769345 9.75214e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "116.236 42.989 100.4";rotation = "5.95064e-07 8.67426e-13 1 100.59";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "140.524 51.2131 100.8";rotation = "-0.999763 0.0153838 0.0153838 90.0134";scale = "14 0.3 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";frequency = "4";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "140.524 51.2131 100.25";rotation = "0.999763 -0.0153838 0.0153838 90.0134";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.307 44.509 100.25";rotation = "-0.999763 0.0153808 0.015386 90.0134";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.307 44.509 102.7";rotation = "-0.999763 0.0153817 0.0153859 90.0134";scale = "0.125 0.0999999 40";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "139.537 18.4279 100.8";rotation = "0.0108796 0.707066 0.707063 181.247";scale = "14 0.3 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "139.537 18.4279 100.25";rotation = "-0.0108791 -0.707063 0.707067 181.247";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "153.918 31.3864 95";rotation = "0 0 1 176.518";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "153.98 29.627 97";rotation = "0 0 1 3.4279";scale = "1 1 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "156.647 34.3472 100.8";rotation = "-0.565506 0.583181 0.583184 121.023";scale = "14 0.3 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";frequency = "5";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "156.647 34.3472 100.25";rotation = "-0.565507 0.583183 -0.583181 238.977";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.562 116.45 114.087";rotation = "-0.447221 0.894423 1.13376e-06 180";scale = "0.125 5.66666 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.512 115.55 110.853";rotation = "-0.333337 0.666663 0.666668 143.129";scale = "1 0.166666 18";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "201.262 114.55 111.103";rotation = "0 0 1 217.238";scale = "0.5 0.5 0.01";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.962 119.65 100.603";rotation = "0 0 -1 53.1306";scale = "0.125 3 20";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "201.267 118.723 112.444";rotation = "-0.0593005 0.834347 0.54804 115.422";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "198.273 123.202 113.155";rotation = "0 0 1 51.3449";scale = "0.8 0.8 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";frequency = "5";teleMode = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "198.273 123.202 113.155";rotation = "0.901285 -0.433226 5.49153e-07 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "200.015 121.905 113.155";rotation = "0 0 -1 36.9193";scale = "0.8 0.8 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";frequency = "3";teleMode = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "200.015 121.905 113.155";rotation = "0.948547 0.316637 -4.01366e-07 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.812 119.45 100.353";rotation = "0.666666 0.333338 0.666665 143.13";scale = "0.125 3.33333 20";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.012 126.3 100.603";rotation = "0 0 1 36.8694";scale = "0.125 3.33333 20";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.612 120.6 100.603";rotation = "1.42115e-07 3.08801e-08 1 36.8694";scale = "0.125 3.33333 20";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.212 126.15 110.853";rotation = "-0.688245 0.22941 0.688251 205.841";scale = "0.125 5.66666 8";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "195.085 121.995 112.444";rotation = "0.463876 0.534861 0.706217 174.253";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.812 123.45 110.608";rotation = "4.28528e-08 -4.37854e-07 1 216.869";scale = "4.375 5.83333 6.7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "199.739 118.505 112.444";rotation = "0.834348 0.0592984 0.54804 115.421";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "192.812 128.7 114.087";rotation = "0.316219 0.948686 1.20255e-06 180";scale = "0.125 5.99999 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.612 118.35 110.853";rotation = "-0.688246 0.229408 0.688251 205.841";scale = "0.125 5.66666 8";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.612 118.35 113.953";rotation = "-0.688246 0.229409 0.68825 205.841";scale = "0.075 5.66666 34";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "199.892 123.39 114.103";rotation = "0 0 -1 59.618";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "206.812 118.2 114.103";rotation = "0.316219 0.948686 1.20255e-06 180";scale = "0.125 5.99999 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "201.257 123.616 113.203";rotation = "0 0 1 214.585";scale = "0.8 0.8 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";frequency = "4";teleMode = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "201.257 123.616 113.203";rotation = "0.297248 0.9548 -1.2103e-06 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "199.597 124.993 113.155";rotation = "0 0 1 212.224";scale = "0.8 0.8 1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";frequency = "2";teleMode = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "199.597 124.993 113.155";rotation = "0.277512 0.960722 -1.2178e-06 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "204.757 123.377 112.444";rotation = "0.653559 0.753565 -0.0707132 90.2878";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "202.662 127.25 100.603";rotation = "0 0 -1 53.1304";scale = "0.125 3 20";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.312 125.95 110.853";rotation = "-0.333337 0.666663 0.666668 143.129";scale = "1 0.166666 18";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "208.808 124.676 111.113";rotation = "0.895219 0.445626 5.64871e-07 180";scale = "0.75 0.75 0.1";team = "1";ownerGUID = "2727198";deployed = "1";powerFreq = "2";frequency = "6";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "208.808 124.676 111.503";rotation = "-5.39098e-06 -8.54931e-13 -1 52.9269";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "205.062 130.45 114.087";rotation = "0.894423 0.447221 5.50071e-07 180";scale = "0.125 5.66666 7";team = "1";ownerGUID = "2727198";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2744981/Ranks/CnC4/Saved.Rank b/Univ/Data/2744981/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..c1edc33 --- /dev/null +++ b/Univ/Data/2744981/Ranks/CnC4/Saved.Rank @@ -0,0 +1,18 @@ +//Ranks File For GUID 2744981 +//Created On 2010-12-05, C&C 4 +$Rank::Name[2744981] = "Runningbook"; +$Rank::Rank[2744981, 1] = "Gunnary Private"; +$Rank::XP[2744981, 1] = 1281; +$Rank::Rank[2744981, 2] = "Acolyte"; +$Rank::XP[2744981, 2] = 0; +$Rank::Rank[2744981, 3] = "Raider"; +$Rank::XP[2744981, 3] = 0; +$CNC::Deaths[2744981] = 13; +$CNC::KilledByObj[2744981, DeployedIonControl] = 1; +$CNC::TotalKills[2744981] = 4; +$CNC::Kills[2744981, 2000343] = 1; +$CNC::Kills[2744981, 3206219] = 2; +$CNC::UKills[2744981] = 1; +$CNC::TotalCrawlerDecoms[2744981] = 1; +$CNC::KilledByObj[2744981, ObeliskTurretDeployedBase] = 2; +$CNC::KilledByObj[2744981, SalamanderFireBombTurret] = 1; \ No newline at end of file diff --git a/Univ/Data/2744981/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2744981/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..2029392 --- /dev/null +++ b/Univ/Data/2744981/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,512 @@ +//Ranks & Settings File For GUID 2744981 / Name: Runningbook +//Created On 2010-11-14, Total Warfare Mod 2 3.5 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2744981) { + + new ScriptObject(TWM2Client_2744981) { + + challengeCompletePulsePhaserImage_1 = "1"; + noMoreEXP1cebdd03e0d549faba0c1d80c580b3052ed55331 = "0"; + challengeCompleteM1SniperRifleImage_1 = "1"; + challengeCompletepistolImage_4 = "1"; + noMoreEXP49106f22de9d150fbd5606af00eb16405f8f8184 = "0"; + xpGain784b4659990722bb3d884f1aed98d7cf08812b9a = "86978"; + CGCalls = "0"; + bossDefeatCountStormrider = "1"; + weaponKillsShadowRifleImage = "2"; + challengeCompletepistolImage_5 = "1"; + weaponKillsM1SniperRifleImage = "843"; + xpGainf69989716bc1ba2a39e324d31f6fb9454bc37be4 = "1052"; + challengeCompleteMRXXImage_3 = "1"; + hasMedalSrysly = "1"; + xpGainc709bed61d79462c4b5dbb6925539e9605f5832f = "2644"; + noMoreEXP4748a65e36180e18f5c4b0672b73c1d9ac593a59 = "0"; + challengeCompleteM1700Image_1 = "1"; + challengeCompleteSBomber1 = "1"; + hasMedalBurningNightmare = "1"; + hasMedalTheUltimateHeadshot = "1"; + xpGain6a0c8abf721c54d1168639f7efe996c0de0104eb = "1730"; + hasMedalSerialKiller = "1"; + HarrierCalls = "110"; + noMoreEXP989a54818b11827efca1d1390d0ada2e6c0ba754 = "0"; + hasMedalMySky = "1"; + challengeCompleteM1SniperRifleImage_3 = "1"; + challengeCompleteS3RifleImage_3 = "1"; + bossDefeatCountLordRog = "2"; + xpGaindc639ae21874998a6e776e35d984558db2913f29 = "3744"; + challengeCompleteUAMS1 = "1"; + xpGaineda914a77e55aad7e7c12a57aa7f122fa43d085b = "3821"; + phrase = "Left is the new right."; + xpGain38913e5ddc4b7a9cc22652c7ec793f3010e192f6 = "174184"; + noMoreEXP6a0c8abf721c54d1168639f7efe996c0de0104eb = "0"; + bossDefeatCountCnlWindshear = "1"; + UAVCalls = "11"; + HWCalls = "0"; + challengeCompletepistolImage_2 = "1"; + noMoreEXPa9d045681c3d846473560ec4187625ceb959bd62 = "0"; + name = "Runningbook"; + xpGain5fee0414a8d60335286629d7cd63255d472cda63 = "43162"; + challengeCompleteAirstrike1 = "1"; + hasMedalDailyMax = "1"; + bossDefeatCountYvex = "2"; + xpGaina434f8ec3f83ddad58d113e12223bf37481a2472 = "7550"; + challengeCompleteLD06SavagerImage_2 = "1"; + ZBCalls = "0"; + weaponKillsSA2400Image = "8"; + noMoreEXPa068774bc7f6a582579ce71d6e1655bd3ad290f7 = "0"; + noMoreEXPf69989716bc1ba2a39e324d31f6fb9454bc37be4 = "0"; + bossDefeatCountGhostOfFire = "1"; + hasMedalHonorsC = "1"; + officer = "0"; + weaponKillsRP432Image = "7"; + weaponKillsStingerImage = "4"; + challengeCompletepistolImage_1 = "1"; + weaponKillsflamerImage = "3"; + xpGain4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "164046"; + challengeCompleteAcceptance = "1"; + weaponKillsMRXXImage = "280"; + hasMedalHonorsB = "1"; + noMoreEXPdc639ae21874998a6e776e35d984558db2913f29 = "0"; + xpGainf8edc09906bf08c5b2701b1700d3a037fff559de = "29136"; + weaponKillsNuclearImage = "48"; + challengeCompletePulsePhaserImage_3 = "1"; + challengeComplete15For15 = "1"; + noMoreEXP5fee0414a8d60335286629d7cd63255d472cda63 = "0"; + NapalmHarrierCalls = "6"; + hasMedalRevengeAvoidedAgain = "1"; + noMoreEXP6a7c7eb2feb760bf98217eeee06e9b652947e70e = "0"; + challengeCompleteAirstrike3 = "1"; + weaponKillsSuperChaingunImage = "50"; + rank = "Master General"; + challengeCompleteAngel = "1"; + challengeCompleteHarrier3 = "1"; + challengeCompleteS3RifleImage_5 = "1"; + xpGain4748a65e36180e18f5c4b0672b73c1d9ac593a59 = "97348"; + noMoreEXPc9b1c8e149a084575e67d1204b521967027eeac5 = "0"; + SlthAirstrikeCalls = "102"; + GMCalls = "42"; + weaponKillspistolImage = "528"; + xpGain07e0b2857f554d7fb175dae282e985129316b474 = "75040"; + challengeCompleteIns1 = "1"; + xpGaina551bd7c55ccc51f49b5a3863ebc0a96223288e4 = "919"; + noMoreEXP9002e32633e00c82128b7d12c928b85d2b4d3d7c = "0"; + xpGaindffb981985b108a05767a59d7086fcc040b69ee7 = "22476"; + weaponKillsS3RifleImage = "1006"; + NukeCalls = "7"; + noMoreEXPdffb981985b108a05767a59d7086fcc040b69ee7 = "0"; + challengeCompleteHarrier2 = "1"; + challengeCompleteMRXXImage_1 = "1"; + challengeCompleteVard2 = "1"; + challengeCompleteLifeGiver = "1"; + bossDefeatCountVardison3 = "4"; + weaponKillsM4A1Image = "9"; + hasMedalTheSourceOfAllEvil = "1"; + money = "750214"; + noMoreEXPfdd9330966537889b883c917c248124703b206ee = "0"; + challengeCompletepistolImage_3 = "1"; + hasMedalHonorsA = "1"; + xpGainc9b1c8e149a084575e67d1204b521967027eeac5 = "64"; + noMoreEXPe1502ced42f93bcc2b3d94e1bd6aa4f224827afc = "0"; + challengeCompletePulsePhaserImage_6 = "1"; + hasMedalGamerExcuisite = "1"; + challengeCompleteSBomber2 = "1"; + noMoreEXP4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "0"; + xpGainf97387eb0a60a81f7be6f9f82140426f0b5ba7ef = "102816"; + challengeCompleteS3RifleImage_1 = "1"; + weaponKillsPulsePhaserImage = "2974"; + xpGaina9d045681c3d846473560ec4187625ceb959bd62 = "3748"; + hasMedalSkyFront = "1"; + noMoreEXPa434f8ec3f83ddad58d113e12223bf37481a2472 = "0"; + hasMedalTheLight = "1"; + noMoreEXP91add7cf7886d77002ae84ea77fa577c0db892c1 = "0"; + challengeCompleteLD06SavagerImage_4 = "1"; + millionxp = "1"; + challengeCompleteSBomber3 = "1"; + noMoreEXPfbb5b6b4f8e8fb89a7827ea5778aa61bf1d4deba = "0"; + HeliCalls = "6"; + challengeCompleteS3RifleImage_4 = "1"; + hasMedalInsigniaDefeated = "1"; + weaponKillsALSWPSniperRifleImage = "28"; + xpGainfdd9330966537889b883c917c248124703b206ee = "76072"; + challengeCompleteMilestone25 = "1"; + challengeCompleteM1SniperRifleImage_2 = "1"; + challengeCompleteHarrier1 = "1"; + xpGain49106f22de9d150fbd5606af00eb16405f8f8184 = "198864"; + noMoreEXPeda914a77e55aad7e7c12a57aa7f122fa43d085b = "0"; + noMoreEXPf97387eb0a60a81f7be6f9f82140426f0b5ba7ef = "0"; + noMoreEXPbd48c846517b4b75dc7cd1d86c0fafe33e62e6cb = "0"; + challengeCompleteLD06SavagerImage_1 = "1"; + ArtyCalls = "0"; + bossDefeatCountInsignia = "3"; + vehicleKillsScoutFlyer = "1"; + hasMedalTheNewGeneral = "1"; + hasMedalSurvivor = "1"; + hasMedalThundaStruk = "1"; + hasMedalHarbiend = "1"; + challengeCompleteAirstrike2 = "1"; + noMoreEXPa551bd7c55ccc51f49b5a3863ebc0a96223288e4 = "0"; + noMoreEXP784b4659990722bb3d884f1aed98d7cf08812b9a = "0"; + xp = "457314"; + challengeCompleteNuke1 = "1"; + GunHeliCalls = "0"; + challengeCompleteS3RifleImage_2 = "1"; + noMoreEXPafd65474d446a6dde699343e249c8305bb5c112c = "0"; + noMoreEXPc709bed61d79462c4b5dbb6925539e9605f5832f = "0"; + noMoreEXP38913e5ddc4b7a9cc22652c7ec793f3010e192f6 = "0"; + challengeCompleteMRXXImage_2 = "1"; + weaponKillsLD06SavagerImage = "500"; + noMoreEXPd860ebbfad59517ab665e030b87d44bd614d83a5 = "0"; + bossDefeatCountVengenor = "1"; + rankNumber = "54"; + challengeCompleteVard1 = "1"; + xpGaine1502ced42f93bcc2b3d94e1bd6aa4f224827afc = "109996"; + weaponKillsM1700Image = "1"; + challengeCompletePulsePhaserImage_4 = "1"; + bossDefeatCountGhostOfLightning = "1"; + xpGaind860ebbfad59517ab665e030b87d44bd614d83a5 = "2971"; + xpGain91add7cf7886d77002ae84ea77fa577c0db892c1 = "135"; + gameTime = "5964"; + hasMedalNuclearDawn = "1"; + challengeCompleteLD06SavagerImage_3 = "1"; + AirstrikeCalls = "197"; + challengeCompleteDownBoy = "1"; + weaponKillsG17SniperRifleImage = "3"; + challengeCompletePulsePhaserImage_5 = "1"; + noMoreEXP07e0b2857f554d7fb175dae282e985129316b474 = "0"; + xpGain6a7c7eb2feb760bf98217eeee06e9b652947e70e = "7847"; + xpGainbd48c846517b4b75dc7cd1d86c0fafe33e62e6cb = "43262"; + SatNukeCalls = "188"; + challengeCompleteZoneCapture = "1"; + xpGain20101120 = "118234"; + challengeCompletePulsePhaserImage_2 = "1"; + xpGain9002e32633e00c82128b7d12c928b85d2b4d3d7c = "76111"; + bossDefeatCountShadeLord = "1"; + challengeCompleteLRog1 = "1"; + noMoreEXPf8edc09906bf08c5b2701b1700d3a037fff559de = "0"; + hasMedalExpertSurvivor = "1"; + }; + new ScriptObject(CCD_2744981) { + + ZombieKillCount20120121_0_1 = "167"; + ZombieKillCount20120118__1 = "2"; + totalZombieKillCount20120124 = "72"; + ZombieKillCount20120124_0_4 = "34"; + ZombieKillCount20120121_Model1887Image_9 = "1"; + killstreakCalls20120121_6 = "2"; + ZombieKillCount20120121_PulsePhaserImage_13 = "1"; + ZombieKillCount20120124_MG42Image_1 = "1"; + ZombieKillCount20120121_MRXXImage_4 = "1"; + ZombieKillCount20120121_PulsePhaserImage_9 = "4"; + ZombieKillCount20120118_MRXXImage_1 = "8"; + ZombieKillCount20120121_0_15 = "1"; + totalZombieKillCount20120121 = "264"; + expireDate = "20120131"; + ZombieKillCount20120121_0_11 = "5"; + killstreakCalls20120121_2 = "9"; + ZombieKillCount20120121_MRXXImage_12 = "8"; + ZombieKillCount20120118_S3RifleImage_1 = "12"; + ZombieKillCount20120124__1 = "27"; + ZombieKillCount20120121_0_12 = "14"; + ZombieKillCount20120121_0_9 = "8"; + ZombieKillCount20120118_S3SRifleImage_1 = "4"; + ZombieKillCount20120124_MRXXImage_13 = "1"; + ZombieKillCount20120124_MRXXImage_4 = "2"; + ZombieKillCount20120121_PistolImage_1 = "2"; + ZombieKillCount20120124_MG42Image_4 = "4"; + ZombieKillCount20120121_MRXXImage_15 = "1"; + ZombieKillCount20120121_S3RifleImage_4 = "34"; + ZombieKillCount20120124_S3RifleImage_4 = "20"; + killstreakCalls20120124_2 = "2"; + ZombieKillCount20120121_0_13 = "2"; + ZombieKillCount20120121_PulsePhaserImage_4 = "8"; + killstreakCalls20120118_3 = "1"; + ZombieKillCount20120121_PulsePhaserImage_5 = "2"; + ZombieKillCount20120124_0_12 = "2"; + ZombieKillCount20120124_MRXXImage_2 = "2"; + ZombieKillCount20120118_0_1 = "34"; + ZombieKillCount20120121_S3RifleImage_11 = "5"; + killstreakCalls20120121_8 = "2"; + ZombieKillCount20120124_MRXXImage_12 = "2"; + ZombieKillCount20120124_0_1 = "33"; + ZombieKillCount20120121_MRXXImage_5 = "1"; + ZombieKillCount20120124_0_13 = "1"; + ZombieKillCount20120124__4 = "6"; + ZombieKillCount20120121_0_2 = "17"; + ZombieKillCount20120121_0_5 = "3"; + ZombieKillCount20120121__4 = "4"; + killstreakCalls20120118_4 = "1"; + ZombieKillCount20120121__2 = "6"; + ZombieKillCount20120121_M1700Image_1 = "1"; + ZombieKillCount20120121_0_4 = "47"; + ZombieKillCount20120121_MRXXImage_1 = "2"; + killstreakCalls20120124_8 = "2"; + ZombieKillCount20120121_PulsePhaserImage_12 = "6"; + killstreakCalls20120118_2 = "1"; + ZombieKillCount20120124_RP432Image_1 = "1"; + ZombieKillCount20120118_0_13 = "8"; + ZombieKillCount20120121_S3RifleImage_1 = "53"; + ZombieKillCount20120121_PulsePhaserImage_2 = "8"; + ZombieKillCount20120124_0_2 = "2"; + ZombieKillCount20120124_PulsePhaserImage_1 = "1"; + totalZombieKillCount20120118 = "41"; + ZombieKillCount20120121__1 = "104"; + ZombieKillCount20120121_MRXXImage_13 = "1"; + ZombieKillCount20120121_MRXXImage_9 = "2"; + ZombieKillCount20120118_PulsePhaserImage_1 = "8"; + ZombieKillCount20120121_MRXXImage_2 = "3"; + ZombieKillCount20120124_PulsePhaserImage_4 = "2"; + ZombieKillCount20120124_S3RifleImage_1 = "3"; + killstreakCalls20120124_6 = "2"; + ZombieKillCount20120121_PulsePhaserImage_1 = "5"; + ZombieKillCount20120118_S3RifleImage_13 = "7"; + ZombieKillCount20120121__9 = "1"; + ZombieKillCount20120118_PulsePhaserImage_13 = "1"; + }; + new ScriptObject(ClientSettings2744981) { + + savedperk3 = "Clip Boxes"; + savedstreak3 = "8"; + savedstreak1 = "2"; + savedperk1 = "Advanced Grip"; + savedstreak2 = "6"; + savedperk2 = "No-Infect Armor"; + }; + new ScriptObject(ClientStore2744981) { + + purchasedFalseExplosion = "0"; + purchasedGuardianFlare = "0"; + nextLoto = "0"; + purchasedThunderstorm = "0"; + purchasedFireworks = "0"; + nextSlot = "0"; + purchasedHologram = "0"; + purchasedSpontaneousCombustion = "0"; + }; + new ScriptObject(TWM2Client_2744981) { + + challengeCompletePulsePhaserImage_1 = "1"; + challengeCompleteM1SniperRifleImage_1 = "1"; + challengeCompletepistolImage_4 = "1"; + noMoreEXP49106f22de9d150fbd5606af00eb16405f8f8184 = "0"; + xpGain784b4659990722bb3d884f1aed98d7cf08812b9a = "86978"; + CGCalls = "0"; + bossDefeatCountStormrider = "1"; + weaponKillsShadowRifleImage = "2"; + challengeCompletepistolImage_5 = "1"; + weaponKillsM1SniperRifleImage = "843"; + xpGainf69989716bc1ba2a39e324d31f6fb9454bc37be4 = "1052"; + challengeCompleteMRXXImage_3 = "1"; + hasMedalSrysly = "1"; + xpGainc709bed61d79462c4b5dbb6925539e9605f5832f = "2644"; + noMoreEXP4748a65e36180e18f5c4b0672b73c1d9ac593a59 = "0"; + challengeCompleteM1700Image_1 = "1"; + challengeCompleteSBomber1 = "1"; + hasMedalBurningNightmare = "1"; + hasMedalTheUltimateHeadshot = "1"; + xpGain6a0c8abf721c54d1168639f7efe996c0de0104eb = "1730"; + hasMedalSerialKiller = "1"; + HarrierCalls = "110"; + noMoreEXP989a54818b11827efca1d1390d0ada2e6c0ba754 = "0"; + challengeCompleteM1SniperRifleImage_3 = "1"; + challengeCompleteS3RifleImage_3 = "1"; + bossDefeatCountLordRog = "2"; + xpGaindc639ae21874998a6e776e35d984558db2913f29 = "3744"; + challengeCompleteUAMS1 = "1"; + xpGaineda914a77e55aad7e7c12a57aa7f122fa43d085b = "3821"; + phrase = "Left is the new right."; + xpGain38913e5ddc4b7a9cc22652c7ec793f3010e192f6 = "174184"; + noMoreEXP6a0c8abf721c54d1168639f7efe996c0de0104eb = "0"; + UAVCalls = "11"; + HWCalls = "0"; + challengeCompletepistolImage_2 = "1"; + noMoreEXPa9d045681c3d846473560ec4187625ceb959bd62 = "0"; + name = "Runningbook"; + xpGain5fee0414a8d60335286629d7cd63255d472cda63 = "43162"; + challengeCompleteAirstrike1 = "1"; + hasMedalDailyMax = "1"; + bossDefeatCountYvex = "1"; + xpGaina434f8ec3f83ddad58d113e12223bf37481a2472 = "19810"; + challengeCompleteLD06SavagerImage_2 = "1"; + ZBCalls = "0"; + weaponKillsSA2400Image = "8"; + noMoreEXPa068774bc7f6a582579ce71d6e1655bd3ad290f7 = "0"; + noMoreEXPf69989716bc1ba2a39e324d31f6fb9454bc37be4 = "0"; + bossDefeatCountGhostOfFire = "1"; + hasMedalHonorsC = "1"; + officer = "0"; + weaponKillsRP432Image = "7"; + weaponKillsStingerImage = "4"; + challengeCompletepistolImage_1 = "1"; + weaponKillsflamerImage = "3"; + xpGain4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "164046"; + challengeCompleteAcceptance = "1"; + weaponKillsMRXXImage = "280"; + hasMedalHonorsB = "1"; + noMoreEXPdc639ae21874998a6e776e35d984558db2913f29 = "0"; + weaponKillsNuclearImage = "48"; + challengeCompletePulsePhaserImage_3 = "1"; + challengeComplete15For15 = "1"; + noMoreEXP5fee0414a8d60335286629d7cd63255d472cda63 = "0"; + NapalmHarrierCalls = "6"; + hasMedalRevengeAvoidedAgain = "1"; + noMoreEXP6a7c7eb2feb760bf98217eeee06e9b652947e70e = "0"; + challengeCompleteAirstrike3 = "1"; + weaponKillsSuperChaingunImage = "50"; + rank = "Master General"; + challengeCompleteAngel = "1"; + challengeCompleteHarrier3 = "1"; + challengeCompleteS3RifleImage_5 = "1"; + xpGain4748a65e36180e18f5c4b0672b73c1d9ac593a59 = "97348"; + noMoreEXPc9b1c8e149a084575e67d1204b521967027eeac5 = "0"; + SlthAirstrikeCalls = "95"; + GMCalls = "44"; + weaponKillspistolImage = "528"; + xpGain07e0b2857f554d7fb175dae282e985129316b474 = "75040"; + xpGaina551bd7c55ccc51f49b5a3863ebc0a96223288e4 = "919"; + noMoreEXP9002e32633e00c82128b7d12c928b85d2b4d3d7c = "0"; + xpGaindffb981985b108a05767a59d7086fcc040b69ee7 = "22476"; + weaponKillsS3RifleImage = "1006"; + NukeCalls = "7"; + noMoreEXPdffb981985b108a05767a59d7086fcc040b69ee7 = "0"; + challengeCompleteHarrier2 = "1"; + challengeCompleteMRXXImage_1 = "1"; + challengeCompleteVard2 = "1"; + challengeCompleteGroupBuster = "1"; + challengeCompleteLifeGiver = "1"; + bossDefeatCountVardison3 = "4"; + weaponKillsM4A1Image = "9"; + hasMedalTheSourceOfAllEvil = "1"; + money = "630522"; + noMoreEXPfdd9330966537889b883c917c248124703b206ee = "0"; + challengeCompletepistolImage_3 = "1"; + hasMedalHonorsA = "1"; + xpGainc9b1c8e149a084575e67d1204b521967027eeac5 = "64"; + noMoreEXPe1502ced42f93bcc2b3d94e1bd6aa4f224827afc = "0"; + challengeCompletePulsePhaserImage_6 = "1"; + hasMedalGamerExcuisite = "1"; + challengeCompleteSBomber2 = "1"; + noMoreEXP4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "0"; + challengeCompleteS3RifleImage_1 = "1"; + weaponKillsPulsePhaserImage = "2974"; + xpGaina9d045681c3d846473560ec4187625ceb959bd62 = "3748"; + hasMedalSkyFront = "1"; + noMoreEXPa434f8ec3f83ddad58d113e12223bf37481a2472 = "0"; + noMoreEXP91add7cf7886d77002ae84ea77fa577c0db892c1 = "0"; + challengeCompleteLD06SavagerImage_4 = "1"; + millionxp = "1"; + noMoreEXPfbb5b6b4f8e8fb89a7827ea5778aa61bf1d4deba = "0"; + HeliCalls = "9"; + challengeCompleteS3RifleImage_4 = "1"; + hasMedalInsigniaDefeated = "1"; + weaponKillsALSWPSniperRifleImage = "28"; + xpGainfdd9330966537889b883c917c248124703b206ee = "76072"; + challengeCompleteMilestone25 = "1"; + challengeCompleteM1SniperRifleImage_2 = "1"; + challengeCompleteHarrier1 = "1"; + xpGain49106f22de9d150fbd5606af00eb16405f8f8184 = "198864"; + noMoreEXPeda914a77e55aad7e7c12a57aa7f122fa43d085b = "0"; + noMoreEXPbd48c846517b4b75dc7cd1d86c0fafe33e62e6cb = "0"; + challengeCompleteLD06SavagerImage_1 = "1"; + ArtyCalls = "0"; + bossDefeatCountInsignia = "1"; + vehicleKillsScoutFlyer = "1"; + hasMedalTheNewGeneral = "1"; + hasMedalThundaStruk = "1"; + challengeCompleteAirstrike2 = "1"; + noMoreEXPa551bd7c55ccc51f49b5a3863ebc0a96223288e4 = "0"; + noMoreEXP784b4659990722bb3d884f1aed98d7cf08812b9a = "0"; + xp = "337622"; + challengeCompleteNuke1 = "1"; + GunHeliCalls = "0"; + challengeCompleteS3RifleImage_2 = "1"; + noMoreEXPafd65474d446a6dde699343e249c8305bb5c112c = "0"; + noMoreEXPc709bed61d79462c4b5dbb6925539e9605f5832f = "0"; + noMoreEXP38913e5ddc4b7a9cc22652c7ec793f3010e192f6 = "0"; + challengeCompleteMRXXImage_2 = "1"; + weaponKillsLD06SavagerImage = "500"; + noMoreEXPd860ebbfad59517ab665e030b87d44bd614d83a5 = "0"; + bossDefeatCountVengenor = "1"; + rankNumber = "54"; + challengeCompleteVard1 = "1"; + xpGaine1502ced42f93bcc2b3d94e1bd6aa4f224827afc = "109996"; + weaponKillsM1700Image = "1"; + challengeCompletePulsePhaserImage_4 = "1"; + bossDefeatCountGhostOfLightning = "1"; + xpGaind860ebbfad59517ab665e030b87d44bd614d83a5 = "2971"; + xpGain91add7cf7886d77002ae84ea77fa577c0db892c1 = "135"; + gameTime = "5663"; + hasMedalNuclearDawn = "1"; + challengeCompleteLD06SavagerImage_3 = "1"; + AirstrikeCalls = "187"; + challengeCompleteDownBoy = "1"; + weaponKillsG17SniperRifleImage = "3"; + challengeCompletePulsePhaserImage_5 = "1"; + noMoreEXP07e0b2857f554d7fb175dae282e985129316b474 = "0"; + xpGain6a7c7eb2feb760bf98217eeee06e9b652947e70e = "7847"; + xpGainbd48c846517b4b75dc7cd1d86c0fafe33e62e6cb = "43262"; + SatNukeCalls = "180"; + challengeCompleteZoneCapture = "1"; + xpGain20101120 = "118234"; + challengeCompletePulsePhaserImage_2 = "1"; + xpGain9002e32633e00c82128b7d12c928b85d2b4d3d7c = "76111"; + challengeCompleteLRog1 = "1"; + }; + new ScriptObject(CCD_2744981) { + + ZombieKillCount20120118__1 = "2"; + ZombieKillCount20120118_MRXXImage_1 = "8"; + expireDate = "20120131"; + ZombieKillCount20120118_S3RifleImage_1 = "12"; + ZombieKillCount20120118_S3SRifleImage_1 = "4"; + killstreakCalls20120118_3 = "1"; + ZombieKillCount20120118_0_1 = "34"; + killstreakCalls20120118_4 = "1"; + killstreakCalls20120118_2 = "1"; + ZombieKillCount20120118_0_13 = "8"; + totalZombieKillCount20120118 = "41"; + ZombieKillCount20120118_PulsePhaserImage_1 = "8"; + ZombieKillCount20120118_S3RifleImage_13 = "7"; + ZombieKillCount20120118_PulsePhaserImage_13 = "1"; + }; + new ScriptObject(ClientSettings2744981) { + + savedperk3 = "Clip Boxes"; + savedstreak3 = "8"; + savedstreak1 = "2"; + savedperk1 = "Advanced Grip"; + savedstreak2 = "6"; + savedperk2 = "No-Infect Armor"; + }; + new ScriptObject(CCD_2744981) { + + ZombieKillCount20120119_PulsePhaserImage_1 = "8"; + killstreakCalls20120119_8 = "3"; + expireDate = "20120131"; + ZombieKillCount20120119_0_1 = "173"; + ZombieKillCount20120119_MRXXImage_1 = "23"; + ZombieKillCount20120119_PulsePhaserImage_2 = "1"; + killstreakCalls20120119_2 = "3"; + killstreakCalls20120119_6 = "4"; + totalZombieKillCount20120119 = "193"; + ZombieKillCount20120119_MRXXImage_2 = "1"; + ZombieKillCount20120119_S3RifleImage_1 = "49"; + ZombieKillCount20120119__2 = "18"; + ZombieKillCount20120119_0_2 = "20"; + ZombieKillCount20120119__1 = "93"; + }; + new ScriptObject(ClientSettings2744981) { + + weaponUpgradeS3RifleImage = "Grip"; + weaponUpgradepistolImage = "HSBullets"; + savedperk3 = "Clip Boxes"; + savedstreak3 = "8"; + weaponUpgradePulsePhaserImage = "Phaser Blades"; + weaponUpgradeMRXXImage = "Grip"; + savedstreak1 = "2"; + savedperk1 = "Advanced Grip"; + savedstreak2 = "6"; + savedperk2 = "No-Infect Armor"; + weaponUpgradeM1SniperRifleImage = "Laser"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2763554/Ranks/CnC4/Saved.Rank b/Univ/Data/2763554/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..21bedfc --- /dev/null +++ b/Univ/Data/2763554/Ranks/CnC4/Saved.Rank @@ -0,0 +1,43 @@ +//Ranks File For GUID 2763554 +//Created On 2010-04-02, C&C 4 +$Rank::Name[2763554] = "CoorsLightMan"; +$Rank::Rank[2763554, 1] = "Sergeant"; +$Rank::XP[2763554, 1] = 6162; +$Rank::Rank[2763554, 2] = "Initiate"; +$Rank::XP[2763554, 2] = 2950; +$CNC::Help[2763554, 1] = 0; +$CNC::Deaths[2763554] = 159; +$CNC::KilledByObj[2763554, RifleSoldierArmor] = 3; +$CNC::TotalKills[2763554] = 124; +$CNC::UKills[2763554] = 41; +$CNC::TotalCrawlerDecoms[2763554] = 8; +$CNC::KilledByObj[2763554, GunTurretDeployedBase] = 32; +$CNC::TotalBuildingKills[2763554] = 22; +$CNC::BuildingKills[2763554, "GunTurret"] = 1; +$CNC::KilledByPl[2763554, 2000343] = 30; +$CNC::Kills[2763554, 2000343] = 47; +$CNC::Kills[2763554, 2003098] = 13; +$CNC::KilledByPl[2763554, 2003098] = 4; +$CNC::KilledByObj[2763554, ObeliskTurretDeployedBase] = 14; +$CNC::BuildingKills[2763554, "ObeliskOfLight"] = 1; +$CNC::Kills[2763554, 2148110] = 9; +$CNC::KilledByPl[2763554, 2148110] = 1; +$CNC::Help[2763554, 2] = 0; +$CNC::BuildingKills[2763554, "PowerPlant"] = 3; +$CNC::TotalCrawlerKills[2763554] = 5; +$CNC::CrawlerKills[2763554, 2000343] = 3; +$CNC::TotalBuilds[2763554] = 94; +$CNC::BuildingsBuilt[2763554, "PowerPlant"] = 20; +$CNC::BuildingsBuilt[2763554, "Bunker"] = 73; +$CNC::TotalBuildingLosses[2763554] = 12; +$CNC::BuildingLosses[2763554, "Bunker"] = 9; +$CNC::BuildingKills[2763554, "Bunker"] = 1; +$CNC::KilledByObj[2763554, FlameMortarTurretDeployedBase] = 1; +$CNC::Kills[2763554, 2703588] = 14; +$CNC::CrawlerKills[2763554, 2485526] = 1; +$CNC::BuildingLosses[2763554, "PowerPlant"] = 3; +$CNC::KilledByPl[2763554, 2703588] = 1; +$CNC::KilledByObj[2763554, CrawlerTurretBase] = 1; +$CNC::CrawlerKills[2763554, 2703588] = 1; +$CNC::KilledByObj[2763554, FocusBeamTurretDeployedBase] = 3; +$CNC::KilledByPl[2763554, 2714648] = 4; \ No newline at end of file diff --git a/Univ/Data/2763554/Ranks/Powers/Saved.Dat b/Univ/Data/2763554/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..3bb0afb --- /dev/null +++ b/Univ/Data/2763554/Ranks/Powers/Saved.Dat @@ -0,0 +1,14 @@ +$PowerSave::Level[2763554, 2] = 14; +$PowerSave::SpendPoints[2763554, 2] = 9; +$PowerSave::EXP[2763554, 2] = 1978; +$PowerSave::TopPlPosition[2763554, 2] = 1; +$PowerSave::Class[2763554, 2] = "Phantom"; +$PowerSave::HasPower[2763554, 2, "ShadowStrike"] = 1; +$PowerSave::HasPower[2763554, 2, "ShadowRush"] = 1; +$PowerSave::HasPower[2763554, 2, "Flicker"] = 1; +$PowerSave::HasPower[2763554, 2, "ShadowBomb"] = 1; +$PowerSave::Level[2763554, 1] = 1; +$PowerSave::SpendPoints[2763554, 1] = 1; +$PowerSave::EXP[2763554, 1] = 0; +$PowerSave::TopPlPosition[2763554, 1] = 1; +$PowerSave::Class[2763554, 1] = "Phantom"; \ No newline at end of file diff --git a/Univ/Data/2763554/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2763554/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..64761df --- /dev/null +++ b/Univ/Data/2763554/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,304 @@ +//Ranks & Settings File For GUID 2763554 / Name: CoorsLightMan +//Created On 2010-11-11, Total Warfare Mod 2 3.4 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2763554) { + + new ScriptObject(TWM2Client_2763554) { + + noMoreEXPacc6411866b5c324fa7563f06684d17dd798ec07 = "0"; + challengeCompleteAirstrike1 = "1"; + phrase = "When i\'m not slaying Zombies, I\'m out having a nice refresing CocaCola, \"The crem de le crem of pop\'"; + bossDefeatCountGhostOfLightning = "4"; + xpGaindd7dfcc969fa279e882307c86c4c61faece8aef0 = "544722"; + challengeCompleteS3RifleImage_3 = "1"; + challengeCompletePulsePhaserImage_4 = "1"; + challengeCompleteZoneCapture = "1"; + noMoreEXPd4bc189d30ad198f82d2188bb8e082ed0532d917 = "0"; + noMoreEXPae27473a04462f40846555ef3c15130473191fd1 = "0"; + hasMedalRevengeAvoidedAgain = "1"; + officer = "1"; + challengeCompleteNuke1 = "1"; + xpGain78d85c76473a76f1cbae9cdf07bae11d6363d158 = "7626"; + CGCalls = "0"; + xpGainb15b03eec8e3e613c4d694f6f06bfdf1da1fa937 = "3e+07"; + challengeCompleteABC = "1"; + noMoreEXPb15b03eec8e3e613c4d694f6f06bfdf1da1fa937 = "1"; + challengeCompleteVard3 = "1"; + xpGain092e6e043d7478c5d69cae7658ba713758156a84 = "2098"; + xpGain89cdac08df21a5718f555304b1ff83706f567ff0 = "216"; + noMoreEXP415828c918be6cdc06183a0e62ee2793b28dd66e = "0"; + challengeCompleteR700SniperRifleImage_2 = "1"; + challengeCompleteModel1887Image_1 = "1"; + noMoreEXP163309f7d20e9d13aea1cddbb374e4a5e2fbf87f = "0"; + weaponKillsPg700Image = "1"; + noMoreEXP092e6e043d7478c5d69cae7658ba713758156a84 = "0"; + noMoreEXPb47efe2379f1336e87dd71f87643bb12f14c6659 = "0"; + challengeCompleteR700SniperRifleImage_1 = "1"; + challengeCompleteM1700Image_1 = "1"; + xpGain0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "624018"; + challengeComplete3For5Sabo = "1"; + weaponKillsPulsePhaserImage = "856"; + noMoreEXPdd7dfcc969fa279e882307c86c4c61faece8aef0 = "0"; + noMoreEXP32281e68a0f98a0cf51d82c16856ad68eefd1bae = "0"; + hasMedalHonorsA = "1"; + noMoreEXPbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "0"; + noMoreEXPdc7b9d125155cc301183ae093f3bfe9b8cc3a597 = "0"; + noMoreEXP05ec8a0c6ae6a7005ef78101b3ccc82c5dfedc1a = "0"; + noMoreEXP12450b8e5194422786c5c4fe37d7568f39290898 = "0"; + challengeComplete3For5 = "1"; + noMoreEXP7157524394b5b23795f12ae582a4859a543a7db9 = "0"; + noMoreEXP9d7a38ce97bd188d84124e78647e97cb64a096f6 = "0"; + HarrierCalls = "0"; + noMoreEXPf84cf81cacd074fe1f02819cef3f78be4a0d36d7 = "0"; + weaponKillsPulseSMGImage = "4"; + challengeCompleteModel1887Image_2 = "1"; + challengeCompleteGoldStar = "1"; + bossDefeatCountStormrider = "1"; + name = "CoorsLightMan"; + xpGain56b8f856bcccc3c7bf6dda8db6c8020de1220d7a = "456"; + hasMedalDailyMax = "1"; + bossDefeatCountInsignia = "1"; + xpGaineeb6c2be70a59f303f0728bbe542e6b394262d7e = "231186"; + xpGain05ec8a0c6ae6a7005ef78101b3ccc82c5dfedc1a = "20740"; + rank = "Master Commander"; + SatNukeCalls = "7"; + hasMedalTheSourceOfAllEvil = "1"; + vehicleKillsCentaurVehicle = "8"; + weaponKillsM1700Image = "143"; + challengeCompleteS3RifleImage_2 = "1"; + weaponKillsM1SniperRifleImage = "188"; + challengeCompleteS3RifleImage_4 = "1"; + challengeComplete15For15 = "1"; + xpGaind4bc189d30ad198f82d2188bb8e082ed0532d917 = "25110"; + UAVCalls = "26"; + HWCalls = "0"; + noMoreEXP2dbce9985bacac8a47437cb73c0443ee30ce6d06 = "0"; + xpGain4ab044aba12120725c31fc423e983af15f0e9c2e = "856"; + challengeCompleteYvex1 = "1"; + challengeCompleteLifeGiver = "1"; + noMoreEXPe8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "0"; + bossDefeatCountLordRog = "4"; + ZBCalls = "0"; + noMoreEXP4ab044aba12120725c31fc423e983af15f0e9c2e = "0"; + challengeCompletepistolImage_3 = "1"; + noMoreEXP0242e146cf59a545568a0c91351c7d8a6002d7d7 = "0"; + weaponKillsflamerImage = "52"; + xpGain2b9346e3822872e7eddfa85b58ded002ed025f3a = "11372"; + noMoreEXP57f5ca1160bc629f27c44ac3572f8931ef751903 = "0"; + challengeCompleteFromTheTop = "1"; + challengeCompleteBombDisarmed = "1"; + weaponKillsMiniChaingunImage = "74"; + challengeCompleteM1SniperRifleImage_1 = "1"; + weaponKillsLD06SavagerImage = "35"; + challengeCompleteSimonSays = "1"; + xpGain4f91474409e3b72c7c5cf8b5e59406ea15a3d711 = "98088"; + hasMedalTheUltimateHeadshot = "1"; + hasMedalInsigniaDefeated = "1"; + challengeCompleteHelicopter1 = "1"; + xpGainacc6411866b5c324fa7563f06684d17dd798ec07 = "94016"; + bossDefeatCountVardison3 = "5"; + challengeCompletePulsePhaserImage_2 = "1"; + hasMedalThundaStruk = "1"; + hasMedalSkyFront = "1"; + challengeCompletePulsePhaserImage_3 = "1"; + money = "1.73528e+06"; + weaponKillsModel1887Image = "250"; + noMoreEXP680e7deda563526e500f58036b6375a82134c2b0 = "0"; + hasMedalHonorsB = "1"; + weaponKillsS3SRifleImage = "188"; + xpGain9b2ec2f0ec4e9c63ce96c7d412b8d8808d2adf98 = "271016"; + noMoreEXPbc92bde0fa78008460571f8238edd60056307e7b = "0"; + xpGainb47efe2379f1336e87dd71f87643bb12f14c6659 = "55272"; + xpGainbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "241428"; + noMoreEXP3168ab06a67b7ef06492b6f0c5af4a73283849ef = "0"; + challengeCompletepistolImage_2 = "1"; + challengeCompleteR700SniperRifleImage_3 = "1"; + noMoreEXPb6410fc738b5c91870eea4499330a95635d881b9 = "0"; + SlthAirstrikeCalls = "5"; + GMCalls = "12"; + millionxp = "3"; + NukeCalls = "14"; + noMoreEXPc7412b8fcc6af13f36096bacea1e97d0ab47c3d1 = "0"; + noMoreEXP4bd8c3d3667dbc340a4f2a8ca4bee8a1b2b7a682 = "0"; + xpGain163309f7d20e9d13aea1cddbb374e4a5e2fbf87f = "1860"; + challengeCompleteEpicFailure = "1"; + challengeCompletePulsePhaserImage_1 = "1"; + noMoreEXPaa171914c5459d9cd648a7662536c4a502c1efad = "0"; + noMoreEXP2b9346e3822872e7eddfa85b58ded002ed025f3a = "0"; + weaponKillsMG42Image = "43"; + hasMedalLordraniussFall = "1"; + challengeCompleteM1700Image_2 = "1"; + xpGain0242e146cf59a545568a0c91351c7d8a6002d7d7 = "294"; + weaponKillsSCD343Image = "1"; + noMoreEXPee7c9a49018013a409231982c286cef30e7823cc = "0"; + challengeCompleteNapalmImage_2 = "1"; + bossDefeatCountVengenor = "1"; + weaponKillsSA2400Image = "1"; + rankNumber = "61"; + challengeCompleteNapalmImage_1 = "1"; + noMoreEXPcbe27a8d345d557421b6eb297bdf376ebed6dc24 = "0"; + xp = "875854"; + xpGain9e398d03a689b6c486c63d5ef75b62bab27d59e9 = "4008"; + noMoreEXP89cdac08df21a5718f555304b1ff83706f567ff0 = "0"; + NapalmHarrierCalls = "18"; + weaponKillsspikerImage = "17"; + challengeCompleteVard2 = "1"; + weaponKillspistolImage = "138"; + weaponKillsMRXXImage = "57"; + challengeCompleteMRXXImage_1 = "1"; + noMoreEXP78d85c76473a76f1cbae9cdf07bae11d6363d158 = "0"; + xpGainb6410fc738b5c91870eea4499330a95635d881b9 = "60"; + bossDefeatCountYvex = "4"; + HeliCalls = "26"; + xpGainae27473a04462f40846555ef3c15130473191fd1 = "281184"; + noMoreEXPbd48c846517b4b75dc7cd1d86c0fafe33e62e6cb = "0"; + noMoreEXP38913e5ddc4b7a9cc22652c7ec793f3010e192f6 = "0"; + xpGain2dbce9985bacac8a47437cb73c0443ee30ce6d06 = "526164"; + noMoreEXP2646db8ff95e7e5de90857f46b8fe20458f8efb9 = "0"; + challengeCompleteVard1 = "1"; + hasMedalAboutDamnTime = "1"; + noMoreEXP784b4659990722bb3d884f1aed98d7cf08812b9a = "0"; + noMoreEXP9bb36e48ae146ab8e50eee42d43857bc81c3caca = "0"; + noMoreEXPf4754809ab006cf7a9983d764a86f9c0150b646c = "0"; + challengeCompleteBombDetonated = "1"; + bossDefeatCountGhostOfFire = "4"; + xpGain9bb36e48ae146ab8e50eee42d43857bc81c3caca = "9540"; + noMoreEXP9e398d03a689b6c486c63d5ef75b62bab27d59e9 = "0"; + gameTime = "4466"; + noMoreEXP9b2ec2f0ec4e9c63ce96c7d412b8d8808d2adf98 = "0"; + challengeCompleteAcceptance = "1"; + weaponKillsMp26CMDOImage = "66"; + challengeCompleteMatchSet = "1"; + hasMedalGamerExcuisite = "1"; + hasMedalSrysly = "1"; + xpGain7157524394b5b23795f12ae582a4859a543a7db9 = "180660"; + noMoreEXP24a5f5898db61153fd1ae9ccb7f3dd2b0429ed46 = "0"; + challengeCompleteDownBoy = "1"; + noMoreEXP0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "0"; + noMoreEXPcd4fb8cb681e6fa94738105fc598f65dc1ab5de7 = "0"; + weaponKillsMiniColliderCannonImage = "4"; + hasMedalBurningNightmare = "1"; + ArtyCalls = "1"; + xpGainf84cf81cacd074fe1f02819cef3f78be4a0d36d7 = "15543"; + challengeCompleteLRog1 = "1"; + weaponKillslasergunImage = "1"; + noMoreEXPe24c4c6e15db2f34d8c2575ca552196d52452344 = "0"; + xpGain24a5f5898db61153fd1ae9ccb7f3dd2b0429ed46 = "21000"; + xpGainee7c9a49018013a409231982c286cef30e7823cc = "10196"; + challengeCompleteMiniChaingunImage_1 = "1"; + noMoreEXP4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "0"; + hasMedalNuclearDawn = "1"; + challengeCompleteAngel = "1"; + noMoreEXPeeb6c2be70a59f303f0728bbe542e6b394262d7e = "0"; + GunHeliCalls = "0"; + weaponKillsR700SniperRifleImage = "781"; + weaponKillsALSWPSniperRifleImage = "1"; + noMoreEXP7c002129fba7c117b128edb1f4ef0ce1153a3ea1 = "0"; + challengeCompleteLRog2 = "1"; + xpGain680e7deda563526e500f58036b6375a82134c2b0 = "27168"; + xpGainfa8db70e7f35c186327d98c2421d66a498b44bd6 = "220668"; + challengeCompleteGroupBuster = "1"; + weaponKillsG17SniperRifleImage = "21"; + xpGain7c002129fba7c117b128edb1f4ef0ce1153a3ea1 = "498"; + noMoreEXP56b8f856bcccc3c7bf6dda8db6c8020de1220d7a = "0"; + weaponKillsNapalmImage = "92"; + challengeCompletepistolImage_1 = "1"; + challengeCompleteMilestone25 = "1"; + challengeCompleteNuke2 = "1"; + bossDefeatCountTrebor = "1"; + xpGainaa171914c5459d9cd648a7662536c4a502c1efad = "111608"; + weaponKillsS3RifleImage = "683"; + hasMedalHonorsC = "1"; + noMoreEXPfa8db70e7f35c186327d98c2421d66a498b44bd6 = "0"; + challengeCompleteS3RifleImage_1 = "1"; + noMoreEXP3fff5581ed175894ba62b9644117f99dbb2df614 = "0"; + xpGain4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "87692"; + hasMedalTheNewGeneral = "1"; + xpGaine8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "227520"; + AirstrikeCalls = "43"; + vehicleKillsScoutFlyer = "13"; + xpGain57f5ca1160bc629f27c44ac3572f8931ef751903 = "160288"; + challengeCompleteGOL1 = "1"; + noMoreEXP4f91474409e3b72c7c5cf8b5e59406ea15a3d711 = "0"; + weaponKillsWp400Image = "6"; + challengeCompleteModel1887Image_3 = "1"; + xpGain38913e5ddc4b7a9cc22652c7ec793f3010e192f6 = "107456"; + }; + new ScriptObject(CCD_2763554) { + + expireDate = "20120430"; + }; + new ScriptObject(ClientSettings2763554) { + + savedperk3 = "Ammo Vet"; + savedstreak3 = "14"; + savedperk2 = "Head Guard"; + savedstreak4 = "16"; + savedperk1 = "Double Down"; + savedstreak1 = "6"; + savedstreak2 = "13"; + }; + new ScriptObject(ClientStore2763554) { + + nextLoto = "0"; + purchasedHologram = "0"; + nextSlot = "0"; + purchasedFalseExplosion = "0"; + purchasedFireworks = "1"; + purchasedGuardianFlare = "0"; + purchasedSpontaneousCombustion = "0"; + purchasedThunderstorm = "0"; + }; + new ScriptObject(CCD_2763554) { + + ZombieKillCount20111211_0_1 = "10"; + totalZombieKillCount20111211 = "9"; + ZombieKillCount20111211_flamerImage_1 = "10"; + expireDate = "20111231"; + }; + new ScriptObject(CCD_2763554) { + + totalZombieKillCount20111219 = "63"; + ZombieKillCount20111219_S3RifleImage_1 = "3"; + zombieHeadshots20111219 = "3"; + killstreakCalls20111219_5 = "1"; + ZombieKillCount20111219_0_1 = "64"; + ZombieKillCount20111219_PulsePhaserImage_1 = "61"; + expireDate = "20111231"; + }; + new ScriptObject(ClientSettings2763554) { + + savedperk3 = "Ammo Vet"; + savedstreak3 = "16"; + savedperk2 = "Head Guard"; + savedstreak4 = "17"; + savedperk1 = "Double Down"; + savedstreak1 = "13"; + savedstreak2 = "14"; + }; + new ScriptObject(CCD_2763554) { + + expireDate = "20120331"; + }; + new ScriptObject(CCD_2763554) { + + killstreakCalls20120318_6 = "3"; + ZombieKillCount20120318__1 = "31"; + ZombieKillCount20120318_0_1 = "94"; + totalZombieKillCount20120318 = "98"; + ZombieKillCount20120318_0_2 = "5"; + ZombieKillCount20120318_PulsePhaserImage_1 = "7"; + ZombieKillCount20120318_R700SniperRifleImage_2 = "5"; + ZombieKillCount20120318_R700SniperRifleImage_1 = "56"; + expireDate = "20120331"; + }; + new ScriptObject(CCD_2763554) { + + expireDate = "20120331"; + }; + new ScriptObject(CCD_2763554) { + + expireDate = "20120630"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2771857/Ranks/Powers/Saved.Dat b/Univ/Data/2771857/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..6e2bb79 --- /dev/null +++ b/Univ/Data/2771857/Ranks/Powers/Saved.Dat @@ -0,0 +1,30 @@ +$PowerSave::Level[2771857, 1] = 21; +$PowerSave::SpendPoints[2771857, 1] = 15; +$PowerSave::EXP[2771857, 1] = 13000; +$PowerSave::TopPlPosition[2771857, 1] = 1; +$PowerSave::Class[2771857, 1] = "Demon"; +$PowerSave::HasPower[2771857, 1, "FireBolt"] = 1; +$PowerSave::HasPower[2771857, 1, "FireBolt"] = 1; +$PowerSave::HasPower[2771857, 1, "FireBall1"] = 1; +$PowerSave::HasPower[2771857, 1, "FireBall1"] = 1; +$PowerSave::HasPower[2771857, 1, "EnergyBall1"] = 1; +$PowerSave::HasPower[2771857, 1, "EnergyBall1"] = 1; +$PowerSave::HasPower[2771857, 1, "EnergyDrainer"] = 1; +$PowerSave::HasPower[2771857, 1, "FireBall2"] = 1; +$PowerSave::HasPower[2771857, 1, "FireBall3"] = 1; +$PowerSave::HasPower[2771857, 1, "EleStrike"] = 1; +$PowerSave::Level[2771857, 2] = 14; +$PowerSave::SpendPoints[2771857, 2] = 0; +$PowerSave::EXP[2771857, 2] = 1690; +$PowerSave::TopPlPosition[2771857, 2] = 1; +$PowerSave::Class[2771857, 2] = "Phantom"; +$PowerSave::HasPower[2771857, 2, "ShadowStrike"] = 1; +$PowerSave::HasPower[2771857, 2, "ShadowBomb"] = 1; +$PowerSave::HasPower[2771857, 2, "Flicker"] = 1; +$PowerSave::HasPower[2771857, 2, "ShadowRush"] = 1; +//--- OBJECT WRITE BEGIN --- +new SimSet(ClientData_2771857) { + + eulaAgree = "1"; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2771857/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2771857/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..fe9d892 --- /dev/null +++ b/Univ/Data/2771857/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,131 @@ +//Ranks & Settings File For GUID 2771857 / Name: Xlthuathopec +//Created On 2010-11-20, Total Warfare Mod 2 3.4 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2771857) { + + new ScriptObject(TWM2Client_2771857) { + + challengeCompleteM1SniperRifleImage_2 = "1"; + gameTime = "3287"; + noMoreEXPb83507ec9eb66c5c2ad20c7a9d913e577e3ce341 = "0"; + noMoreEXPc8d602f0119c3e057f98db8a525ca495492398b4 = "0"; + ArtyCalls = "0"; + noMoreEXP12450b8e5194422786c5c4fe37d7568f39290898 = "0"; + weaponKillsM4A1Image = "1"; + challengeCompletespikerImage_1 = "1"; + challengeCompleteBombDetonated = "1"; + GunHeliCalls = "0"; + noMoreEXP3fff5581ed175894ba62b9644117f99dbb2df614 = "0"; + challengeCompleteM1700Image_1 = "1"; + xpGain4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "150752"; + challengeCompleteM1SniperRifleImage_3 = "1"; + xpGain20101120 = "144239"; + AirstrikeCalls = "11"; + challengeCompleteUndefeatable = "1"; + challengeCompletePulsePhaserImage_2 = "1"; + weaponKillsM1700Image = "61"; + challengeComplete3For5Sabo = "1"; + xpGain3fff5581ed175894ba62b9644117f99dbb2df614 = "19554"; + weaponKillspistolImage = "41"; + phrase = "So i herd u liek mudkipz."; + challengeCompleteWp400Image_1 = "1"; + noMoreEXPacc6411866b5c324fa7563f06684d17dd798ec07 = "0"; + hasMedalDailyMax = "1"; + CGCalls = "0"; + challengeComplete3For5 = "1"; + weaponKillsspikerImage = "28"; + challengeCompletepistolImage_1 = "1"; + challengeCompleteMatchSet = "1"; + challengeCompleteZoneCapture = "1"; + challengeCompleteS3RifleImage_2 = "1"; + weaponKillsPulsePhaserImage = "351"; + hasMedalHonorsB = "1"; + challengeCompleteS3RifleImage_1 = "1"; + HarrierCalls = "2"; + officer = "0"; + hasMedalTheUltimateHeadshot = "1"; + noMoreEXP4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "0"; + challengeCompleteM1SniperRifleImage_1 = "1"; + noMoreEXP8fe73260320a28b967b224838a8d18e8b114b893 = "0"; + weaponKillsWp400Image = "197"; + rank = "General"; + noMoreEXP1e84ac41718b17b5c1b99f04a25438aa2536b56e = "0"; + hasMedalGamerExcuisite = "1"; + UAVCalls = "6"; + HWCalls = "0"; + hasMedalInsigniaDefeated = "1"; + name = "Xlthuathopec"; + noMoreEXP092e6e043d7478c5d69cae7658ba713758156a84 = "0"; + ZBCalls = "0"; + challengeCompleteS3RifleImage_3 = "1"; + challengeCompleteVard1 = "1"; + weaponKillsStingerImage = "5"; + weaponKillsM1SniperRifleImage = "795"; + weaponKillsS3RifleImage = "406"; + SatNukeCalls = "2"; + weaponKillslasergunImage = "5"; + challengeCompletePulsePhaserImage_3 = "1"; + money = "102422"; + bossDefeatCountLordRog = "1"; + xpGaincb5f2b6e9942a0fb863208a2a982d96514215537 = "150"; + noMoreEXPb8aa431df9cc0276ff50d4c36ad4db3645aa7954 = "0"; + weaponKillsSuperChaingunImage = "111"; + millionxp = "0"; + challengeCompleteABC = "1"; + hasMedalRevengeAvoidedAgain = "1"; + hasMedalHonorsC = "1"; + bossDefeatCountVardison3 = "2"; + SlthAirstrikeCalls = "0"; + GMCalls = "1"; + noMoreEXPcb5f2b6e9942a0fb863208a2a982d96514215537 = "0"; + xpGain38913e5ddc4b7a9cc22652c7ec793f3010e192f6 = "102368"; + challengeCompleteAcceptance = "1"; + noMoreEXP0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "0"; + challengeCompletePulsePhaserImage_1 = "1"; + NukeCalls = "0"; + weaponKillsG17SniperRifleImage = "15"; + bossDefeatCountInsignia = "1"; + weaponKillsShadowRifleImage = "2"; + weaponKillsMRXXImage = "4"; + weaponKillsMiniChaingunImage = "23"; + weaponKillsModel1887Image = "8"; + xp = "500281"; + xpGainc8d602f0119c3e057f98db8a525ca495492398b4 = "40150"; + noMoreEXP38913e5ddc4b7a9cc22652c7ec793f3010e192f6 = "0"; + xpGain092e6e043d7478c5d69cae7658ba713758156a84 = "20132"; + xpGainb83507ec9eb66c5c2ad20c7a9d913e577e3ce341 = "22936"; + hasMedalTheSourceOfAllEvil = "1"; + challengeCompleteWp400Image_2 = "1"; + HeliCalls = "2"; + weaponKillsPg700Image = "1"; + rankNumber = "49"; + hasMedalSerialKiller = "1"; + }; + new ScriptObject(CCD_2771857) { + + expireDate = "20121031"; + }; + new ScriptObject(ClientSettings2771857) { + + savedstreak1 = "1"; + savedperk3 = "Bandolier"; + savedstreak2 = "3"; + savedstreak3 = "6"; + savedperk2 = "Kevlar Armor"; + savedperk1 = "AP Bullets"; + }; + new ScriptObject(ClientStore2771857) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(CCD_2771857) { + + expireDate = "20120731"; + }; + new ScriptObject(CCD_2771857) { + + expireDate = "20130630"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2786170/Ranks/Powers/Saved.Dat b/Univ/Data/2786170/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..f8f9d8d --- /dev/null +++ b/Univ/Data/2786170/Ranks/Powers/Saved.Dat @@ -0,0 +1,98 @@ +//--- OBJECT WRITE BEGIN --- +new SimSet(ClientData_2786170) { + + eulaAgree = "1"; + + new ScriptObject(classData10_2786170) { + class = "Undecided"; + + spendPoints = "1"; + exp = "0"; + affinity = "0"; + level = "1"; + }; + new ScriptObject(classData1_2786170) { + class = "Witch"; + + hasPowerLightStrike = "1"; + spendPoints = "0"; + exp = "10"; + affinity = "0"; + level = "1"; + }; + new ScriptObject(classData4_2786170) { + class = "Hunter"; + + spendPoints = "0"; + exp = "140"; + affinity = "0"; + hasPowerConcussionBlow = "1"; + hasPowerManaArrow = "1"; + hasPowerSmackback = "1"; + level = "6"; + }; + new ScriptObject(classData3_2786170) { + class = "Phantom"; + + spendPoints = "0"; + exp = "10"; + hasPowerShadowStrike = "1"; + affinity = "0"; + level = "1"; + }; + new ScriptObject(classData5_2786170) { + class = "Undecided"; + + spendPoints = "1"; + exp = "0"; + affinity = "0"; + level = "1"; + }; + new ScriptObject(classData6_2786170) { + class = "Undecided"; + + spendPoints = "1"; + exp = "0"; + affinity = "0"; + level = "1"; + }; + new ScriptObject(classData7_2786170) { + class = "Undecided"; + + spendPoints = "1"; + exp = "0"; + affinity = "0"; + level = "1"; + }; + new ScriptObject(classData8_2786170) { + class = "Undecided"; + + spendPoints = "1"; + exp = "0"; + affinity = "0"; + level = "1"; + }; + new ScriptObject(classData9_2786170) { + class = "Undecided"; + + spendPoints = "1"; + exp = "0"; + affinity = "0"; + level = "1"; + }; + new ScriptObject(classData2_2786170) { + class = "Demon"; + + spendPoints = "15"; + hasPowerEnergyBall2 = "1"; + exp = "2673"; + affinity = "0"; + hasPowerFireBall2 = "1"; + hasPowerEleStrike = "1"; + hasPowerBasicShock = "1"; + hasPowerFireBall3 = "1"; + hasPowerFireBolt = "1"; + level = "22"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2786170/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2786170/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..1822733 --- /dev/null +++ b/Univ/Data/2786170/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,121 @@ +//Ranks & Settings File For GUID 3322673 / Name: zachkillsyouall +//Ranks & Settings File For GUID 3322673 / Name: zachkillsyouall +//Ranks & Settings File For GUID 2786170 / Name: Sleepless-Sniper +//Created On 2012-02-12, Total Warfare Mod 2 3.8 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2786170) { + + new ScriptObject(TWM2Client_2786170) { + + noMoreEXP81861ca26754e4af59e6895da0ec495765f9aabf = "0"; + noMoreEXP93e86de7684617f887b49bb2c9e641690e605192 = "0"; + AirstrikeCalls = "23"; + noMoreEXP5589f316cbe4e261fc3cebada897394611f238ab = "0"; + noMoreEXP070a144fcabd1d9f4390c1c62a4ba3e85b64b142 = "0"; + phrase = "None Set"; + xpGain232efdff56b108c368cbe587f5fd4eac010b95f4 = "16602"; + CGCalls = "0"; + noMoreEXP56a9c12e3f558265ae0a9944d1fa8d47e3ac106c = "0"; + noMoreEXP48c4b4305f2f2c7e3e849602a5dc53ca2b6ddf9e = "0"; + hasMedalHonorsA = "1"; + hasMedalThundaStruk = "1"; + HarrierCalls = "8"; + xpGain43be0ebaf6ea45eb749520ed7c615c00172b92a7 = "10962"; + xpGain5589f316cbe4e261fc3cebada897394611f238ab = "28428"; + noMoreEXPa0655ad1e1b53b9428c8dd7910f46ec0dae117d8 = "0"; + rank = "Colonel Grade I"; + rankNumber = "41"; + hasMedalTheSourceOfAllEvil = "1"; + UAVCalls = "0"; + HWCalls = "0"; + SatNukeCalls = "6"; + xpGain6c40a08c348816c726fb4502aefda7aaa3cbc5f8 = "67356"; + ZBCalls = "0"; + xpGaina0655ad1e1b53b9428c8dd7910f46ec0dae117d8 = "1030"; + noMoreEXPcf2c9dddda893c59031ef5ce5e5a8fff24281047 = "0"; + noMoreEXPf8a9be2d61a36698e4f2b268cdfe294efb364a05 = "0"; + xpGaincf2c9dddda893c59031ef5ce5e5a8fff24281047 = "76"; + bossDefeatCountGhostOfLightning = "1"; + xpGain8bd4ed483d34b517b9dcd7b8e6f0c0f9d04386b0 = "1156"; + money = "130778"; + name = "Sleepless-Sniper"; + GMCalls = "14"; + millionxp = "0"; + SlthAirstrikeCalls = "0"; + NukeCalls = "0"; + hasMedalHonorsB = "1"; + noMoreEXP6a42a414eb8149e050b7ece15dc4294f409ebe03 = "0"; + noMoreEXP43be0ebaf6ea45eb749520ed7c615c00172b92a7 = "0"; + xpGain93e86de7684617f887b49bb2c9e641690e605192 = "3168"; + xp = "130878"; + noMoreEXP232efdff56b108c368cbe587f5fd4eac010b95f4 = "0"; + noMoreEXP8bd4ed483d34b517b9dcd7b8e6f0c0f9d04386b0 = "0"; + HeliCalls = "17"; + officer = "0"; + bossDefeatCountVardison3 = "1"; + xpGain56a9c12e3f558265ae0a9944d1fa8d47e3ac106c = "972"; + gameTime = "1089"; + hasMedalInsigniaDefeated = "1"; + ArtyCalls = "0"; + xpGainf8a9be2d61a36698e4f2b268cdfe294efb364a05 = "1128"; + GunHeliCalls = "0"; + noMoreEXP6c40a08c348816c726fb4502aefda7aaa3cbc5f8 = "0"; + bossDefeatCountInsignia = "1"; + }; + new ScriptObject(CCD_2786170) { + + expireDate = "20140228"; + }; + new ScriptObject(ClientSettings2786170) { + + savedstreak2 = "5"; + savedperk1 = "AP Bullets"; + savedstreak1 = "3"; + savedperk3 = "Bandolier"; + savedperk2 = "No-Infect Armor"; + savedstreak3 = "6"; + }; + new ScriptObject(ClientStore2786170) { + + purchasedFireworks = "0"; + nextSlot = "0"; + purchasedHologram = "0"; + purchasedSpontaneousCombustion = "0"; + purchasedFalseExplosion = "0"; + purchasedGuardianFlare = "0"; + nextLoto = "0"; + purchasedThunderstorm = "0"; + }; + new ScriptObject(CCD_2786170) { + + ZombieKillCount20140214_0_1 = "31"; + killstreakCalls20140214_5 = "1"; + totalZombieKillCount20140214 = "31"; + ZombieKillCount20140214_PulsePhaserImage_1 = "31"; + killstreakCalls20140214_3 = "1"; + expireDate = "20140228"; + }; + new ScriptObject(CCD_2786170) { + + ZombieKillCount20140215_R700SniperRifleImage_1 = "32"; + totalZombieKillCount20140215 = "228"; + killstreakCalls20140215_6 = "6"; + killstreakCalls20140215_3 = "7"; + ZombieKillCount20140215_0_2 = "45"; + ZombieKillCount20140215_SA2400Image_2 = "5"; + ZombieKillCount20140215_MiniChaingunImage_1 = "5"; + ZombieKillCount20140215__2 = "9"; + ZombieKillCount20140215_G41RifleImage_2 = "7"; + killstreakCalls20140215_5 = "6"; + ZombieKillCount20140215_R700SniperRifleImage_2 = "2"; + ZombieKillCount20140215_SA2400Image_1 = "1"; + ZombieKillCount20140215_M1SniperRifleImage_1 = "25"; + ZombieKillCount20140215_0_1 = "184"; + ZombieKillCount20140215_Grenade_1 = "3"; + ZombieKillCount20140215_PulsePhaserImage_2 = "22"; + ZombieKillCount20140215_PulsePhaserImage_1 = "99"; + ZombieKillCount20140215__1 = "19"; + expireDate = "20140228"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2819253/Buildings/1.cs b/Univ/Data/2819253/Buildings/1.cs new file mode 100644 index 0000000..25c0ee7 --- /dev/null +++ b/Univ/Data/2819253/Buildings/1.cs @@ -0,0 +1,255 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "henry700" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "37.6042 -101.456 109.988";rotation = "0 0 1 206.402";scale = "0.52 0.519998 3.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "20.1688 -94.2439 104.241";rotation = "0.647605 0.401519 -0.647603 223.753";scale = "0.125 0.166666 56.1844";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "39.8329 -102.563 112.504";rotation = "0.163624 0.697582 -0.697572 161.414";scale = "2.50813 2.516 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.67717 -119.406 103.979";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 56.1844";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "39.8329 -102.562 110.008";rotation = "-0.697576 0.163623 0.697579 198.586";scale = "0.52 0.519998 3.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "40.9301 -124.006 108.748";rotation = "0.163627 0.697578 0.697576 198.585";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "39.5837 -103.019 112.508";rotation = "0.8499 0.526943 6.67949e-07 180";scale = "0.52 0.519998 3.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "38.8369 -101.259 112.498";rotation = "6.75653e-13 1 -2.84445e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2819253";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.67717 -119.406 102.127";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 56.1844";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "37.1295 -101.243 109.988";rotation = "-0.751903 -0.466179 -0.466175 106.12";scale = "2.52006 1.90199 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "20.1688 -94.2439 101.854";rotation = "0.647605 0.401519 -0.647603 223.753";scale = "0.125 0.166666 56.1844";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "37.1296 -101.242 111.87";rotation = "0.647608 0.401514 0.647604 136.248";scale = "0.52 0.519998 3.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "20.169 -94.244 101.545";rotation = "0.647605 0.401519 -0.647603 223.753";scale = "0.125 0.166666 56.184";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "37.5848 -101.469 109.488";rotation = "0.163628 0.697574 0.697579 198.585";scale = "0.52 0.519998 3.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.677 -119.406 101.248";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 56.1852";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "39.8238 -102.581 110.008";rotation = "0.228364 0.973576 2.31102e-06 180";scale = "2.51994 2.51975 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "44.265 -117.288 104.748";rotation = "0.647605 0.401521 -0.647602 223.753";scale = "1.87501 0.166666 15.0006";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";cankill = "0";canmove = 1;closedscale = "1.87501 0.166666 15.0006";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "3";moving = "open";openedscale = "1.87501 0.166666 0.1";prevscale = "1.87501 0.166666 15.0006";state = "closed";timeout = "0";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "40.9372 -100.319 111.87";rotation = "-0.949138 0.222636 0.222642 92.9893";scale = "0.52 0.519998 2.5198";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "40.9372 -100.32 111.89";rotation = "-0.401517 0.647605 -0.647605 223.753";scale = "2.5198 1.90199 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "40.8189 -124.23 108.498";rotation = "0.228363 0.973576 1.2341e-06 180";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "40.2719 -102.803 110.008";rotation = "0.46618 -0.751897 -0.466184 106.121";scale = "0.52 0.519998 3.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "38.2413 -99.0031 111.89";rotation = "0.849903 0.526939 6.67943e-07 180";scale = "0.52 0.519998 1.902";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.79 -119.741 112.748";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "44.3762 -117.064 108.498";rotation = "0.228363 0.973576 1.2341e-06 180";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "34.104 -133.083 108.748";rotation = "0.466182 -0.751898 -0.46618 106.122";scale = "13.8375 117.994 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.566 -119.63 104.998";rotation = "0 0 1 206.402";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "38.6891 -99.2254 111.87";rotation = "-0.751902 -0.466181 -0.466174 106.121";scale = "0.52 0.519998 3.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "41.1776 -99.8805 111.89";rotation = "0.163631 0.697581 -0.697571 161.414";scale = "2.52021 1.902 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "40.9357 -100.341 110.008";rotation = "0.751897 0.466181 -0.466183 106.121";scale = "0.52 0.519998 2.52016";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "35.7592 -132.213 112.998";rotation = "0 0 1 207.086";scale = "1 1 1";team = "1";ownerGUID = "2819253";powerFreq = "2.13";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "41.1596 -99.8715 111.89";rotation = "0.973574 -0.22837 -2.8948e-07 180";scale = "0.52 0.519998 1.902";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "37.1176 -132.336 107.735";rotation = "0 0 1 206.401";scale = "0.52 0.519998 2.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "46.971 -109.503 120.498";rotation = "0.228363 0.973576 1.2341e-06 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.45483 -119.854 112.748";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.3231 -134.652 112.498";rotation = "-2.12446e-06 -7.08094e-06 1 206.402";scale = "14.7501 1.16559 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "36.8952 -132.784 109.735";rotation = "-0.466184 0.751896 -0.466182 106.122";scale = "0.52 0.519998 1.00807";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.34207 -119.519 112.748";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.7606 -127.676 108.748";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "46.942 -108.999 110.748";rotation = "-0.401519 0.647606 -0.647602 223.753";scale = "0.125 6.49999 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "36.4293 -132.553 108.235";rotation = "0.697578 -0.163627 0.697575 198.585";scale = "1.52 1.14525 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.637 -145.976 104.748";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "46.1805 -122.425 108.998";rotation = "0.228363 0.973576 2.65444e-06 180";scale = "1.875 2.50009 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "36.8952 -132.784 107.735";rotation = "-0.466184 0.751896 -0.466182 106.122";scale = "0.52 0.519998 1.00807";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.78993 -119.741 104.25";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.388 -108.662 120.498";rotation = "0.8499 0.526943 6.67949e-07 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.6371 -145.976 103.991";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "37.0996 -132.327 109.735";rotation = "0.697579 -0.163621 0.697575 198.585";scale = "0.52 0.519998 2.01968";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "51.3179 -120.51 108.748";rotation = "0.751896 0.466182 -0.466184 106.121";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.566 -119.63 100.998";rotation = "0 0 1 206.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "38.9085 -133.225 108.235";rotation = "-0.466183 0.751897 -0.46618 106.121";scale = "1.52 2.01959 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "36.9349 -133.93 108.311";rotation = "0.163624 0.697582 0.697572 198.585";scale = "1 1 1";team = "1";ownerGUID = "2819253";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedCardPack";position = "47.164 -108.551 106.535";rotation = "0.751897 0.466181 -0.466183 106.121";scale = "1 1 1";team = "1";ownerGUID = "2819253";NameHolder = "henry700";GUIDHolder = "2819253";cardColor = "1";CardSetting = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "38.6778 -133.69 107.735";rotation = "0.222628 0.949144 0.222628 92.9894";scale = "0.52 0.519998 2.01969";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.678 -119.406 112.748";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "36.8775 -132.775 110.255";rotation = "0.973577 -0.22836 -4.10253e-06 180";scale = "2.01959 1.16425 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "42.835 -103.174 100.998";rotation = "0 0 -1 63.8097";scale = "1 1 1";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "1.234";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "4.88488 -120.532 112.498";rotation = "-5.04523e-06 -1.68391e-06 1 116.402";scale = "6.45765 7.00088 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "47.4427 -106.211 112.492";rotation = "1.59932e-06 -1.45889e-06 1 206.401";scale = "108.855 117.959 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "36.9339 -132.661 108.255";rotation = "0.973577 -0.22836 -4.10253e-06 180";scale = "2.01959 1.13514 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.6371 -145.976 102.127";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "20.571 -92.8713 108.744";rotation = "-0.751899 -0.466181 -0.466179 106.121";scale = "14.7502 2.50233 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "6.01128 -123.324 112.748";rotation = "-0.401515 0.647606 -0.647605 223.753";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "44.2904 -126.233 104.748";rotation = "0.466182 -0.751894 -0.466187 106.121";scale = "1.875 2.49999 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.78993 -119.741 101.834";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.78993 -119.741 101.536";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "22.4031 -92.1466 112.998";rotation = "0 0 -1 64.0785";scale = "1 1 1";team = "1";ownerGUID = "2819253";powerFreq = "2.13";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "7.79 -119.741 101.248";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "38.891 -133.215 107.735";rotation = "0 0 1 116.401";scale = "0.52 0.519998 2.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "46.971 -109.503 120.998";rotation = "0 0 1 206.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "39.1344 -133.895 109.735";rotation = "-0.466186 0.751893 -0.466183 106.121";scale = "0.52 0.519998 1.0091";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.0702 -118.619 104.748";rotation = "0.163624 0.697582 -0.697572 161.414";scale = "1.87499 2.5 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "38.6687 -133.664 108.235";rotation = "0.697579 -0.163623 0.697575 198.585";scale = "1.52 1.14633 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "49.743 -103.919 112.622";rotation = "0.647606 0.401518 -0.647603 223.753";scale = "0.125 0.166666 10.0909";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.0034 -92.0933 112.498";rotation = "1.61961e-06 2.38166e-06 -1 63.5983";scale = "14.7502 1.1671 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "39.1344 -133.895 107.735";rotation = "-0.466186 0.751893 -0.466183 106.121";scale = "0.52 0.519998 1.0091";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "20.28 -94.02 104.491";rotation = "-0.526944 0.8499 1.07733e-06 180";scale = "0.125 0.166666 6.986";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.912 -66.559 104.741";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 118.002";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.845 -106.29 116.685";rotation = "0.751895 0.466187 -0.466179 106.121";scale = "1.26137 2.542 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.87203 -118.075 112.748";rotation = "0.163627 0.697578 -0.697576 161.415";scale = "0.125 0.166666 7.00034";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "5.56343 -123.102 112.748";rotation = "-0.401523 0.647603 0.647603 136.248";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.443 -111.505 110.748";rotation = "0.949143 -0.222629 0.222629 92.9893";scale = "1.87506 6.49999 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "49.7428 -103.918 106.685";rotation = "0.647606 0.401518 -0.647603 223.753";scale = "2.84351 0.166666 10.0905";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;closedscale = "2.84351 0.166666 10.0905";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";openedscale = "2.84351 0.166666 0.1";prevscale = "2.84351 0.166666 10.0905";state = "closed";timeout = "0";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "30.3291 -64.7803 112.748";rotation = "0.163627 0.697578 -0.697576 161.415";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "65.264 -159.168 124.488";rotation = "0.22836 0.973577 1.21805e-06 180";scale = "79.5195 79.5194 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.417 -102.561 121.248";rotation = "-0.466182 0.751898 -0.46618 106.122";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.082 -109.279 120.748";rotation = "0.163621 0.697576 0.697579 198.586";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "53.913 -112.949 120.748";rotation = "-0.401523 0.647603 0.647603 136.248";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "20.601 -93.912 104.501";rotation = "0.751895 0.466182 -0.466185 106.121";scale = "4.5137 3.51299 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.53 -109.502 121.248";rotation = "0.163625 0.697578 0.697576 198.585";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.0957 -127.563 108.748";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "53.913 -112.95 121.248";rotation = "0.222633 0.949142 0.222631 92.9894";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "48.161 -122.989 100.998";rotation = "0 0 1 97.0149";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "1.23";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "9.939 -90.699 122.007";rotation = "-0.401525 0.647604 -0.6476 223.753";scale = "36.7274 22.019 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "47.4529 -124.921 100.998";rotation = "0 0 1 115.323";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "7.13";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "49.854 -103.695 120.498";rotation = "0.8499 0.526943 6.67949e-07 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "47.442 -106.211 99.498";rotation = "0 0 1 206.401";scale = "15 20 3";team = "1";ownerGUID = "2819253";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "49.204 -120.856 100.998";rotation = "0 0 1 191.228";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "2.13";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.865 -109.389 121.248";rotation = "-0.751896 -0.466182 -0.466183 106.121";scale = "0.125 0.166666 14.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.082 -109.279 123.906";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.417 -102.561 124.329";rotation = "-0.466182 0.751898 -0.46618 106.122";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "49.969 -102.906 110.748";rotation = "-0.401521 0.647607 -0.6476 223.753";scale = "0.253682 6.49999 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.9845 -127.787 100.998";rotation = "0 0 1 206.402";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "49.5391 -124.093 104.748";rotation = "-0.401519 0.647606 -0.647602 223.753";scale = "1.87507 2.5 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.417 -102.561 124.748";rotation = "-0.466182 0.751898 -0.46618 106.122";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.195 -109.614 123.944";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "53.913 -112.95 124.264";rotation = "0.222633 0.949142 0.222631 92.9894";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.195 -109.614 124.748";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.53 -102.339 120.498";rotation = "0.228363 0.973576 1.2341e-06 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "51.5418 -120.621 108.498";rotation = "0.8499 0.526943 6.67949e-07 180";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "22.5 -89.547 104.491";rotation = "-0.526944 0.8499 1.07733e-06 180";scale = "0.125 0.166666 6.986";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "65.263 -159.168 122.008";rotation = "0.163627 0.69758 -0.697573 161.415";scale = "79.5191 22.02 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "52.333 -107.699 120.998";rotation = "0.228366 0.973575 5.65973e-06 180";scale = "13.838 15.0005 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.137 -113.061 120.498";rotation = "-0.526944 0.8499 1.07733e-06 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "52.632 -107.716 121.398";rotation = "-0.528299 0.849058 1.07626e-06 180";scale = "0.1 0.1 0.2";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "1.234";frequency = "20";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "114.632 -368.816 150.338";rotation = "7.04222e-07 -2.28106e-12 1 116.219";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "19.159 -90.576 99.868";rotation = "0.114056 0.486256 0.866341 30.2989";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.173 -123.694 100.248";rotation = "0.466182 -0.751895 -0.466185 106.122";scale = "0.125 0.166666 73.415";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.528 -102.337 120.998";rotation = "0 0 -1 63.5983";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.061 -124.029 122.247";rotation = "0.401517 -0.6476 0.647609 136.246";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.26 -90.591 121.997";rotation = "-0.526949 0.849897 1.07732e-06 180";scale = "0.125 0.166666 43.998";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "52.332 -107.699 124.998";rotation = "0.228364 0.973576 7.99494e-07 180";scale = "2.025 2.7 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "65.05 -159.598 122.488";rotation = "0.163623 0.697576 0.697578 198.585";scale = "79.52 1.55 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "52.75 -108.878 101.398";rotation = "-0.186709 0.982415 1.2453e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "1.234";frequency = "20";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "114.75 -369.978 130.338";rotation = "1.04937e-06 2.65035e-13 1 158.478";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.137 -113.061 120.998";rotation = "0 0 1 116.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.001 -104.341 110.748";rotation = "0.163627 0.697575 0.697578 198.585";scale = "1.87451 6.49999 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.061 -124.029 124.247";rotation = "0.697578 -0.163622 0.697576 198.585";scale = "0.125 0.166666 159";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.139 -109.589 110.748";rotation = "0.751895 0.466182 -0.466185 106.121";scale = "1.87507 6.49999 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.06 -124.029 100.248";rotation = "-0.222627 -0.949144 0.222628 92.9893";scale = "0.125 0.166666 158.997";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.8 -106.01 121.248";rotation = "0.751899 0.466178 -0.466183 106.122";scale = "0.125 0.166666 12.9997";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.47 -105.784 120.748";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.47 -105.784 121.248";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.583 -106.119 120.748";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.022 -112.167 121.248";rotation = "0.949142 -0.22263 0.222634 92.9899";scale = "0.125 0.166666 14.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.248 -112.837 121.248";rotation = "0.647605 0.40152 0.647603 136.247";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "13.464 -83.597 122.007";rotation = "-0.401525 0.647604 -0.6476 223.753";scale = "7.4488 15.611 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.47 -105.784 123.991";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.47 -105.784 124.333";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "29.177 -52.486 122.247";rotation = "0.163627 0.697577 -0.697576 161.415";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.752 -102.448 124.748";rotation = "0.697578 -0.163627 0.697576 198.585";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.248 -112.837 123.961";rotation = "0.647605 0.40152 0.647603 136.247";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.675 -83.713 106.156";rotation = "0.647604 0.401524 -0.647601 223.753";scale = "0.125 0.166666 14.8576";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.248 -112.837 124.298";rotation = "0.647605 0.40152 0.647603 136.247";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.248 -112.837 124.748";rotation = "0.647605 0.40152 0.647603 136.247";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "29.406 -52.588 122.487";rotation = "-0.40152 0.647602 0.647606 136.248";scale = "79.52 1.52 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.694 -105.895 100.998";rotation = "0 0 1 206.402";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.173 -123.694 124.247";rotation = "0.647604 0.401524 0.647602 136.247";scale = "0.125 0.166666 159.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "10.582 -90.483 105.916";rotation = "0.751891 0.466184 -0.46619 106.122";scale = "7.4488 5.92799 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "60.0083 -111.311 110.988";rotation = "0 0 1 206.403";scale = "0.52 0.519998 1.516";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.786 -83.489 121.997";rotation = "-0.526949 0.849897 1.07732e-06 180";scale = "0.125 0.166666 43.998";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "60.6753 -109.968 110.988";rotation = "-0.401514 0.647604 0.647608 136.248";scale = "1.51943 1.516 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.694 -105.895 120.998";rotation = "0 0 1 206.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "61.3519 -111.977 111.008";rotation = "-0.697574 0.163629 0.697579 198.586";scale = "0.52 0.519998 2.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "59.9995 -111.329 110.488";rotation = "0.163632 0.697577 0.697575 198.585";scale = "0.52 0.519998 2.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "61.3518 -111.978 112.504";rotation = "0.163626 0.697579 -0.697574 161.414";scale = "1.51996 1.516 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.284 -123.918 121.997";rotation = "-0.526949 0.849897 1.07732e-06 180";scale = "0.125 0.166666 43.998";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "60.6665 -109.985 110.988";rotation = "0 0 -1 63.5977";scale = "0.52 0.519998 2.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "61.3428 -111.996 111.008";rotation = "0.228366 0.973575 2.74978e-07 180";scale = "1.51987 1.52036 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "61.1863 -111.012 112.498";rotation = "-1.00459e-11 1 3.47584e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2819253";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "61.7997 -112.2 112.508";rotation = "-0.52694 0.849902 1.07733e-06 180";scale = "0.52 0.519998 2.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "60.8797 -109.511 110.872";rotation = "-0.949138 0.222637 0.222641 92.9899";scale = "1.51996 1.63301 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "60.6485 -109.977 110.488";rotation = "-0.751901 -0.46618 -0.466177 106.121";scale = "0.52 0.519998 2.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "61.7909 -112.217 112.504";rotation = "0.751897 0.466179 -0.466184 106.121";scale = "1.51942 1.516 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "61.7909 -112.218 111.008";rotation = "0.466177 -0.751901 -0.46618 106.122";scale = "0.52 0.519998 1.51938";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.284 -123.918 122.497";rotation = "0 0 1 116.401";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "54.767 -97.798 100.998";rotation = "0 0 -1 64.4898";scale = "1 1 1";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "2.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "61.9921 -110.643 110.988";rotation = "0 0 1 26.4022";scale = "0.52 0.519998 2.02";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.9118 -66.5589 104.309";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 50.8296";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.9118 -66.5589 103.945";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 50.8296";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "22.6112 -89.3231 102.051";rotation = "0.466178 -0.751899 -0.466183 106.122";scale = "0.125 0.166666 50.8296";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.9118 -66.5589 101.753";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 50.8296";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.9118 -66.5589 101.248";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 50.8296";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "57.103 -94.714 100.998";rotation = "0 0 -1 61.1392";scale = "1 1 1";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "1.234";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "63.8184 -102.205 100.998";rotation = "0 0 1 115.729";scale = "1 1 1";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "65.545 -99.38 100.998";rotation = "0 0 1 119.455";scale = "1 1 1";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.5466 -145.361 112.498";rotation = "-0.526944 0.8499 1.07733e-06 180";scale = "0.125 0.166666 23";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "59.6063 -81.5352 105.85";rotation = "0 0 1 206.402";scale = "0.52 0.519998 2.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.861 -146.087 104.998";rotation = "0 0 1 206.402";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "14.107 -83.381 122.007";rotation = "0.751891 0.466184 -0.46619 106.122";scale = "34.383 22.019 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "59.5883 -81.5264 107.85";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.52 0.519998 2.0199";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "59.5883 -81.5264 107.87";rotation = "-0.647603 -0.401519 0.647605 136.247";scale = "2.02 2.0199 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "61.3977 -82.4245 105.35";rotation = "-0.401522 0.647605 0.647602 136.247";scale = "0.52 0.519998 2.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.7498 -146.311 112.748";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "74.314 -119.55 108.744";rotation = "0.697577 -0.163626 -0.697577 161.415";scale = "13.8283 118.002 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "61.3797 -82.4156 105.85";rotation = "0 0 1 116.401";scale = "0.52 0.519998 2.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.861 -146.087 100.998";rotation = "0 0 1 206.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "73.1917 -119.933 112.998";rotation = "0 0 1 115.96";scale = "1 1 1";team = "1";ownerGUID = "2819253";powerFreq = "2.13";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.972 -145.863 112.742";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "59.1317 -81.322 107.85";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.52 0.519998 2.00894";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "59.1316 -81.322 105.85";rotation = "-0.751899 -0.466181 -0.466179 106.121";scale = "2.00894 2.02 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "61.3888 -82.4424 108.37";rotation = "0.22836 0.973577 1.21805e-06 180";scale = "2.0199 2.00899 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "59.5974 -81.5532 105.35";rotation = "0.163623 0.697579 0.697575 198.585";scale = "0.52 0.519998 2.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "60.784 -79.34 108.748";rotation = "0.647606 0.401522 -0.647601 223.753";scale = "13.8375 117.991 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.207 -93.016 104.748";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "62.282 -80.6431 105.35";rotation = "-4.31097e-07 -2.50999e-06 1 206.401";scale = "2.02008 2.00894 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.2068 -93.0159 104.336";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 118.002";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "29.177 -52.486 100.248";rotation = "0.647605 0.401521 -0.647602 223.753";scale = "0.125 0.166666 68.7266";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "61.3709 -82.4336 107.85";rotation = "0.647604 0.401524 0.647602 136.247";scale = "0.52 0.519998 2.00895";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.2068 -93.0159 104.014";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 118.002";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "62.269 -80.6242 105.35";rotation = "-0.949143 0.222632 0.222626 92.9893";scale = "0.52 0.519998 2.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "61.3641 -82.447 107.87";rotation = "-0.222628 -0.949144 0.222626 92.9887";scale = "2.02 2.02398 0.52";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "61.0849 -146.198 112.748";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.094 -92.681 112.748";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "61.7321 -80.3689 106.621";rotation = "-0.949143 0.222629 0.222628 92.9895";scale = "1 1 1";team = "1";ownerGUID = "2819253";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.023 -66.335 104.998";rotation = "0 0 1 206.402";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.2068 -93.0159 102.149";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 118.002";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.9722 -145.863 101.832";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "61.763 -148.768 112.498";rotation = "4.82532e-06 6.80324e-07 -1 63.5983";scale = "6.45757 7 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.9722 -145.863 101.569";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.207 -93.016 101.251";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.7991 -66.2238 112.748";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.247 -66.446 104.748";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.0941 -92.6808 104.325";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.2469 -66.4462 103.974";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.8828 -120.33 112.998";rotation = "0.849901 0.526942 -6.29034e-07 180";scale = "14.7502 1.16553 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.023 -66.335 100.998";rotation = "0 0 1 206.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "59.3063 -149.781 112.748";rotation = "-0.401515 0.647606 -0.647605 223.753";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.0941 -92.6808 102.171";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.2469 -66.4462 101.761";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.094 -92.681 101.248";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "61.5607 -77.7703 112.498";rotation = "7.3857e-06 -4.47565e-06 1 26.4014";scale = "14.7501 1.16507 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "65.1615 -82.3623 112.998";rotation = "0 0 1 27.2072";scale = "1 1 1";team = "1";ownerGUID = "2819253";powerFreq = "2.13";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.1342 -66.1111 112.748";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.7763 -151.225 112.748";rotation = "0.949141 -0.222632 0.222637 92.9894";scale = "0.125 0.166666 7.00038";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "33.1209 -63.6543 112.498";rotation = "1.59932e-06 -1.45889e-06 1 206.401";scale = "6.45757 6.99992 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "64.5549 -147.642 112.748";rotation = "0.94914 -0.222636 0.222635 92.9893";scale = "0.125 0.166666 118.002";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "30.5514 -64.3324 112.748";rotation = "0.163627 0.697578 0.697576 198.585";scale = "0.125 0.166666 6.9999";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "36.0256 -62.8634 112.748";rotation = "-0.751898 -0.466182 -0.46618 106.122";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.5778 -62.6411 112.748";rotation = "0.751896 0.466182 -0.466184 106.121";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "100.622 -87.942 122.008";rotation = "-0.401519 0.647606 -0.647602 223.753";scale = "79.5201 22.02 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "65.482 -159.266 122.248";rotation = "0.466182 -0.751896 -0.466184 106.121";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "65.264 -159.168 122.488";rotation = "-0.751895 -0.466183 -0.466184 106.121";scale = "79.5197 1.52 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "65.483 -159.266 124.248";rotation = "0.647603 0.401523 0.647603 136.247";scale = "0.125 0.166666 158.999";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.833 -88.058 100.399";rotation = "0.647606 0.401518 -0.647603 223.753";scale = "0.125 0.166666 159";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "29.396 -52.584 122.008";rotation = "0.949143 -0.222629 0.222629 92.9893";scale = "79.52 22.02 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "65.371 -159.49 122.498";rotation = "0.973576 -0.228365 -2.89474e-07 180";scale = "0.125 0.166666 45";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.72 -87.723 122.248";rotation = "0.751897 0.466185 -0.466179 106.122";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "29.619 -52.158 122.488";rotation = "-0.949139 0.222635 0.222639 92.9893";scale = "79.5096 1.52 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.72 -87.723 124.248";rotation = "0.222633 0.949141 0.222633 92.9893";scale = "0.125 0.166666 158.979";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.72 -87.723 100.399";rotation = "-0.697576 0.163623 0.697579 198.586";scale = "0.125 0.166666 159";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "65.372 -159.49 122.498";rotation = "0 0 1 26.4013";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "29.288 -52.262 121.997";rotation = "0.228363 0.973576 1.2341e-06 180";scale = "0.125 0.166666 43.998";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "29.297 -52.266 122.497";rotation = "0 0 1 206.402";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.318 -92.792 104.998";rotation = "0 0 1 206.402";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.318 -92.792 100.998";rotation = "0 0 1 206.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.5419 -92.9032 112.748";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.4292 -92.5681 112.748";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "89.9987 -91.89 112.998";rotation = "0.973576 -0.228363 -7.32602e-07 180";scale = "6.45743 7.00008 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.5683 -91.2118 112.748";rotation = "-0.949142 0.222629 0.222635 92.9894";scale = "0.125 0.166666 7.00008";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.3206 -89.3204 112.748";rotation = "-0.751898 -0.466182 -0.46618 106.122";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "7.13";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.944 -87.834 121.998";rotation = "0.8499 0.526943 6.67949e-07 180";scale = "0.125 0.166666 43.698";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "100.944 -87.834 122.498";rotation = "0 0 -1 63.5983";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2819253/Buildings/2.cs b/Univ/Data/2819253/Buildings/2.cs new file mode 100644 index 0000000..5702412 --- /dev/null +++ b/Univ/Data/2819253/Buildings/2.cs @@ -0,0 +1,162 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "henry700" +// Created in mission "slapmydashH" +// Construction v0.70 Development Version 1 + +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "-9.418 -430.483 134.876";rotation = "0.751891 0.466184 -0.46619 106.122";scale = "7.4488 5.92799 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.325 -423.713 135.116";rotation = "0.647604 0.401524 -0.647601 223.753";scale = "0.125 0.166666 14.8576";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-9.74 -430.591 150.957";rotation = "-0.526949 0.849897 1.07732e-06 180";scale = "0.125 0.166666 43.998";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-8.274 -428.201 129.208";rotation = "-0.401518 0.647608 -0.647601 223.753";scale = "19.8752 0.166666 19.9979";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";cankill = "1";canmove = 0;closedscale = "19.8752 0.166666 19.9979";hasslided = "0";isdoor = "1";issliding = "0";moving = "open";openedscale = "19.8752 0.166666 0.1";powercontrol = "1";prevscale = "19.8752 0.166666 19.9979";state = "closed";timeout = "0";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.214 -423.489 150.957";rotation = "-0.526949 0.849897 1.07732e-06 180";scale = "0.125 0.166666 43.998";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "-0.841 -430.576 128.828";rotation = "0.114056 0.486256 0.866341 30.2989";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.280001 -434.02 133.451";rotation = "-0.526944 0.8499 1.07733e-06 180";scale = "0.125 0.166666 6.986";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "0.601 -433.912 133.461";rotation = "0.751895 0.466182 -0.466185 106.121";scale = "4.5137 3.51299 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.912 -406.559 133.701";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 118.002";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "1.019 -433.093 137.704";rotation = "0.7519 0.466178 -0.466181 106.121";scale = "108.856 15.014 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "2.5 -429.547 133.451";rotation = "-0.526944 0.8499 1.07733e-06 180";scale = "0.125 0.166666 6.986";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.322 -459.406 141.708";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "1.457 -432.773 141.958";rotation = "0 0 -1 60.6883";scale = "1 1 1";team = "1";ownerGUID = "2819253";powerFreq = "2.13";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "-10.061 -430.699 150.967";rotation = "-0.401525 0.647604 -0.6476 223.753";scale = "36.7274 22.019 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.173 -463.694 129.208";rotation = "0.466182 -0.751895 -0.466185 106.122";scale = "0.125 0.166666 73.415";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.177 -392.486 151.207";rotation = "0.163627 0.697577 -0.697576 161.415";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "-6.536 -423.597 150.967";rotation = "-0.401525 0.647604 -0.6476 223.753";scale = "7.4488 15.611 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.322 -459.406 130.996";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 56.184";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.169001 -434.244 130.505";rotation = "0.647605 0.401519 -0.647603 223.753";scale = "0.125 0.166666 56.184";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.323 -459.406 130.208";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 56.1852";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "-5.893 -423.381 150.967";rotation = "0.751891 0.466184 -0.46619 106.122";scale = "34.383 22.019 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.173 -463.694 153.207";rotation = "0.647604 0.401524 0.647602 136.247";scale = "0.125 0.166666 159.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "4.999 -435.163 141.458";rotation = "6.75653e-13 1 -2.84445e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2819253";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.912 -406.559 131.119";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 50.8296";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.912 -406.559 130.825";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 50.8296";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "2.611 -429.323 130.553";rotation = "0.466178 -0.751899 -0.466183 106.122";scale = "0.125 0.166666 50.8296";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.912 -406.559 130.208";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 50.8296";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.177 -392.486 129.208";rotation = "0.647605 0.401521 -0.647602 223.753";scale = "0.125 0.166666 68.7266";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.434 -459.63 129.958";rotation = "0 0 1 206.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.434 -459.63 133.958";rotation = "0 0 1 206.402";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "14.583 -439.833 141.458";rotation = "4.82532e-06 -2.46134e-06 -1 63.5983";scale = "108.836 60.583 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.023 -406.335 129.958";rotation = "0 0 1 206.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-11.763 -459.404 141.958";rotation = "0 0 -1 109.198";scale = "1 1 1";team = "1";ownerGUID = "2819253";powerFreq = "2.13";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.023 -406.335 133.958";rotation = "0 0 1 206.402";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "14.223 -407.06 141.958";rotation = "0 0 -1 7.33877";scale = "1 1 1";team = "1";ownerGUID = "2819253";powerFreq = "2.13";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.284 -463.918 150.957";rotation = "-0.526949 0.849897 1.07732e-06 180";scale = "0.125 0.166666 43.998";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "22.835 -443.174 129.958";rotation = "0 0 -1 63.8097";scale = "1 1 1";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "1.234";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.288 -392.262 150.957";rotation = "0.228363 0.973576 1.2341e-06 180";scale = "0.125 0.166666 43.998";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "24.458 -444.569 141.458";rotation = "6.75653e-13 1 -2.84445e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2819253";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.284 -463.918 151.457";rotation = "0 0 1 116.401";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "9.396 -392.584 150.968";rotation = "0.949143 -0.222629 0.222629 92.9893";scale = "79.52 22.02 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "27.442 -446.211 128.458";rotation = "0 0 1 206.401";scale = "15 20 3";team = "1";ownerGUID = "2819253";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "9.406 -392.588 151.447";rotation = "-0.40152 0.647602 0.647606 136.248";scale = "79.52 1.52 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "9.619 -392.158 151.448";rotation = "-0.949139 0.222635 0.222639 92.9893";scale = "79.5096 1.52 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCardPack";position = "27.164 -448.551 135.495";rotation = "0.751897 0.466181 -0.466183 106.121";scale = "1 1 1";team = "1";ownerGUID = "2819253";NameHolder = "henry700";GUIDHolder = "2819253";cardColor = "1";CardSetting = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.297 -392.266 151.457";rotation = "0 0 1 206.402";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "29.743 -443.918 135.645";rotation = "0.647606 0.401518 -0.647603 223.753";scale = "2.84351 0.166666 8.4909";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";cankill = "0";canmove = 0;closedscale = "2.84351 0.166666 10.0909";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";openedscale = "2.84351 0.166666 0.1";prevscale = "2.84351 0.166666 8.4909";state = "opened";timeout = "0";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "27.388 -448.662 149.458";rotation = "0.8499 0.526943 6.67949e-07 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "26.942 -448.999 139.708";rotation = "-0.401519 0.647606 -0.647602 223.753";scale = "0.125 6.49999 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "26.971 -449.503 149.458";rotation = "0.228363 0.973576 1.2341e-06 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "29.854 -443.695 149.458";rotation = "0.8499 0.526943 6.67949e-07 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "29.969 -442.906 139.708";rotation = "-0.401521 0.647607 -0.6476 223.753";scale = "0.253682 6.49999 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "30.53 -442.339 149.458";rotation = "0.228363 0.973576 1.2341e-06 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "29.743 -443.919 141.582";rotation = "0.647606 0.401518 -0.647603 223.753";scale = "0.125 0.166666 10.0909";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "28.845 -446.29 145.645";rotation = "0.751895 0.466187 -0.466179 106.121";scale = "1.26137 2.542 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "27.082 -449.279 149.708";rotation = "0.163621 0.697576 0.697579 198.586";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "30.417 -442.561 150.208";rotation = "-0.466182 0.751898 -0.46618 106.122";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "27.53 -449.502 150.208";rotation = "0.163625 0.697578 0.697576 198.585";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "35.192 -417.414 141.958";rotation = "0 0 -1 44.5934";scale = "1 1 1";team = "1";ownerGUID = "2819253";powerFreq = "2.13";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "26.971 -449.503 149.958";rotation = "0 0 1 206.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "30.528 -442.337 149.958";rotation = "0 0 -1 63.5983";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "30.443 -451.505 139.708";rotation = "0.949143 -0.222629 0.222629 92.9893";scale = "1.87506 6.49999 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "27.082 -449.279 152.866";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "30.417 -442.561 153.289";rotation = "-0.466182 0.751898 -0.46618 106.122";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "32.75 -448.878 130.358";rotation = "-0.186709 0.982415 1.2453e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "1.234";frequency = "20";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "114.75 -369.978 130.338";rotation = "1.04937e-06 2.65035e-13 1 158.478";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "12.124 -471.542 138.35";rotation = "0.163625 0.697579 0.697575 198.585";scale = "1 1 1";team = "1";ownerGUID = "2819253";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.001 -444.341 139.708";rotation = "0.163627 0.697575 0.697578 198.585";scale = "1.87451 6.49999 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "30.417 -442.561 153.708";rotation = "-0.466182 0.751898 -0.46618 106.122";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "34.767 -437.798 129.958";rotation = "0 0 -1 64.4898";scale = "1 1 1";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "2.13";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "11.239 -470.542 141.958";rotation = "0 0 1 173.7";scale = "1 1 1";team = "1";ownerGUID = "2819253";powerFreq = "2.13";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "37.103 -434.714 129.958";rotation = "0 0 -1 61.1392";scale = "1 1 1";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "1.234";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "40.637 -485.976 130.952";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.21 -459.741 130.526";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.913 -452.949 149.708";rotation = "-0.401523 0.647603 0.647603 136.248";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.21 -459.741 130.208";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "32.333 -447.699 149.958";rotation = "0.228366 0.973575 5.65973e-06 180";scale = "13.838 15.0005 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "14.104 -473.083 137.708";rotation = "0.466182 -0.751898 -0.46618 106.122";scale = "13.8375 117.994 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "40.637 -485.976 133.708";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "24.669 -463.199 141.958";rotation = "0.228366 0.973575 6.59927e-06 180";scale = "15.5806 52.165 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.47 -445.784 149.708";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.913 -452.95 150.208";rotation = "0.222633 0.949142 0.222631 92.9894";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "27.865 -449.389 150.208";rotation = "-0.751896 -0.466182 -0.466183 106.121";scale = "0.125 0.166666 14.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "36.8 -446.01 150.208";rotation = "0.751899 0.466178 -0.466183 106.122";scale = "0.125 0.166666 12.9997";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "32.632 -447.716 150.358";rotation = "-0.528299 0.849058 1.07626e-06 180";scale = "0.1 0.1 0.2";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "1.234";frequency = "20";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "114.632 -368.816 150.338";rotation = "7.04222e-07 -2.28106e-12 1 116.219";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.47 -445.784 150.208";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "39.933 -419.476 137.782";rotation = "-0.949142 0.222633 0.22263 92.9899";scale = "1 1 1";team = "1";ownerGUID = "2819253";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.21 -459.741 141.708";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "29.204 -460.856 129.958";rotation = "0 0 1 191.228";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "2.13";isSwitchedOff = "1";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "39.672 -432.978 141.958";rotation = "0.228366 0.973575 6.59927e-06 180";scale = "15.5789 48.7974 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "31.921 -447.604 153.458";rotation = "1.12286e-12 1 1.06784e-06 180";scale = "0.2 0.2 0.2";team = "1";ownerGUID = "2819253";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "27.195 -449.614 152.904";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.094 -432.681 131.185";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.247 -406.446 130.924";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.094 -432.681 130.558";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.094 -432.681 130.208";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "40.784 -419.34 137.708";rotation = "0.647606 0.401522 -0.647601 223.753";scale = "13.8375 117.991 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.247 -406.446 133.708";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.913 -452.95 153.224";rotation = "0.222633 0.949142 0.222631 92.9894";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.137 -453.061 149.458";rotation = "-0.526944 0.8499 1.07733e-06 180";scale = "0.125 0.166666 39";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "36.139 -449.589 139.708";rotation = "0.751895 0.466182 -0.466185 106.121";scale = "1.87507 6.49999 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "28.161 -462.989 129.958";rotation = "0 0 1 97.0149";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "1.23";isSwitchedOff = "1";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "27.195 -449.614 153.708";rotation = "0.697577 -0.163628 0.697576 198.585";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.47 -445.784 152.951";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "32.332 -447.699 153.958";rotation = "0.228364 0.973576 7.99494e-07 180";scale = "2.025 2.7 1";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.47 -445.784 153.293";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.694 -445.895 129.958";rotation = "0 0 1 206.402";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "30.752 -442.448 153.708";rotation = "0.697578 -0.163627 0.697576 198.585";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.094 -432.681 141.708";rotation = "0.222634 0.949141 0.222633 92.9893";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "27.449 -464.963 129.958";rotation = "0 0 1 115.967";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "4.24325";isSwitchedOff = "1";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "9.655 -481.48 129.208";rotation = "0.949144 -0.222629 0.222626 92.9893";scale = "19.85 0.166666 18.999";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";cankill = "1";canmove = 0;closedscale = "19.85 0.166666 18.999";hasslided = "0";isdoor = "1";issliding = "0";moving = "open";openedscale = "19.85 0.166666 0.1";powercontrol = "1";prevscale = "19.85 0.166666 18.999";state = "closed";timeout = "0";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "43.332 -441.966 129.958";rotation = "0 0 1 116.757";scale = "1 1 1";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "4.24325";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.022 -452.167 150.208";rotation = "0.949142 -0.22263 0.222634 92.9899";scale = "0.125 0.166666 14.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.583 -446.119 149.708";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.248 -452.837 150.208";rotation = "0.647605 0.40152 0.647603 136.247";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "45.028 -410.283 129.359";rotation = "0.163626 0.697582 -0.697571 161.414";scale = "19.8625 0.166666 20.002";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";cankill = "1";canmove = 0;closedscale = "19.8625 0.166666 20.002";hasslided = "0";isdoor = "1";issliding = "0";moving = "open";openedscale = "19.8625 0.166666 0.1";powercontrol = "1";prevscale = "19.8625 0.166666 20.002";state = "closed";timeout = "0";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.137 -453.061 149.958";rotation = "0 0 1 116.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.694 -445.895 149.958";rotation = "0 0 1 206.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.248 -452.837 152.921";rotation = "0.647605 0.40152 0.647603 136.247";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "45.545 -439.38 129.958";rotation = "0 0 1 119.455";scale = "1 1 1";team = "1";ownerGUID = "2819253";deployed = "1";powerFreq = "1.23";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.248 -452.837 153.258";rotation = "0.647605 0.40152 0.647603 136.247";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.248 -452.837 153.708";rotation = "0.647605 0.40152 0.647603 136.247";scale = "0.125 0.166666 15.0005";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.06 -464.029 129.208";rotation = "-0.222627 -0.949144 0.222628 92.9893";scale = "0.125 0.166666 158.997";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.72 -427.723 129.359";rotation = "-0.697576 0.163623 0.697579 198.586";scale = "0.125 0.166666 159";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.061 -464.029 151.207";rotation = "0.401517 -0.6476 0.647609 136.246";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.061 -464.029 153.207";rotation = "0.697578 -0.163622 0.697576 198.585";scale = "0.125 0.166666 159";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.72 -427.723 151.208";rotation = "0.751897 0.466185 -0.466179 106.122";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "44.119 -454.631 141.458";rotation = "-1.00458e-11 1 3.47585e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2819253";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.72 -427.723 153.208";rotation = "0.222633 0.949141 0.222633 92.9893";scale = "0.125 0.166666 158.979";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "44.813 -454.828 141.458";rotation = "-5.04523e-06 -1.68391e-06 1 116.402";scale = "108.834 40.3952 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "56.519 -453.984 135.004";rotation = "-0.40152 0.647604 0.647604 136.247";scale = "1 1 1";team = "1";ownerGUID = "2819253";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "54.314 -459.55 137.704";rotation = "0.697577 -0.163626 -0.697577 161.415";scale = "13.8283 118.002 0.872";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.207 -433.016 131.153";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.207 -433.016 130.874";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "40.972 -485.863 130.617";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.234";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.207 -433.016 130.211";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.207 -433.016 133.708";rotation = "-0.466181 0.751899 -0.46618 106.122";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "40.972 -485.863 141.702";rotation = "0.647606 0.401518 0.647603 136.247";scale = "0.125 0.166666 118.001";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "50.999 -464.517 141.958";rotation = "0 0 1 92.3625";scale = "1 1 1";team = "1";ownerGUID = "2819253";powerFreq = "2.13";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "41.058 -481.78 141.958";rotation = "0 0 1 119.729";scale = "1 1 1";team = "1";ownerGUID = "2819253";powerFreq = "2.13";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "62.923 -463.572 129.359";rotation = "-0.40152 0.647604 0.647604 136.248";scale = "19.8625 0.166666 18.9999";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";cankill = "1";canmove = 0;closedscale = "19.8625 0.166666 18.9999";hasslided = "0";isdoor = "1";issliding = "0";moving = "open";openedscale = "19.8625 0.166666 0.1";powercontrol = "1";prevscale = "19.8625 0.166666 18.9999";state = "closed";timeout = "0";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "40.861 -486.087 129.958";rotation = "0 0 1 206.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "40.861 -486.087 133.958";rotation = "0 0 1 206.402";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.318 -432.792 129.958";rotation = "0 0 1 206.402";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.318 -432.792 133.958";rotation = "0 0 1 206.402";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "66.536 -433.218 141.958";rotation = "0 0 1 52.7564";scale = "1 1 1";team = "1";ownerGUID = "2819253";powerFreq = "2.13";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.833 -428.058 129.359";rotation = "0.647606 0.401518 -0.647603 223.753";scale = "0.125 0.166666 159";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "4.24325";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.482 -499.266 151.208";rotation = "0.466182 -0.751896 -0.466184 106.121";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.483 -499.266 153.208";rotation = "0.647603 0.401523 0.647603 136.247";scale = "0.125 0.166666 158.999";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.371 -499.49 151.458";rotation = "0.973576 -0.228365 -2.89474e-07 180";scale = "0.125 0.166666 45";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.944 -427.834 150.958";rotation = "0.8499 0.526943 6.67949e-07 180";scale = "0.125 0.166666 43.698";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "45.263 -499.168 150.968";rotation = "0.163627 0.69758 -0.697573 161.415";scale = "79.5191 22.02 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "45.264 -499.168 151.448";rotation = "-0.751895 -0.466183 -0.466184 106.121";scale = "79.5197 1.52 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField4";position = "45.05 -499.598 151.448";rotation = "0.163623 0.697576 0.697578 198.585";scale = "79.52 1.55 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "45.264 -499.168 153.448";rotation = "0.22836 0.973577 1.21805e-06 180";scale = "79.5195 79.5194 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.372 -499.49 151.458";rotation = "0 0 1 26.4013";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "80.622 -427.942 150.968";rotation = "-0.401519 0.647606 -0.647602 223.753";scale = "79.5201 22.02 0.48";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.944 -427.834 151.458";rotation = "0 0 -1 63.5983";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2819253";needsfit = "1";powerFreq = "1.23";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2822979/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2822979/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..9e66232 --- /dev/null +++ b/Univ/Data/2822979/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,143 @@ +//Ranks & Settings File For GUID 2822979 / Name: MasterBlaster10 +//Created On 2011-09-20, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2822979) { + + new ScriptObject(TWM2Client_2822979) { + + UAVCalls = "0"; + HWCalls = "0"; + officer = "4"; + ZBCalls = "0"; + challengeCompletePulsePhaserImage_1 = "1"; + bossDefeatCountVardison3 = "1"; + challengeCompleteTreb1 = "1"; + hasMedalTheSourceOfAllEvil = "1"; + challengeCompleteFromTheTop = "1"; + noMoreEXPe8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "0"; + xpGain3fff5581ed175894ba62b9644117f99dbb2df614 = "96594"; + SatNukeCalls = "12"; + money = "1.29413e+07"; + noMoreEXPbd48c846517b4b75dc7cd1d86c0fafe33e62e6cb = "0"; + name = "MasterBlaster10"; + challengeCompleteCentaur1 = "1"; + xpGain5fee0414a8d60335286629d7cd63255d472cda63 = "86"; + millionxp = "2"; + SlthAirstrikeCalls = "0"; + GMCalls = "34"; + weaponKillsPlasmaTorpedoImage = "3"; + challengeCompleteAirstrike1 = "1"; + weaponKillsS3RifleImage = "397"; + NukeCalls = "0"; + challengeCompletePulsePhaserImage_3 = "1"; + challengeCompletePulsePhaserImage_2 = "1"; + noMoreEXP5be143b521a92037e4ff2c5bdc0d1c925af7e527 = "0"; + hasMedalHarbiend = "1"; + xp = "963012"; + weaponKillsPulseSMGImage = "3"; + hasMedalHonorsA = "1"; + challengeCompleteM1700Image_2 = "1"; + xpGain4f91474409e3b72c7c5cf8b5e59406ea15a3d711 = "770010"; + challengeCompleteM1700Image_1 = "1"; + xpGain5be143b521a92037e4ff2c5bdc0d1c925af7e527 = "979566"; + HeliCalls = "19"; + gameTime = "11015"; + challengeCompleteCentaur2 = "1"; + weaponKillspistolImage = "1"; + bossDefeatCountVengenor = "1"; + ArtyCalls = "25"; + challengeCompleteS3RifleImage_3 = "1"; + bossDefeatCountLordRog = "1"; + noMoreEXP5fee0414a8d60335286629d7cd63255d472cda63 = "0"; + GunHeliCalls = "0"; + rankNumber = "60"; + challengeCompleteAcceptance = "1"; + vehicleKillsScoutFlyer = "2"; + noMoreEXP3fff5581ed175894ba62b9644117f99dbb2df614 = "0"; + challengeCompleteUAMS1 = "1"; + weaponKillsModel1887Image = "1"; + noMoreEXP4f91474409e3b72c7c5cf8b5e59406ea15a3d711 = "0"; + hasMedalGamerExcuisite = "1"; + AirstrikeCalls = "57"; + challengeCompleteEpicFailure = "1"; + weaponKillsDeagleImage = "2"; + challengeCompleteS3RifleImage_2 = "1"; + challengeCompleteSimonSays = "1"; + hasMedalRevengeAvoidedAgain = "1"; + bossDefeatCountCnlWindshear = "2"; + hasMedalTheNewGeneral = "1"; + xpGaine8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "586236"; + hasMedalBurningNightmare = "1"; + bossDefeatCountGhostOfFire = "1"; + challengeCompleteVard1 = "1"; + hasMedalHonorsB = "1"; + challengeCompleteS3RifleImage_1 = "1"; + CGCalls = "0"; + weaponKillsPulsePhaserImage = "1117"; + hasMedalThundaStruk = "1"; + noMoreEXPbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "0"; + weaponKillsM1700Image = "107"; + challengeCompletePulsePhaserImage_4 = "1"; + hasMedalHonorsC = "1"; + HarrierCalls = "0"; + noMoreEXPeeb6c2be70a59f303f0728bbe542e6b394262d7e = "0"; + bossDefeatCountShadeLord = "3"; + xpGaina434f8ec3f83ddad58d113e12223bf37481a2472 = "12010"; + bossDefeatCountTrebor = "2"; + xpGaineeb6c2be70a59f303f0728bbe542e6b394262d7e = "299580"; + rank = "Commander"; + bossDefeatCountGhostOfLightning = "1"; + hasMedalLordraniussFall = "1"; + xpGainbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "180906"; + hasMedalTheLight = "1"; + challengeCompletePulsePhaserImage_5 = "1"; + noMoreEXPa434f8ec3f83ddad58d113e12223bf37481a2472 = "0"; + }; + new ScriptObject(CCD_2822979) { + + expireDate = "20120131"; + }; + new ScriptObject(ClientSettings2822979) { + }; + new ScriptObject(ClientStore2822979) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(CCD_2822979) { + + expireDate = "20111231"; + }; + new ScriptObject(CCD_2822979) { + + expireDate = "20120131"; + }; + new ScriptObject(CCD_2822979) { + + expireDate = "20120131"; + }; + new ScriptObject(CCD_2822979) { + + expireDate = "20120131"; + }; + new ScriptObject(CCD_2822979) { + + successiveStreak20120118_1 = "1"; + successiveStreak20120118_2 = "2"; + successiveStreak20120118_3 = "1"; + totalPlayerKillCount20120118 = "6"; + PlayerKillCount20120118_ = "5"; + PlayerKillCount20120118_PlasmaTorpedoImage = "1"; + successiveStreak20120118_4 = "1"; + expireDate = "20120131"; + }; + new ScriptObject(CCD_2822979) { + + totalZombieKillCount20120118 = "3"; + ZombieKillCount20120118_0_1 = "4"; + ZombieKillCount20120118_S3SRifleImage_1 = "3"; + expireDate = "20120131"; + ZombieKillCount20120118_Mp26CMDOImage_1 = "1"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2850746/Buildings/1.cs b/Univ/Data/2850746/Buildings/1.cs new file mode 100644 index 0000000..a9f9b30 --- /dev/null +++ b/Univ/Data/2850746/Buildings/1.cs @@ -0,0 +1,128 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "UxA Savar" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-218.873 113.201 126";rotation = "0 0 1 73.954";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-231.432 108.533 86";rotation = "0 0 1 114.82";scale = "5 6.66666 80";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-244.025 81.304 96";rotation = "0 0 1 114.82";scale = "10 6.66667 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-251.167 101.219 136";rotation = "0 0 -1 116.681";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "-243.346 58.5787 100";rotation = "0 0 1 112.5";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "-243.466 59.2855 116";rotation = "0 0 1 112.5";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-255.59 42.5842 100.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9952";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-256.043 42.7944 100.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9968";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-256.498 43.0039 101.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9968";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-256.952 43.2138 101.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-262.177 89.699 116";rotation = "0 0 1 114.82";scale = "10.0001 6.66667 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-257.405 43.4238 102.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-257.86 43.6338 102.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-258.314 43.8438 103.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9972";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-258.767 44.0538 103.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9972";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-259.222 44.2633 104.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9972";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-259.676 44.4733 104.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9974";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-260.129 44.6832 105.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9976";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "-251.441 41.0705 100";rotation = "0 0 1 112.5";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-258.863 61.5575 100.5";rotation = "0 0 1 114.378";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-260.584 44.8932 105.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9976";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-261.038 45.1031 106.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9978";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-261.491 45.3131 106.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9978";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "-252.07 40.6789 116";rotation = "0 0 1 112.5";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-260.878 67.0631 101.992";rotation = "-0.954836 0.210105 0.210105 92.6473";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-261.946 45.5231 107.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.998";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-262.4 45.7331 107.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.998";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-258.43 54.9135 100.5";rotation = "0.214899 0.976636 -6.54266e-07 180";scale = "3.75148 6.66676 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-262.853 45.9426 108.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9982";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-263.308 46.1526 108.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9982";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-263.762 46.3625 109.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-264.215 46.5725 109.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-264.67 46.7825 110.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-265.124 46.9925 110.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-261.223 56.3371 100.5";rotation = "0 0 1 114.378";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-265.577 47.202 111.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-266.032 47.412 111.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9986";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-266.486 47.622 112.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9986";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-266.939 47.8319 112.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9988";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-267.394 48.0419 113.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9988";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-267.849 48.2519 113.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.999";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-268.302 48.4614 114.25";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.999";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-268.757 48.6713 114.75";rotation = "0.954836 -0.210108 0.2101 92.6472";scale = "0.125 0.166666 39.9992";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-261.269 67.2439 100.098";rotation = "-0.954836 0.210105 0.210105 92.6473";scale = "0.125 0.166666 39.9994";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-269.211 48.8814 115.25";rotation = "0.954836 -0.210107 0.210103 92.6473";scale = "0.125 0.166666 39.999";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-263.567 51.1547 100.5";rotation = "0 0 1 114.378";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-269.664 49.0912 115.75";rotation = "0.954836 -0.210105 0.210105 92.6473";scale = "0.125 0.166666 39.9996";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-276.133 107.171 116";rotation = "0 0 1 114.82";scale = "5 6.66666 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-268.179 63.196 100.748";rotation = "0.851102 0.525 6.65485e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-268.179 63.196 100.748";rotation = "-4.46941e-06 -2.54431e-13 -1 63.3365";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-265.921 58.3775 135.5";rotation = "0.842545 0.538626 6.82757e-07 180";scale = "4.99992 0.166666 38";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;closedscale = "4.99992 0.166666 38";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "4";moving = "open";openedscale = "4.99992 0.166666 0.1";prevscale = "4.99992 0.166666 38";state = "closed";timeout = "0";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-270.118 49.3012 135.75";rotation = "0.954836 -0.210105 0.210105 92.6473";scale = "0.125 0.166666 39.9992";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-266.199 58.4047 156";rotation = "0 0 1 116.757";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-271.711 93.7873 176";rotation = "0 0 1 77.9858";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-285.892 133.719 96";rotation = "0 0 1 114.82";scale = "5 33.3337 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-278.968 53.3938 116.25";rotation = "0.954836 -0.210105 0.210105 92.6473";scale = "4.99963 0.166666 39.9992";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-282.967 74.5242 100.1";rotation = "0 0 1 204.82";scale = "0.125 0.166666 31.8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-282.663 71.905 116";rotation = "3.42079e-06 -3.96132e-06 1 114.82";scale = "1.24992 0.74995 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-284.138 72.587 108.05";rotation = "-0.741788 -0.474212 -0.474209 106.865";scale = "0.999987 5.29999 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-269.21 26.8458 96";rotation = "0 0 1 114.82";scale = "10 6.66667 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-285.114 75.2418 108.05";rotation = "0.153746 0.698698 0.698701 197.481";scale = "1.00013 5.29999 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-284.856 70.4399 100.1";rotation = "0 0 1 204.82";scale = "0.125 0.166666 31.8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "-285.954 73.4265 99.6";rotation = "0 0 1 204.82";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-284.528 89.0184 136";rotation = "0 0 1 114.82";scale = "5 6.66666 80";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedGravityField1";position = "-283.187 74.4431 100.09";rotation = "0 0 1 204.82";scale = "4.27 4.27 15.92";team = "1";ownerGUID = "2850746";needsfit = "1";velocityMod = "1";gravityMod = "0";appliedForce = "0 0 1000";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-287.052 76.4131 100.1";rotation = "0 0 1 204.82";scale = "0.125 0.166666 31.8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-290.043 124.346 156";rotation = "0 0 1 24.0651";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-287.003 71.1575 108.05";rotation = "0.153746 0.698698 0.698701 197.481";scale = "1.00013 5.29999 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-294.286 115.566 116";rotation = "0 0 1 114.82";scale = "5 6.66666 80";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-283.846 66.668 136";rotation = "0 0 1 114.82";scale = "5 13.3332 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-288.941 72.3288 100.1";rotation = "0 0 1 204.82";scale = "0.125 0.166666 31.8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-287.165 65.448 100.1";rotation = "0 0 1 204.82";scale = "0.125 0.166666 31.8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-286.862 62.829 116.5";rotation = "0.842545 0.538626 1.12645e-06 180";scale = "1.25001 0.750283 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-288.336 63.5108 108.05";rotation = "-0.741788 -0.474212 -0.474209 106.865";scale = "0.999987 5.29999 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-289.312 66.1656 108.05";rotation = "0.153746 0.698698 0.698701 197.481";scale = "1.00013 5.29999 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-288.601 61.1543 116.5";rotation = "0 0 -1 65.1803";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-289.054 61.3637 100.1";rotation = "0 0 1 204.82";scale = "0.125 0.166666 31.8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "-290.152 64.3503 99.6";rotation = "0 0 1 204.82";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedGravityField1";position = "-287.445 65.4145 100.09";rotation = "0 0 1 204.82";scale = "4.27 4.27 15.92";team = "1";ownerGUID = "2850746";needsfit = "1";velocityMod = "1";gravityMod = "0";appliedForce = "-0 -0 -1000";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-291.25 67.3369 100.1";rotation = "0 0 1 204.82";scale = "0.125 0.166666 31.8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-291.201 62.0813 108.05";rotation = "0.153746 0.698698 0.698701 197.481";scale = "1.00013 5.29999 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-293.139 63.2526 100.1";rotation = "0 0 1 204.82";scale = "0.125 0.166666 31.8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-287.362 35.2407 116";rotation = "0 0 1 114.82";scale = "10.0002 6.66667 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-302.681 97.4137 136";rotation = "0 0 1 114.82";scale = "5 6.66666 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-312.439 123.961 116";rotation = "0 0 1 114.82";scale = "5 6.66666 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-290.131 29.3217 136";rotation = "0 0 -1 7.56434";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-281.802 -0.3832 86";rotation = "0 0 1 114.82";scale = "5 6.66666 80";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-311.076 79.2613 99.848";rotation = "-3.91382e-07 -3.38981e-06 1 204.82";scale = "25.0005 33.3333 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-277.051 -13.1305 126";rotation = "0 0 1 155.341";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-301.318 52.713 136";rotation = "0 0 1 114.82";scale = "5 6.66666 80";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-315.983 88.7063 100.348";rotation = "0 0 1 113.944";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "1";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-296.619 39.8504 176";rotation = "0 0 1 146.832";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-318.43 83.9502 100.348";rotation = "0 0 1 114.444";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "1";initialBarrel = "ELFBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-303.396 75.6701 196";rotation = "0 0 1 112.439";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-306.974 87.735 196";rotation = "0 0 1 23.4496";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-311.076 79.2609 156";rotation = "0 0 1 114.82";scale = "5 6.66666 80";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-320.193 79.2081 100.348";rotation = "0 0 1 113.944";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "1";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-320.834 105.809 136";rotation = "0 0 1 114.82";scale = "5 6.66666 80";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-309.713 34.5592 116";rotation = "0 0 1 114.82";scale = "5 6.66666 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-326.891 123.572 136";rotation = "0 0 1 157.972";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-310.492 78.8654 196.4";rotation = "-0.492653 0.870226 1.10309e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-310.492 78.8654 196.4";rotation = "7.39013e-07 6.38022e-13 1 120.97";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-319.471 61.108 136";rotation = "0 0 1 114.82";scale = "5 6.66666 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-325.422 118.601 176";rotation = "0 0 1 14.7926";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-334.789 123.28 116";rotation = "0 0 1 114.82";scale = "9.99998 6.66667 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-317.947 88.2273 195.345";rotation = "-0.411913 0.644333 0.644331 135.225";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-329.229 87.656 136";rotation = "0 0 1 114.82";scale = "5 6.66666 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-314.975 70.3305 196";rotation = "0 0 1 203.834";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-319.828 83.3157 196";rotation = "0 0 -1 67.3741";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-340.35 158.905 86";rotation = "0 0 1 114.82";scale = "5 6.66666 80";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-327.866 42.9553 116";rotation = "0 0 1 114.82";scale = "5 6.66666 80";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-344.989 171.236 126";rotation = "0 0 -1 13.8267";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-343.717 93.736 116";rotation = "-0.377635 0.925954 1.17373e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-337.624 69.5034 136";rotation = "0 0 1 114.82";scale = "5 6.66666 80";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-347.382 96.0512 116";rotation = "0 0 1 114.82";scale = "5 6.66666 80";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-331.635 34.4574 156";rotation = "0 0 1 203.005";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-336.261 24.8025 96";rotation = "0 0 1 114.82";scale = "5 33.3337 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-346.019 51.3496 116";rotation = "0 0 1 114.82";scale = "5 6.66666 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-356.116 100.212 156";rotation = "0 0 -1 64.1879";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-365.535 104.447 96";rotation = "0 0 1 114.82";scale = "25 6.66667 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-350.566 64.7467 176";rotation = "0 0 -1 111.127";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "MortarBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-359.974 68.8215 116";rotation = "0 0 1 114.82";scale = "10 6.66667 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-367.038 58.8857 136";rotation = "0 0 1 64.055";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-390.72 49.9883 86";rotation = "0 0 1 114.82";scale = "5 6.66666 80";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-403.19 45.3371 126";rotation = "0 0 -1 113.528";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); \ No newline at end of file diff --git a/Univ/Data/2850746/Buildings/2.cs b/Univ/Data/2850746/Buildings/2.cs new file mode 100644 index 0000000..ab32fd8 --- /dev/null +++ b/Univ/Data/2850746/Buildings/2.cs @@ -0,0 +1,189 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "UxA Savar" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedDecoration11";position = "147.08 101.512 100.419";rotation = "0.276689 -0.954679 0.109683 90.6975";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "239.187 151.351 99.3499";rotation = "-0.69311 -0.197978 0.693111 157.603";scale = "0.375 40.0003 199.998";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "254.872 64.6608 102.75";rotation = "0.200469 -0.95897 -0.20047 92.3997";scale = "10.1475 23.0002 0.872";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration11";position = "228.407 114.767 101.803";rotation = "0.706021 -0.0552813 0.706029 186.327";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "260.352 60.236 102.748";rotation = "-0.146228 0.699505 0.699507 163.361";scale = "10.1466 10.992 0.872";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "257.221 75.5108 102.75";rotation = "0.699509 0.146229 -0.699503 196.639";scale = "10.1475 59 0.872";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "252.437 150.172 100.761";rotation = "0.833772 -0.459063 -0.306733 238.246";scale = "0.125 0.166666 6.99968";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.545 153.115 100.75";rotation = "0.808329 0.234284 -0.540106 197.794";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree4";position = "286.282 81.3273 100";rotation = "0 0 1 99.9359";scale = "3 3 3";team = "1";ownerGUID = "2850746";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "248.401 156.503 100.75";rotation = "0.808329 0.234284 -0.540106 197.794";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "249.422 150.334 99.7414";rotation = "0.548504 0.15898 0.820895 153.234";scale = "0.125 1 5.32632";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "249.472 154.809 100.75";rotation = "-0.273689 0.944273 -0.182874 115.501";scale = "0.125 1.16955 5.26748";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "246.345 159.753 100.75";rotation = "0.808329 0.234284 -0.540106 197.794";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "258.317 141.301 105.364";rotation = "0.482311 0.876 1.11041e-06 180";scale = "5.17785 0.166666 8.726";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "245.334 156.838 99.7512";rotation = "0.548504 0.15898 0.820895 153.234";scale = "0.125 1.11517 5.21388";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "263.997 132.344 121";rotation = "0 0 -1 32.3272";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "263.997 132.344 122";rotation = "0 0 1 238.003";scale = "0.2 0.1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "243.362 159.936 99.7467";rotation = "0.256976 -0.886599 -0.384585 74.0061";scale = "0.125 1 5.30216";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "256.195 161.874 99.35";rotation = "-0.69311 -0.197978 0.693111 157.603";scale = "0.375 20.0003 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "251.834 151.545 105.363";rotation = "0.482311 0.876 1.11041e-06 180";scale = "0.883339 0.166666 8.726";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;closedscale = "0.883339 0.166666 8.726";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "0";moving = "open";openedscale = "0.883339 0.166666 0.1";prevscale = "0.883339 0.166666 8.726";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "250.756 153.249 105.363";rotation = "0.482311 0.876 1.11041e-06 180";scale = "0.125 0.166666 8.726";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "253.124 149.975 101.25";rotation = "0.268181 -0.925287 -0.268183 94.4446";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "249.683 154.943 105.364";rotation = "0.482311 0.876 1.11041e-06 180";scale = "0.877294 0.166666 8.726";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;closedscale = "0.877294 0.166666 8.726";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "0";moving = "open";openedscale = "0.877294 0.166666 0.1";prevscale = "0.877294 0.166666 8.726";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "253.335 150.109 101.501";rotation = "0.797168 0.231047 -0.5578 54.9134";scale = "0.125 0.166666 10.9997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "252.266 151.799 101";rotation = "0 0 1 237.673";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "251.178 153.517 101.501";rotation = "-0.797168 -0.231048 -0.5578 54.9134";scale = "0.125 0.166666 10.9997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "248.612 156.637 105.363";rotation = "0.482311 0.876 1.11041e-06 180";scale = "0.125 0.166666 8.726";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "250.967 153.383 101.25";rotation = "0.268181 -0.925287 -0.268183 94.4446";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "247.583 158.262 105.364";rotation = "0.482311 0.876 1.11041e-06 180";scale = "0.836381 0.166666 8.726";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;closedscale = "0.836381 0.166666 8.726";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "0";moving = "open";openedscale = "0.836381 0.166666 0.1";prevscale = "0.836381 0.166666 8.726";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "251.178 153.517 101.501";rotation = "0.797168 0.231048 -0.5578 54.9134";scale = "0.125 0.166666 10.9997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "250.109 155.207 101";rotation = "0 0 1 237.673";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "249.034 156.905 101.501";rotation = "-0.797168 -0.231047 -0.5578 54.9134";scale = "0.125 0.166666 10.9997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "244.684 163.461 103.332";rotation = "-0.925287 -0.268185 -0.268179 94.4446";scale = "0.125 0.166666 33.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedLightBase";position = "249.689 155.403 107.241";rotation = "0.362795 0.658933 0.658929 219.881";scale = "1 1 1";team = "1";ownerGUID = "2850746";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%light = new Item() {datablock = "DeployedLight2";static = true;};%building.light = %light;%light.lightBase = %building;adjustLight(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "248.079 157.479 105.365";rotation = "-3.23524e-06 -3.11366e-06 1 57.6728";scale = "14.7502 0.166667 30.27";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "246.556 159.887 105.363";rotation = "0.482311 0.876 1.11041e-06 180";scale = "0.125 0.166666 8.726";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "248.823 156.771 101.25";rotation = "0.268181 -0.925287 -0.268183 94.4446";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "245.575 161.435 105.364";rotation = "0.482311 0.876 1.11041e-06 180";scale = "0.791223 0.166666 8.726";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;closedscale = "0.791223 0.166666 8.726";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "0";moving = "open";openedscale = "0.791223 0.166666 0.1";prevscale = "0.791223 0.166666 8.726";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "246.978 160.155 101.501";rotation = "-0.797168 -0.231047 -0.5578 54.9134";scale = "0.125 0.166666 10.9997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "249.034 156.905 101.501";rotation = "0.797168 0.231047 -0.5578 54.9134";scale = "0.125 0.166666 10.9997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "248.065 158.595 101";rotation = "0 0 1 237.673";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "263.855 132.551 120.75";rotation = "0.434422 0.789023 0.43442 103.452";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.305 182.406 121.75";rotation = "0.658931 -0.362798 0.658929 219.881";scale = "0.125 0.166666 118";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "246.767 160.021 101.25";rotation = "0.268181 -0.925287 -0.268183 94.4446";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "245.018 163.252 101.501";rotation = "-0.797167 -0.23105 -0.5578 54.9134";scale = "0.125 0.166666 10.9997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "246.978 160.155 101.501";rotation = "0.797168 0.231048 -0.5578 54.9134";scale = "0.125 0.166666 10.9997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "246.009 161.845 101";rotation = "0 0 1 237.673";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "244.807 163.118 101.25";rotation = "0.268181 -0.925287 -0.268183 94.4446";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration6";position = "264.89 137.348 101";rotation = "0 0 1 14.1771";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration7";position = "264.89 137.348 104.3";rotation = "0 0 1 14.1771";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "238.517 172.589 105.364";rotation = "0.482311 0.876 1.11041e-06 180";scale = "5.80872 0.166666 8.726";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.171 182.617 121";rotation = "0 0 1 147.673";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "232.171 182.617 122";rotation = "0 0 1 238.887";scale = "0.2 0.1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedDecoration6";position = "238.054 181.253 101";rotation = "0 0 1 99.5411";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration7";position = "238.054 181.253 104.3";rotation = "0 0 1 99.5411";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration0";position = "274.07 139.311 103.603";rotation = "-2.87219e-06 3.40158e-06 1 147.673";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "274.204 139.1 106.403";rotation = "0.925287 0.268184 -0.268182 94.4447";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "276.664 140.361 101";rotation = "0 0 1 57.6728";scale = "0.125 10.1666 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "289.128 148.249 121.75";rotation = "-0.268184 0.925287 -0.268182 94.4447";scale = "0.125 0.166666 58.9824";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "276.585 140.017 100.25";rotation = "-0.200773 0.692709 0.692708 157.295";scale = "7.50052 0.5 119.998";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "245.191 190.562 120.75";rotation = "0.658933 -0.362795 0.658929 219.881";scale = "0.125 10.0005 118.001";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "257.732 198.794 111";rotation = "-0.268184 0.925287 -0.268182 94.4447";scale = "5 0.166666 61.0008";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "232.382 182.751 121.75";rotation = "0.69271 0.200773 0.692707 157.295";scale = "0.125 0.166666 59.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration2";position = "247.549 191.758 103.325";rotation = "-1.00678e-05 -8.92689e-06 -1 32.3271";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "247.415 191.969 106.125";rotation = "-0.200774 0.692709 -0.692707 202.705";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "DeployedLightBase";position = "248.998 192.971 104.758";rotation = "-0.925287 -0.268183 -0.268183 94.4447";scale = "1 1 1";team = "1";ownerGUID = "2850746";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%light = new Item() {datablock = "DeployedLight13";static = true;};%building.light = %light;%light.lightBase = %building;adjustLight(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "305.248 123.244 111";rotation = "0.434422 0.789023 0.43442 103.452";scale = "5 0.166666 59.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedLightBase";position = "294.104 141.321 107.648";rotation = "0.362796 0.658929 0.658933 219.881";scale = "1 1 1";team = "1";ownerGUID = "2850746";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%light = new Item() {datablock = "DeployedLight1";static = true;};%building.light = %light;%light.lightBase = %building;adjustLight(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "289.339 148.383 121";rotation = "0 0 1 57.6728";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "305.248 123.244 121.75";rotation = "0.434422 0.789023 0.43442 103.452";scale = "0.125 0.166666 59.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "305.382 123.033 121";rotation = "0 0 -1 32.3272";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "299.295 135.713 104.592";rotation = "0.482318 0.875996 -3.95487e-06 180";scale = "0.125 0.925317 7.18204";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";canmove = 1;closedscale = "0.125 0.925317 7.18204";Collision = 1;isdoor = "1";issliding = "0";lv = "0";moving = "open";openedscale = "0.125 0.925317 0.1";prevscale = "0.125 0.925317 7.18204";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "305.382 123.033 122";rotation = "0 0 1 239.129";scale = "0.2 0.1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "282.909 169.725 101.5";rotation = "0.806346 0.418214 -0.418214 102.239";scale = "0.125 0.333333 2.00088";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "282.094 170.302 101.5";rotation = "0.925287 0.268185 -0.26818 94.4446";scale = "0.125 0.333333 10.9924";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "257.521 198.661 121";rotation = "0 0 1 57.6728";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "283.397 169.615 101.5";rotation = "0.662216 0.529845 -0.529843 112.974";scale = "0.125 0.333333 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "279.154 174.947 101.5";rotation = "0.992691 0.0853427 -0.0853344 90.4202";scale = "0.125 0.333333 2.00108";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "283.89 169.7 101.5";rotation = "0.51143 0.607635 -0.607634 125.827";scale = "0.125 0.333333 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "278.984 175.933 101.5";rotation = "0.987892 -0.109696 0.109707 90.6986";scale = "0.125 0.333333 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "284.101 169.835 102";rotation = "0 0 1 237.5";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "310.523 142.818 112.546";rotation = "-0.268176 0.925291 -0.268175 94.4446";scale = "3.97725 0.166666 29.3504";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "255.318 203.342 101";rotation = "0 0 1 58.3706";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "9";set2 = "2";packBlock = "SwitchDeployable";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "279.094 176.421 101.5";rotation = "0.912519 -0.289225 0.289236 95.2382";scale = "0.125 0.333333 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "254.172 205.211 101";rotation = "0 0 1 58.3706";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "7";set2 = "2";packBlock = "SolarPanelDeployable";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "279.594 176.964 102";rotation = "0 0 1 237.5";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "252.994 207.049 101";rotation = "0 0 1 58.3706";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "6";set2 = "2";packBlock = "TurretBasePack";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "305.496 139.637 104.591";rotation = "-0.278375 0.960473 1.21749e-06 180";scale = "2.97493 0.166666 7.182";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedLightBase";position = "285.523 170.439 101.598";rotation = "-0.925286 -0.268184 -0.268185 94.4441";scale = "1 1 1";team = "1";ownerGUID = "2850746";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%light = new Item() {datablock = "DeployedLight0";static = true;};%building.light = %light;%light.lightBase = %building;adjustLight(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "283.89 169.701 101.5";rotation = "0.362795 0.658932 0.65893 219.881";scale = "0.125 0.333333 7.00222";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "282.788 174.2 101";rotation = "0 0 1 234.641";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "251.782 209.045 101";rotation = "0 0 1 58.3712";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "2";set2 = "2";packBlock = "LargeInventoryDeployable";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedLightBase";position = "280.311 177.713 101.549";rotation = "-0.200771 0.692714 0.692704 157.295";scale = "1 1 1";team = "1";ownerGUID = "2850746";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%light = new Item() {datablock = "DeployedLight0";static = true;};%building.light = %light;%light.lightBase = %building;adjustLight(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "241.612 223.8 111";rotation = "0.658933 -0.362795 0.658929 219.881";scale = "5 0.166666 59.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "279.383 176.83 101.5";rotation = "0.789021 -0.434418 0.434427 103.452";scale = "0.125 0.333333 7.0029";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "250.165 211.5 101";rotation = "0 0 1 58.5196";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "2";set2 = "0";packBlock = "RepairPack";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "241.612 223.799 121.75";rotation = "0.658931 -0.362798 0.658929 219.881";scale = "0.125 0.166666 58.9986";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "260.819 201.34 104.826";rotation = "-0.278379 0.960471 1.21748e-06 180";scale = "1.98472 0.166666 7.652";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "249.195 213.097 101";rotation = "0 0 1 58.5196";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "4";set2 = "0";packBlock = "SatchelCharge";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "282.667 177.943 101";rotation = "0 0 1 56.2523";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "248.279 214.601 101";rotation = "0 0 1 58.5196";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "3";set2 = "0";packBlock = "AmmoPack";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "245.558 219.289 101";rotation = "0 0 1 42.2868";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "5";set2 = "8";packBlock = "C4";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "301.856 129.07 120.75";rotation = "0.789022 -0.434423 0.434421 103.452";scale = "3.36812 0.166667 46.9892";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "305.593 123.167 121.75";rotation = "0.692709 0.200775 0.692707 157.295";scale = "0.125 0.166666 47.0054";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "243.105 223.396 101";rotation = "0 0 1 143.569";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "2";set2 = "8";packBlock = "S3RifleAmmo";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "241.478 224.01 121";rotation = "0 0 1 147.673";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "241.478 224.01 122";rotation = "0 0 1 238.19";scale = "0.2 0.1 1";team = "1";ownerGUID = "2850746";powerFreq = "2";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "317.857 130.534 100.25";rotation = "-0.199923 0.692832 0.692831 157.389";scale = "7.5 0.5 60";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "258.682 217.145 105.076";rotation = "-0.362793 -0.658931 0.658932 219.882";scale = "7.37467 0.166666 21.231";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "244.275 223.494 101";rotation = "0 0 -1 45.4226";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "2";set2 = "7";packBlock = "S3Rifle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "264.172 203.463 102.913";rotation = "0.26818 -0.925288 -0.268182 94.4446";scale = "0.9565 0.166666 5.35156";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";canmove = 1;closedscale = "0.9565 0.166666 5.35156";Collision = 1;isdoor = "1";issliding = "0";lv = "0";moving = "open";openedscale = "0.9565 0.166666 0.1";prevscale = "0.9565 0.166666 5.35156";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "317.846 130.921 101";rotation = "2.90127e-06 1.95508e-06 1 57.6728";scale = "0.125 10.0002 40";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "311.424 142.797 114.072";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 24.712";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "313.83 138.995 101.716";rotation = "0 0 1 237.674";scale = "0.125 0.166666 24.712";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "316.146 135.336 110.858";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 19.716";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "318.46 131.679 110.858";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 19.716";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "294.544 194.856 120.751";rotation = "-0.789021 0.434421 0.434424 103.452";scale = "26.3822 0.166666 57.997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "246.564 225.217 101";rotation = "0 0 -1 110.693";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "3";set2 = "7";packBlock = "pistol";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "313.191 144.212 101.466";rotation = "-0.925291 -0.268175 -0.268176 94.4446";scale = "1.24999 0.166667 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "301.875 155.922 100.25";rotation = "-0.199923 0.692832 0.692831 157.389";scale = "7.5 0.5 180.001";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";nametoset = "large inv station pack";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "317.827 136.886 98.3107";rotation = "-0.121578 0.419484 0.899584 150.774";scale = "1.24999 0.166667 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "313.191 144.212 114.322";rotation = "-0.925291 -0.268175 -0.268176 94.4446";scale = "1.24999 0.166667 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "317.827 136.886 111.167";rotation = "-0.121579 0.419486 0.899583 150.774";scale = "1.24999 0.166667 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "317.913 136.751 111.108";rotation = "-0.92529 -0.268177 -0.268177 94.444";scale = "1.24999 0.166667 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "247.37 226.352 101";rotation = "0 0 1 157.358";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "3";set2 = "8";packBlock = "G41RifleAmmo";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "248.197 226.738 101";rotation = "0 0 1 156.22";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "4";set2 = "7";packBlock = "G41Rifle";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "315.226 145.203 114.072";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 24.712";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "266.779 204.815 103.163";rotation = "0.925286 0.268181 -0.268186 94.444";scale = "0.125 1.442 58.9986";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "317.632 141.401 114.072";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 24.712";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "319.948 137.742 110.858";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 19.716";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "322.256 134.048 110.858";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 19.716";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "249.575 227.942 101";rotation = "0 0 1 170.513";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "4";set2 = "8";packBlock = "M1700Ammo";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "316.576 146.648 101";rotation = "0 0 1 237.674";scale = "0.125 4.7752 39";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DispenserDep";position = "250.352 227.938 101";rotation = "0 0 1 217.299";scale = "1.5 1.5 0.5";team = "1";ownerGUID = "2850746";powerFreq = "1";set1 = "5";set2 = "7";packBlock = "M1700";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "316.776 143.522 101.525";rotation = "0.239019 -0.8247 -0.512581 58.9699";scale = "0.125 1.66667 9.99992";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "321.227 135.889 111.167";rotation = "-0.276056 0.952482 0.128728 227.897";scale = "0.125 1.66667 9.99992";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "316.776 143.522 114.381";rotation = "0.239019 -0.8247 -0.512581 58.9699";scale = "0.125 1.66667 9.99992";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "270.5 210.548 121.001";rotation = "0 0 -1 119.031";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);%building.setCloaked(true);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "318.918 147.54 104.43";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 6.86";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "321.302 143.724 117.286";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 24.712";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "321.459 143.823 104.43";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 6.86";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "320.69 143.725 121";rotation = "0 0 1 237.673";scale = "2.21228 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "325.529 136.079 120.75";rotation = "0.925287 0.268181 -0.268184 94.4446";scale = "0.125 0.166666 26.9466";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "323.625 140.029 107.644";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 13.288";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "323.607 140.058 120.5";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 24.712";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "325.919 136.405 107.644";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 13.288";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "324.293 138.033 124";rotation = "0.960472 0.278377 6.85414e-07 180";scale = "0.125 1.54083 6.00002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";canmove = 1;closedscale = "0.125 1.54083 6.00002";Collision = 1;isdoor = "1";issliding = "0";lv = "5";moving = "open";openedscale = "0.125 1.54083 0.1";prevscale = "0.125 1.54083 6.00002";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "324.102 148.158 104.68";rotation = "0.692711 0.200765 -0.692708 202.704";scale = "0.125 1.66667 9.99992";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "325.46 141.337 107.953";rotation = "-0.254056 0.876571 0.408752 166.488";scale = "1.24999 0.166667 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "324.102 148.158 117.536";rotation = "0.692711 0.200765 -0.692708 202.704";scale = "0.125 1.66667 9.99992";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "328.824 140.697 107.894";rotation = "0.692711 0.200765 -0.692708 202.704";scale = "0.125 1.66667 9.99992";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "323.049 150.748 122.75";rotation = "-0.268184 0.925287 -0.268182 94.4447";scale = "0.875 0.166666 12.01";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "266.194 239.651 111";rotation = "-0.268184 0.925287 -0.268182 94.4447";scale = "5 0.166666 58.9986";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "325.46 141.337 120.809";rotation = "-0.254056 0.876571 0.408752 166.488";scale = "1.24999 0.166667 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "261.79 224.887 102.507";rotation = "0.658935 -0.362796 0.658926 219.881";scale = "0.238094 0.238095 0.243902";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "261.782 224.882 102.517";rotation = "-0.200772 0.692706 0.692711 157.295";scale = "0.2 0.2 0.1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "3";isSwitchedOff = "1";switchRadius = "200";nametoset = "sensor";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "320.646 148.93 124.25";rotation = "0.658933 -0.362795 0.658929 219.881";scale = "0.125 2.00202 26.9394";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "325.374 141.473 120.75";rotation = "-0.925291 -0.268175 -0.268176 94.4446";scale = "1.24999 0.166667 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "263.832 223.211 104.826";rotation = "0.960471 0.27838 3.52872e-07 180";scale = "3.54825 0.166666 7.652";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "322.121 146.566 124.5";rotation = "0 0 -1 24.2628";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "324.278 143.355 124.5";rotation = "0 0 1 148.696";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "262.558 225.077 102.507";rotation = "-0.362793 -0.658931 0.658932 219.882";scale = "0.454545 0.486143 0.476191";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "3";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "326.174 140.249 124.5";rotation = "0 0 1 147.585";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "3";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "327.987 137.339 121";rotation = "0 0 -1 32.3271";scale = "1.49936 0.166666 7";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "241.689 224.144 121.75";rotation = "0.69271 0.200773 0.692707 157.295";scale = "0.125 0.166666 58.0014";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "262.981 225.344 102.507";rotation = "-0.362793 -0.658931 0.658932 219.882";scale = "0.454545 0.486143 0.476191";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "322.687 149.925 117.286";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 32.572";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "263.404 225.611 102.507";rotation = "-0.362792 -0.658931 0.658932 219.882";scale = "0.454545 0.486143 0.476191";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "325.093 146.123 104.43";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 6.86";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "264.688 224.048 101.25";rotation = "0.925287 0.268183 -0.268184 94.4441";scale = "0.454545 0.486143 0.476191";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "264.421 224.471 101.25";rotation = "0.886601 0.25697 -0.384585 74.0061";scale = "0.454545 0.486143 0.476191";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "325.093 146.123 117.286";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 24.712";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "264.174 224.861 101.441";rotation = "0.797165 0.231045 -0.557804 54.9132";scale = "0.454545 0.486143 0.476191";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "263.985 225.16 101.795";rotation = "0.558388 0.161835 -0.813641 39.2141";scale = "0.454545 0.486143 0.476191";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate4";position = "263.883 225.322 102.257";rotation = "-5.06317e-06 -8.74186e-06 -1 32.3271";scale = "0.454545 0.486143 0.476191";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate5";position = "263.749 225.533 102.507";rotation = "0.925287 0.268181 -0.268186 94.4441";scale = "0.238095 0.238094 0.243902";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "329.732 138.794 107.644";rotation = "0.482316 0.875997 1.11041e-06 180";scale = "0.125 0.166666 13.288";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "263.484 225.946 102.51";rotation = "-0.200772 0.692706 0.692711 157.295";scale = "0.2 0.2 0.1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "2";isSwitchedOff = "1";switchRadius = "200";nametoset = "turrets";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration1";position = "298.345 188.381 103.239";rotation = "-6.00285e-06 5.20323e-06 1 57.6728";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "298.556 188.515 106.039";rotation = "0.362799 0.65893 -0.658929 140.119";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "326.572 144.71 124";rotation = "0.482313 0.875999 -3.69473e-06 180";scale = "3.36742 0.166667 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedLightBase";position = "297.466 190.237 106.215";rotation = "-0.789021 0.434422 0.434423 103.452";scale = "1 1 1";team = "1";ownerGUID = "2850746";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%light = new Item() {datablock = "DeployedLight0";static = true;};%building.light = %light;%light.lightBase = %building;adjustLight(%building); +%building = new (StaticShape) () {datablock = "Deployedwall";position = "266.272 239.997 110.999";rotation = "-0.434425 -0.789018 0.434426 103.451";scale = "5 0.166667 238.998";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.592 224.54 105.076";rotation = "0.362801 0.658929 0.65893 219.881";scale = "3.15707 0.166666 35.77";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "266.54 239.575 121.749";rotation = "0.658931 -0.362799 0.658928 219.882";scale = "0.125 0.166666 210.056";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "269.828 227.006 102.913";rotation = "0.268181 -0.925287 -0.268185 94.4441";scale = "0.956501 0.166666 7.38234";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";cankill = "0";canmove = 1;closedscale = "0.956501 0.166666 7.38234";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "4";moving = "open";openedscale = "0.956501 0.166666 0.1";prevscale = "0.956501 0.166666 7.38234";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "266.406 239.786 120.999";rotation = "0 0 1 57.6734";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2850746/Buildings/3.cs b/Univ/Data/2850746/Buildings/3.cs new file mode 100644 index 0000000..64636b2 --- /dev/null +++ b/Univ/Data/2850746/Buildings/3.cs @@ -0,0 +1,110 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "UxA Savar" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.509 14.4623 115.7";rotation = "0 0 1 200.171";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.2744 14.5484 116.201";rotation = "0.172491 0.969791 0.17249 91.7575";scale = "0.250753 0.166666 17.9997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "56.3665 14.7703 116.692";rotation = "-0.496745 0.711683 -0.496741 109.123";scale = "1.51799 9.0199 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.2744 14.5485 118.95";rotation = "0.701581 -0.124786 -0.701578 165.774";scale = "0.375 0.166666 17.9995";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "55.4854 16.78 115.7";rotation = "0 0 1 136.712";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "2";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.5917 17.738 115.7";rotation = "0 0 1 20.1707";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "62.082 20.0411 104.7";rotation = "0 0 1 155.548";scale = "0.2 0.1 1";team = "1";ownerGUID = "2850746";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.5951 14.697 116.2";rotation = "0.634084 0.442582 0.63408 132.254";scale = "0.25 0.166666 18.9997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "61.7626 20.7887 99.7";rotation = "0 0 1 20.1708";scale = "1.25 1.66666 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "54.243 20.9543 115.2";rotation = "-8.07809e-14 1 3.41882e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "56.8169 14.6048 116.69";rotation = "0.172492 0.96979 0.172493 91.7575";scale = "1.52 9.51983 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "51.9642 15.8654 115.45";rotation = "0.496747 -0.711678 -0.496747 109.123";scale = "0.125 3.33333 21";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "54.7225 23.3748 99.7";rotation = "0 0 1 200.171";scale = "2.5 1.66666 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.5951 14.697 118.95";rotation = "0.634084 0.442582 0.63408 132.254";scale = "0.375 0.166666 18.9997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCardPack";position = "49.8311 24.5593 101.788";rotation = "-0.442582 0.634084 -0.63408 227.747";scale = "1 1 1";team = "1";ownerGUID = "2850746";NameHolder = "UxA Savar";GUIDHolder = "2850746";cardColor = "1";CardSetting = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.9537 26.89 116.2";rotation = "-0.496746 0.711681 -0.496744 109.123";scale = "0.25 0.166666 18.9998";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "50.7319 26.9821 116.69";rotation = "0.701581 -0.124786 0.701578 194.226";scale = "1.52 9.51986 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "52.1365 16.3349 119.45";rotation = "0.96979 -0.172491 0.172495 91.7569";scale = "2.24996 0.166667 21.0004";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "46.8279 25.4918 104.7";rotation = "0 0 -1 110.414";scale = "0.2 0.1 1";team = "1";ownerGUID = "2850746";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.6779 17.9727 118.95";rotation = "0.496744 -0.71168 -0.496747 109.122";scale = "0.375 0.166666 18.9999";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "47.6827 25.961 99.7";rotation = "0 0 1 200.171";scale = "1.25 1.66666 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "57.9565 24.584 105.2";rotation = "0.820006 0.572355 -3.56872e-07 180";scale = "0.125 1.58777 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";canmove = 1;closedscale = "0.125 1.58777 10";Collision = 1;isdoor = "1";issliding = "0";lv = "1";moving = "open";openedscale = "0.125 1.58777 0.1";prevscale = "0.125 1.58777 10";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "55.4859 25.4914 100.2";rotation = "0 0 1 200.171";scale = "0.125 0.166666 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "56.9362 22.6422 115.7";rotation = "0 0 1 22.1525";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "53.028 26.3943 105.2";rotation = "-0.572356 0.820005 2.54348e-06 180";scale = "0.125 1.57889 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";canmove = 1;closedscale = "0.125 1.57889 10";Collision = 1;isdoor = "1";issliding = "0";lv = "1";moving = "open";openedscale = "0.125 1.57889 0.1";prevscale = "0.125 1.57889 10";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "55.4985 25.4868 105.2";rotation = "6.64257e-06 -8.03676e-06 -1 69.8292";scale = "0.125 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "54.7263 23.1141 119.7";rotation = "0 0 1 201.916";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.751 20.7839 116.2";rotation = "0.172501 0.969787 0.1725 91.7575";scale = "0.25 0.166666 18.9993";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "59.957 23.8489 115.7";rotation = "0 0 1 200.171";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "69.8429 21.0058 116.69";rotation = "-0.496739 0.71169 -0.496736 109.122";scale = "1.52 9.5197 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.5991 24.1459 115.7";rotation = "0 0 1 110.171";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.9855 20.6977 115.7";rotation = "0 0 1 200.172";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.7509 20.784 118.95";rotation = "-0.701577 0.124791 0.701582 194.226";scale = "0.375 0.166666 18.9991";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.1294 24.3183 119.7";rotation = "0.175117 0.984548 4.31949e-07 180";scale = "0.125 0.166667 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "51.0399 27.1246 115.7";rotation = "0 0 1 200.171";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.7431 27.7665 115.7";rotation = "0 0 1 110.171";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "64.3485 27.8286 99.7";rotation = "2.28659e-07 8.28522e-07 1 20.1708";scale = "1.25 3.33333 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "51.2123 27.594 119.7";rotation = "0.175117 0.984548 4.31949e-07 180";scale = "0.125 0.166667 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "63.3489 25.8317 115.7";rotation = "0 0 -1 71.308";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "62.2369 28.6045 115.2";rotation = "0.820007 0.572354 3.34595e-06 180";scale = "2.5 0.166667 30";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "55.5849 25.7215 99.95";rotation = "0.496746 -0.711679 -0.496746 109.123";scale = "0.125 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "41.5909 31.1284 116.2";rotation = "0.701581 -0.124786 0.701578 194.226";scale = "0.25 0.166666 19.0003";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "41.4987 30.9065 116.69";rotation = "0.634084 0.442582 0.634081 132.254";scale = "1.52 9.52014 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "4";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.5085 27.8527 118.95";rotation = "0.17249 0.969791 0.172489 91.7575";scale = "0.375 0.166666 19.0003";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "62.0021 28.6907 115.45";rotation = "-0.442577 0.634087 -0.634082 227.747";scale = "2.49992 0.166667 20.9994";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "68.5766 26.6328 115.2";rotation = "-2.94296e-11 1 6.6947e-06 180.001";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "52.381 32.2252 115.2";rotation = "0.820006 0.572355 3.37759e-07 180";scale = "2.49998 0.166667 30";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "50.269 33.0009 99.7";rotation = "0 0 1 20.1708";scale = "1.25 3.33333 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.1751 29.3801 116.2";rotation = "-0.496747 0.71168 -0.496744 109.123";scale = "0.25 0.166666 17.9995";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "59.9154 31.7459 100.6";rotation = "0.159552 0.98719 1.25135e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "59.9154 31.7459 100.6";rotation = "1.48891e-06 2.98933e-12 1 198.362";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "62.002 28.6906 115.45";rotation = "-0.442586 0.634079 0.634083 132.254";scale = "2.49998 0.166666 19.9996";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;closedscale = "2.49998 0.166666 19.9996";hasslided = "0";isdoor = "1";issliding = "0";moving = "close";openedscale = "2.49998 0.166666 19.9996";powercontrol = "1";prevscale = "2.49998 0.166666 19.9996";state = "closed";timeout = "0";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "72.9532 29.4723 116.69";rotation = "0.701581 -0.124786 0.701578 194.226";scale = "1.52 9.07934 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "57.3069 31.3062 100.2";rotation = "0 0 1 150.923";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "41.3562 31.2146 115.7";rotation = "0 0 1 20.1706";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.1751 29.3801 118.95";rotation = "-0.496745 0.711681 -0.496743 109.123";scale = "0.375 0.166666 17.9995";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "64.1984 27.9495 119.7";rotation = "0 0 1 109.566";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "43.6382 32.3628 115.7";rotation = "0 0 1 233.481";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "4";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "71.3889 25.2426 119.45";rotation = "0.701584 -0.124788 -0.701575 165.774";scale = "0.125 2.99989 60.0006";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "56.8141 29.2603 119.7";rotation = "0 0 1 21.0043";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "47.291 33.4954 115.2";rotation = "9.41547e-14 1 3.03225e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "42.7593 35.7597 115.45";rotation = "-0.71168 -0.496745 -0.496745 109.123";scale = "2.50003 0.166667 21.0008";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "71.5061 29.076 115.7";rotation = "0 0 1 93.7943";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "5";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "59.119 35.3427 115.2";rotation = "0.820009 0.57235 3.73246e-06 179.999";scale = "0.125 3.33333 30";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "51.202 34.8156 115.7";rotation = "0 0 1 110.724";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "47.6179 34.0646 119.7";rotation = "0 0 -1 68.2427";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "4";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "64.1094 32.9768 116.2";rotation = "0.701581 -0.124788 0.701579 194.226";scale = "0.25 0.166666 18.9997";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "41.4423 31.4493 116.2";rotation = "0.634082 0.442585 0.634081 132.254";scale = "0.25 0.166666 18";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "64.0173 32.7549 116.69";rotation = "0.634084 0.442581 0.634082 132.254";scale = "1.52 9.51977 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "5";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "41.6641 31.3571 116.69";rotation = "0.172492 0.96979 0.172493 91.7575";scale = "1.52301 9.01999 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "4";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.8749 33.0632 115.7";rotation = "0 0 1 110.171";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.2613 29.6148 115.7";rotation = "0 0 1 20.1708";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.0265 29.7011 118.95";rotation = "-0.701577 0.124784 0.701582 194.226";scale = "0.375 0.166666 18.9994";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "66.9349 34.8686 99.7";rotation = "0 0 1 200.171";scale = "1.25 1.66666 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "41.4424 31.4494 118.951";rotation = "0.496744 -0.71168 -0.496747 109.122";scale = "0.374247 0.166666 18.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.5776 33.7049 115.7";rotation = "0 0 1 200.171";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.4055 33.2356 119.7";rotation = "-0.572355 0.820006 -2.74807e-06 180";scale = "0.125 0.166667 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "59.895 37.4548 99.7";rotation = "0 0 1 200.171";scale = "2.5 1.66666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "67.785 35.1976 104.7";rotation = "0 0 1 62.3842";scale = "0.2 0.1 1";team = "1";ownerGUID = "2850746";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.0189 36.6838 115.7";rotation = "0 0 1 110.171";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.6604 36.9806 115.7";rotation = "0 0 1 200.171";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.488 36.5112 119.7";rotation = "0.984547 -0.175118 -1.34197e-06 180";scale = "0.125 0.166667 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "44.8666 40.0458 116.2";rotation = "0.701581 -0.124786 0.701578 194.226";scale = "0.25 0.166666 19.0005";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "52.855 40.0409 99.7";rotation = "0 0 1 20.1708";scale = "1.25 1.66666 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "61.7477 36.8947 116.1";rotation = "0.628697 0.77765 9.85743e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "61.7477 36.8947 116.1";rotation = "-2.65482e-06 1.27893e-12 -1 102.092";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "44.7744 39.8239 116.69";rotation = "0.634084 0.442582 0.634081 132.254";scale = "1.52 9.52027 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "4";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "44.8666 40.0457 118.95";rotation = "-0.172493 -0.96979 0.172491 91.7575";scale = "0.375 0.166666 19.0005";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "57.8463 38.3027 115.7";rotation = "0 0 1 199.324";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "52.3444 41.1314 104.7";rotation = "0 0 -1 23.5892";scale = "0.2 0.1 1";team = "1";ownerGUID = "2850746";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "44.6319 40.132 115.7";rotation = "0 0 1 200.171";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.6641 33.9396 116.183";rotation = "0.634084 0.442582 0.63408 132.254";scale = "0.241501 0.166666 18.9999";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "63.8859 33.8473 116.656";rotation = "0.172492 0.96979 0.172493 91.7575";scale = "1.554 9.51991 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "59.0326 35.1081 115.45";rotation = "0.496743 -0.711685 -0.49674 109.122";scale = "0.125 3.33337 21";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "60.3116 38.689 119.7";rotation = "0 0 1 21.6913";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "66.9399 42.8568 118.95";rotation = "0.634084 0.442581 -0.634082 227.746";scale = "0.375 0.166666 19.0001";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "62.4812 44.4949 119.45";rotation = "-0.969791 0.172494 0.172488 91.757";scale = "2.25002 0.166667 21.0004";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.7465 37.2153 116.2";rotation = "0.634086 0.442576 0.634083 132.254";scale = "0.25 0.166666 19.0004";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "61.7442 41.2573 115.2";rotation = "1.56165e-12 1 -8.4215e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "54.9682 37.1231 116.69";rotation = "0.172502 0.969786 0.172503 91.7581";scale = "1.52 9.72851 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.0225 46.1327 118.95";rotation = "-0.49674 0.711689 -0.496738 109.122";scale = "0.375 0.166666 19.0004";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "64.4238 42.1375 115.7";rotation = "0 0 1 97.2498";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "3";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.026 43.0915 115.7";rotation = "0 0 1 20.1715";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.3435 46.2813 116.2";rotation = "0.70158 -0.124794 0.701578 194.226";scale = "0.25 0.166666 18";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "58.2512 46.0595 116.69";rotation = "0.634086 0.442575 0.634084 132.254";scale = "1.52 9.02005 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.3434 46.2813 118.95";rotation = "-0.172501 -0.969788 0.172498 91.7575";scale = "0.375 0.166666 18.0005";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.1087 46.3675 115.7";rotation = "0 0 1 200.172";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2850746/Buildings/4.cs b/Univ/Data/2850746/Buildings/4.cs new file mode 100644 index 0000000..a83fd5f --- /dev/null +++ b/Univ/Data/2850746/Buildings/4.cs @@ -0,0 +1,172 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "UxA Savar" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-67.0771 46.6866 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-66.939 56.6856 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-77.0762 46.8247 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-66.8009 66.6846 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-87.0753 46.9628 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-66.6628 76.6837 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-97.0744 47.1009 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-66.5247 86.6828 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-66.3866 96.6819 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-107.072 47.2365 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-106.934 57.2355 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-66.2485 106.681 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-117.071 47.3746 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-106.796 67.2346 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-63.6106 116.645 100.25";rotation = "-0.00690749 -0.999959 0.00579476 100.002";scale = "0.375 3.33333 15";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-71.1099 116.749 100.25";rotation = "-0.00690756 -0.999952 0.00690602 90.0031";scale = "0.375 3.33333 15";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-106.658 77.2337 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-127.07 47.5127 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-63.4725 126.644 100.25";rotation = "-0.00690749 -0.999959 0.00579476 100.002";scale = "0.375 3.33333 15";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-76.1095 116.818 99.5";rotation = "0 0 1 0.791295";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-106.52 87.2328 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-70.9718 126.748 100.25";rotation = "-0.00690756 -0.999952 0.00690602 90.0031";scale = "0.375 3.33333 15";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-137.069 47.6508 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-86.1086 116.956 99.5";rotation = "0 0 1 0.791295";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-63.3344 136.643 100.25";rotation = "-0.00690742 -0.999964 0.00483548 110.002";scale = "0.375 3.33333 15";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-106.382 97.2319 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-75.9713 126.817 99.5";rotation = "0 0 1 0.791295";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-70.8337 136.747 100.25";rotation = "-0.00690756 -0.999952 0.00690602 90.0031";scale = "0.375 3.33333 15";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-96.1076 117.094 99.5";rotation = "0 0 1 0.791295";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-106.244 107.231 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-85.9704 126.955 99.5";rotation = "0 0 1 0.791295";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-147.068 47.7889 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-116.381 97.3696 99.5";rotation = "-0 -0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-75.8332 136.816 99.5";rotation = "0 0 1 0.791295";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-65.6961 146.677 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-106.106 117.23 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-95.9695 127.093 99.5";rotation = "0 0 1 0.791295";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-85.8323 136.954 99.5";rotation = "0 0 1 0.791295";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-126.38 97.5077 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-157.067 47.927 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-111.246 107.051 100.75";rotation = "0.582669 0.574664 -0.574681 119.544";scale = "2.37547 0.166667 34.9894";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-111.355 117.303 101";rotation = "0 0 1 0.791295";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-65.558 156.676 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-105.968 127.229 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-129.052 102.795 101";rotation = "0 0 1 0.791295";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-95.8314 137.092 99.5";rotation = "0 0 1 0.791295";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-119.873 116.28 102.533";rotation = "-0.609985 0.711835 -0.348151 27.6824";scale = "0.025 0.0333333 0.6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-119.965 116.186 102.803";rotation = "0.503075 0.848183 -0.165834 25.3415";scale = "0.025 0.0333333 0.6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-119.768 116.552 102.462";rotation = "-0.904271 0.418944 -0.0823455 76.5214";scale = "0.025 0.0333333 0.6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-119.733 116.842 102.528";rotation = "-0.972451 0.219045 -0.079744 103.174";scale = "0.025 0.0333333 0.6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-120.076 116.247 103.075";rotation = "0.174939 0.974877 -0.137884 62.8821";scale = "0.025 0.0333333 0.6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-119.796 117.073 102.709";rotation = "0.981546 -0.0875323 0.170017 229.325";scale = "0.025 0.0333333 0.6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-120.34 116.272 103.215";rotation = "0.592311 0.78825 0.166822 79.2";scale = "0.025 0.0333333 0.6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-119.946 117.075 102.969";rotation = "0.965903 -0.00666641 0.258818 180.204";scale = "0.025 0.0333333 0.6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-120.176 117.078 103.162";rotation = "0.906289 -0.00625732 0.422611 180.334";scale = "0.025 0.0333333 0.6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-120.548 116.479 103.278";rotation = "0.77913 0.626825 0.00685066 70.2085";scale = "0.025 0.0333333 0.6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-120.458 117.082 103.265";rotation = "0.819139 -0.00565551 0.573567 180.454";scale = "0.025 0.0333333 0.6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-120.724 116.7 103.38";rotation = "0.709112 0.654266 -0.262863 55.2716";scale = "0.025 0.0333333 0.6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-136.379 97.6458 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-136.379 97.6458 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-120.909 116.853 103.56";rotation = "-0.0335359 0.805556 -0.59157 30.6112";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "-121.387 116.845 103.313";rotation = "-0.574673 0.582668 -0.574673 119.545";scale = "0.00609266 0.367844 0.00242794";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-121.454 117.346 101.5";rotation = "-4.22891e-05 5.22885e-07 1 0.791295";scale = "0.5 0.333333 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "-122.211 116.856 103.197";rotation = "-0.574673 0.582668 -0.574673 119.545";scale = "0.018278 0.0525492 0.000606984";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-167.066 48.0651 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-126.18 112.008 100.75";rotation = "0.579995 0.572032 0.579987 120.458";scale = "0.125 9.99997 10.5";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-128.927 111.794 101";rotation = "0 0 1 0.791295";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-126.123 116.258 104.75";rotation = "0.00529121 0.766033 -0.642779 179.49";scale = "7.2475 0.166666 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-115.967 127.367 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-126.122 116.258 104.75";rotation = "0.0048837 0.707097 0.7071 180.56";scale = "7.2475 0.166666 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-65.4199 166.675 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.602 117.708 101.25";rotation = "0.7071 -0.0048821 0.707097 180.56";scale = "0.125 0.999999 57.98";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-134.926 112.127 100.75";rotation = "-0.999952 0.00690496 0.00691066 90.0025";scale = "3.1263 0.166666 18.9998";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-126.102 117.758 104.75";rotation = "0.0048837 0.707097 0.7071 180.56";scale = "7.2475 0.166666 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-126.081 119.258 104.75";rotation = "0.00529122 0.766032 0.64278 180.509";scale = "7.2475 0.166666 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-126.107 117.257 100.75";rotation = "0.579995 0.572032 0.579987 120.458";scale = "0.125 9.99997 10.5";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-141.056 102.961 101";rotation = "0 0 1 0.791295";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-146.378 97.7839 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-125.966 127.505 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-177.065 48.2032 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.931 111.96 101";rotation = "0 0 1 0.791295";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-65.2818 176.674 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-146.24 107.783 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.852 117.711 101";rotation = "0 0 1 0.791295";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-156.377 97.922 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-135.965 127.643 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-146.102 117.782 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-187.064 48.3413 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-65.1437 186.673 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-166.376 98.0601 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-145.964 127.781 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-197.063 48.4794 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-65.0056 196.672 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-176.375 98.1982 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-75.0047 196.81 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-207.062 48.6175 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-85.0038 196.948 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-186.374 98.3363 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-95.0029 197.086 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-217.061 48.7556 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-196.373 98.4744 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-105.002 197.224 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-196.235 108.474 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-216.785 68.7534 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-115.001 197.362 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-227.06 48.8937 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-206.372 98.6125 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-216.647 78.7525 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-196.097 118.473 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-125 197.5 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-216.509 88.7516 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-226.784 68.8915 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-195.959 128.472 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-237.059 49.0318 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-216.371 98.7506 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-134.999 197.638 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-195.821 138.471 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-236.783 69.0296 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-144.998 197.776 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-226.37 98.8887 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-195.683 148.47 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-247.058 49.1699 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-236.645 79.0287 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-154.997 197.914 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-236.507 89.0278 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-195.545 158.469 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-236.369 99.0268 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-257.057 49.308 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-164.996 198.052 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-195.407 168.468 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-236.231 109.026 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-236.093 119.025 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-174.995 198.19 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-267.056 49.4461 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-205.406 168.606 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-235.955 129.024 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-184.994 198.328 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-235.817 139.023 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-215.405 168.744 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-277.055 49.5842 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-276.917 59.5833 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-194.993 198.466 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-235.679 149.022 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-276.779 69.5824 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-225.404 168.882 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-276.641 79.5815 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-235.541 159.021 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-204.992 198.604 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-276.503 89.5806 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-235.403 169.02 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-276.365 99.5797 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-214.991 198.742 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-276.227 109.579 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-276.089 119.578 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-224.99 198.88 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-275.951 129.577 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-234.989 199.018 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-275.813 139.576 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-275.675 149.575 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-244.988 199.156 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-275.537 159.574 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-275.399 169.573 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-254.987 199.294 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-275.261 179.572 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-264.986 199.432 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-275.123 189.571 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-274.985 199.57 99.5";rotation = "0 0 1 90.7915";scale = "2.5 3.33333 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2850746/Buildings/5.cs b/Univ/Data/2850746/Buildings/5.cs new file mode 100644 index 0000000..5f4823a --- /dev/null +++ b/Univ/Data/2850746/Buildings/5.cs @@ -0,0 +1,188 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "UxA Savar" +// Created in mission "FrozenNight" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.986 -63.1656 92.85";rotation = "-0.0902305 0.704222 0.704223 169.688";scale = "2.5 0.166667 20.0006";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-24.4036 -64.0583 93.35";rotation = "0.704224 0.0902316 0.704221 169.688";scale = "0.125 0.166666 19.0001";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-15.6943 -61.7892 93.85";rotation = "-0.126076 0.983977 -0.126075 90.9256";scale = "0.125 0.166666 17.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-15.0315 -61.3581 92.85";rotation = "0.983977 0.126071 -0.126076 90.925";scale = "0.125 0.166666 19.0001";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-16.596 -61.7761 94.09";rotation = "0.620498 -0.47955 0.620495 231.24";scale = "1.52 7.14081 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-23.7399 -56.5121 93.1";rotation = "0 0 -1 84.9576";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-23.436 -63.8062 95.85";rotation = "0.704223 0.0902326 0.704221 169.688";scale = "0.125 0.166666 14.2417";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-19.4707 -57.8075 97.1";rotation = "0 0 -1 104.332";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-23.9198 -63.9323 96.35";rotation = "0.704224 0.0902295 0.704221 169.688";scale = "0.125 0.166666 17.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-16.3033 -61.9479 94.1";rotation = "0 0 1 165.397";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-15.9362 -61.8522 94.1";rotation = "0 0 1 165.397";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-24.4036 -64.0583 96.85";rotation = "0.704224 0.0902316 0.704221 169.688";scale = "0.125 0.166666 19.0001";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.7989 -54.8648 93.35";rotation = "0.704224 0.0902294 0.704221 169.688";scale = "0.125 0.166666 19";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-18.0896 -52.5957 93.85";rotation = "-0.126073 0.983977 -0.126073 90.9255";scale = "0.125 0.166666 16.9908";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-15.4524 -61.7262 93.6";rotation = "0 0 -1 14.6029";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-18.1404 -52.361 94.09";rotation = "0.620497 -0.479554 0.620493 231.241";scale = "1.582 8.01536 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.9778 -55.1697 93.35";rotation = "0.620497 -0.479552 0.620495 231.24";scale = "0.125 0.166666 18.0009";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-24.8347 -63.3956 93.85";rotation = "0.521697 0.675031 0.521695 111.959";scale = "0.125 0.166666 15.8897";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-14.9685 -61.6001 93.1";rotation = "0 0 -1 14.6025";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-24.6 -63.3448 94.09";rotation = "-0.126076 0.983977 -0.126074 90.9256";scale = "1.524 7.96483 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.3106 -54.7376 95.912";rotation = "0.704224 0.0902301 0.704221 169.688";scale = "0.125 0.166666 16.9908";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-14.8425 -62.0839 93.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.3106 -54.7376 96.35";rotation = "0.704224 0.0902301 0.704221 169.688";scale = "0.125 0.166666 16.9908";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.8377 -55.7074 95.854";rotation = "0.620498 -0.47955 0.620495 231.24";scale = "0.125 0.166666 15.8897";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-23.6779 -63.8692 94.1";rotation = "0 0 1 165.397";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-24.8347 -63.3956 96.35";rotation = "0.521697 0.675031 0.521695 111.959";scale = "0.125 0.166666 15.8897";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.7989 -54.8648 96.85";rotation = "0.704224 0.0902294 0.704221 169.688";scale = "0.125 0.166666 19";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-14.7164 -62.5677 94.1";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-17.8477 -52.5327 93.6";rotation = "0 0 -1 14.6025";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-24.1617 -63.9953 93.6";rotation = "0 0 -1 14.6029";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-24.7717 -63.6375 93.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-17.3636 -52.4069 93.1";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-24.6455 -64.1213 93.1";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.0686 -54.6745 94.1";rotation = "0 0 1 165.397";scale = "0.125 0.166666 3.124";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-17.4891 -51.9228 93.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.5525 -54.8006 93.6";rotation = "0 0 -1 14.6025";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.9007 -55.4655 93.6";rotation = "0 0 1 75.3972";scale = "0.15 0.199996 6.2";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-17.6151 -51.439 94.1";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-27.0408 -54.9278 93.1";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-25.7608 -57.1209 97.1";rotation = "0 0 -1 100.195";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "1";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-7.2144 -54.6713 92.85";rotation = "0.479548 0.620498 -0.620497 128.759";scale = "2.25003 0.166666 18.0013";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";cankill = "0";canmove = 0;closedscale = "2.25003 0.166666 18.0013";hasslided = "0";isdoor = "1";issliding = "0";moving = "open";openedscale = "2.25003 0.166666 18.0013";powercontrol = "1";prevscale = "2.25003 0.166666 18.0013";state = "closed";timeout = "0";toggletype = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-17.4087 -52.1609 85.115";rotation = "0.620493 -0.479553 0.620498 231.24";scale = "3.7525 0.166667 19.9775";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.7041 -51.4511 96.85";rotation = "0.620498 -0.47955 0.620495 231.24";scale = "0.125 10.0002 18.0009";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-15.2104 -61.6631 92.85";rotation = "0.675029 -0.521702 0.521693 111.959";scale = "0.125 0.166666 20.0008";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-14.9055 -61.842 93.35";rotation = "0.620497 -0.479552 0.620495 231.24";scale = "0.125 0.166666 19.0012";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.6418 -70.5307 93.85";rotation = "0.521697 0.675031 0.521695 111.959";scale = "0.125 0.166666 16.9576";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-12.5331 -69.996 94.09";rotation = "-0.126076 0.983977 -0.126074 90.9256";scale = "1.52 7.49888 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.7678 -70.0469 95.85";rotation = "0.521696 0.675033 0.521693 111.959";scale = "0.125 0.166666 14.9578";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.6418 -70.5307 96.35";rotation = "0.521697 0.675031 0.521695 111.959";scale = "0.125 0.166666 16.9576";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-14.9055 -61.842 96.85";rotation = "0.620497 -0.479552 0.620495 231.24";scale = "0.125 0.166666 19.0012";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-17.1216 -52.3438 92.85";rotation = "0.479555 0.620493 0.620496 231.239";scale = "0.125 0.166666 19.0008";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration1";position = "-15.5348 -57.3703 80.494";rotation = "5.88983e-07 6.22374e-07 -1 104.603";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-15.7767 -57.4333 83.294";rotation = "0.675027 -0.521698 0.521699 111.959";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.3715 -60.4025 82.6";rotation = "-7.57539e-07 -3.38321e-07 1 165.397";scale = "2.49991 0.166667 20";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.8212 -42.9715 93.35";rotation = "0.620498 -0.47955 0.620495 231.24";scale = "0.125 0.166666 19.0003";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.684 -43.498 93.85";rotation = "0.620498 -0.47955 0.620495 231.24";scale = "0.125 0.166666 16.9121";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-19.7927 -44.0326 94.09";rotation = "0.704224 0.0902292 0.704221 169.688";scale = "1.52 7.47615 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-17.6781 -51.1971 95.85";rotation = "0.521697 0.675031 0.521695 111.959";scale = "0.125 0.166666 14.9123";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.684 -43.498 96.35";rotation = "0.620498 -0.47955 0.620495 231.24";scale = "0.125 0.166666 16.9121";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "-11.7174 -56.7768 97.1";rotation = "0 0 1 3.7417";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "11";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.8212 -42.9715 96.85";rotation = "0.620498 -0.47955 0.620495 231.24";scale = "0.125 0.166666 19.0415";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration1";position = "-10.1217 -60.8541 82.622";rotation = "-2.93231e-05 -1.98677e-05 -1 14.6022";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-10.1847 -60.6122 85.422";rotation = "-0.0902294 0.704224 -0.704221 190.311";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.7878 -70.3219 92.848";rotation = "0.983977 0.126074 -0.126076 90.9256";scale = "2.50242 0.17 20.01";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-13.4662 -66.376 96.85";rotation = "0.704224 0.0902294 0.704221 169.688";scale = "0.125 3.5002 18.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.7581 -51.198 92.6";rotation = "-0.127087 0.991892 -1.52577e-07 180";scale = "2.50268 0.166667 29.988";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration0";position = "-12.2704 -51.5876 81.84";rotation = "-2.93231e-05 -1.98677e-05 -1 14.6022";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-12.3334 -51.3457 84.64";rotation = "-0.0902294 0.704224 -0.704221 190.311";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-11.0073 -68.9661 93.103";rotation = "0 0 1 193.832";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-9.2297 -65.204 97.1";rotation = "0 0 1 166.657";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.107 -50.2536 92.85";rotation = "-0.983977 -0.126077 -0.126069 90.9261";scale = "0.125 0.166666 18.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.7048 -70.2888 94.1";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-15.3506 -41.2903 92.85";rotation = "-0.983977 -0.126073 -0.126075 90.9255";scale = "2.4999 0.166667 19.9998";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-14.3411 -47.0109 97.1";rotation = "0 0 -1 6.75079";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.5788 -70.7726 93.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-18.3815 -47.5052 96.85";rotation = "0.704224 0.0902316 0.704221 169.688";scale = "0.125 3.50007 17.9994";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-23.3996 -49.0708 78.85";rotation = "0.620498 -0.47955 0.620495 231.24";scale = "0.125 0.166666 38.0006";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.775 -59.2049 93.1";rotation = "0 0 -1 14.6025";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.6493 -59.6888 93.6";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.5233 -60.1726 94.1";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.4472 -71.2776 93.1";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.291 -59.0793 93.6";rotation = "0 0 1 165.397";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.17 -50.0116 93.1";rotation = "0 0 -1 14.6025";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.9634 -71.1516 93.6";rotation = "0 0 -1 14.6025";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-18.0547 -44.0588 93.1";rotation = "0 0 -1 15.4029";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "2";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.4796 -71.0255 94.1";rotation = "0 0 1 165.397";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.2961 -49.5279 93.6";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCardPack";position = "-14.8904 -61.8271 79.347";rotation = "0.0902276 -0.70422 0.704225 169.688";scale = "1 1 1";team = "1";ownerGUID = "2850746";NameHolder = "UxA Savar";GUIDHolder = "2850746";cardColor = "1";CardSetting = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-6.1901 -52.6531 93.5";rotation = "0.0582084 0.998304 1.26544e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "11";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "61.8099 -52.6531 116";rotation = "1.34365e-06 1.0124e-12 1 186.674";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.621 -43.7399 94.1";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.8072 -58.9533 94.1";rotation = "0 0 -1 14.6025";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.6862 -49.8858 93.6";rotation = "0 0 1 165.397";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.747 -43.2561 93.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.2024 -49.7596 94.1";rotation = "0 0 1 165.397";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.2201 -49.7608 85.124";rotation = "-0.521697 -0.67503 0.521696 111.959";scale = "3.74925 0.166667 19.9844";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-12.0326 -55.9451 77.6";rotation = "0 0 1 129.111";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "11";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "-18.5463 -67.6992 79.1";rotation = "0 0 1 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedDecoration2";position = "-7.4148 -54.8348 81.035";rotation = "-7.78033e-06 -3.71304e-06 1 75.3972";scale = "1 1 1";team = "1";ownerGUID = "2850746";needsfit = "1";};addToDeployGroup(%building);checkPowerObject(%building);%target = new StaticShape() {datablock = "DeployedLTarget";position = "-7.1729 -54.7718 83.835";rotation = "0.47955 0.620499 -0.620495 128.76";scale = "0.625 1.66667 0.3";team = "1";lMain = %building;};%building.lTarget = %target;addToDeployGroup(%target); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.8839 -42.7297 93.1";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-10.3557 -60.3984 82.6";rotation = "0.991891 0.127089 1.61097e-07 180";scale = "2.24924 0.166666 10";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";cankill = "0";canmove = 1;closedscale = "2.24924 0.166666 10";Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";openedscale = "2.24924 0.166666 0.1";prevscale = "2.24924 0.166666 10";state = "closed";timeout = ".5";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.4004 -42.6036 93.6";rotation = "0 0 -1 14.6029";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.317 -68.6406 93.35";rotation = "0.521697 0.675031 0.521695 111.959";scale = "0.125 0.166666 19.0012";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.4441 -68.1528 93.85";rotation = "0.521696 0.675033 0.521693 111.959";scale = "0.125 0.166666 16.9932";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-3.3354 -67.6182 94.09";rotation = "-0.126076 0.983977 -0.126074 90.9256";scale = "1.52 7.51668 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-18.9166 -42.4775 94.1";rotation = "0 0 1 165.397";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.5701 -67.669 95.85";rotation = "0.521696 0.675033 0.521693 111.959";scale = "0.125 0.166666 14.9934";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.4959 -68.9455 93.35";rotation = "-0.126075 0.983977 -0.126074 90.9256";scale = "0.125 0.166666 18.0003";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.9962 -69.0759 93.85";rotation = "-0.126073 0.983977 -0.126073 90.9255";scale = "0.125 0.166666 15.9664";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-4.5308 -68.9672 94.09";rotation = "0.620497 -0.479554 0.620493 231.241";scale = "1.52 7.00326 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.4441 -68.1528 96.35";rotation = "0.521696 0.675033 0.521693 111.959";scale = "0.125 0.166666 16.9932";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.317 -68.6406 96.85";rotation = "0.521697 0.675031 0.521695 111.959";scale = "0.125 0.166666 19.0012";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.2377 -70.9625 95.85";rotation = "0.704224 0.0902294 0.704221 169.688";scale = "0.125 0.166666 13.9666";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.9962 -69.0759 96.35";rotation = "-0.126073 0.983977 -0.126073 90.9255";scale = "0.125 0.166666 15.9664";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "-23.4626 -48.8289 79.1";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-18.3044 -67.6362 78.85";rotation = "0.704224 0.0902316 0.704221 169.688";scale = "0.125 0.166666 14.5231";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.2331 -49.7698 93.35";rotation = "0.521699 0.675029 0.521695 111.959";scale = "0.125 0.166666 19.0001";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.5022 -41.0605 93.85";rotation = "0.620497 -0.479552 0.620495 231.24";scale = "0.125 0.166666 17.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-18.5463 -67.6992 77.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-10.7369 -41.1113 94.09";rotation = "0.704224 0.0902292 0.704221 169.688";scale = "1.536 8.52008 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.5022 -41.0605 95.866";rotation = "0.620497 -0.479552 0.620495 231.24";scale = "0.125 0.166666 17.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.5022 -41.0605 96.35";rotation = "0.620497 -0.479552 0.620495 231.24";scale = "0.125 0.166666 17.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "-11.0355 -65.7424 79.1";rotation = "0 0 1 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.6283 -40.5766 96.85";rotation = "0.620497 -0.479552 0.620495 231.24";scale = "0.125 0.166666 19.0001";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-3.2187 -53.4965 93.1";rotation = "0 0 1 76.0361";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "11";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.6423 -42.6666 93.35";rotation = "0.704224 0.0902316 0.704221 169.688";scale = "0.125 0.166666 17.9994";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.4171 -40.5236 93.85";rotation = "-0.126076 0.983977 -0.126075 90.9256";scale = "0.125 0.166666 15.9996";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-11.9517 -40.4149 94.09";rotation = "0.620498 -0.47955 0.620495 231.24";scale = "1.52 7.01992 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-18.6747 -42.4145 95.85";rotation = "0.704223 0.0902326 0.704221 169.688";scale = "0.125 0.166666 13.9998";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-14.0907 -46.1289 77.35";rotation = "-0.983977 -0.126073 -0.126075 90.9255";scale = "4.99995 0.166667 40.0004";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-23.4626 -48.8289 77.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-19.1585 -42.5406 96.35";rotation = "0.704224 0.0902295 0.704221 169.688";scale = "0.125 0.166666 15.9996";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-17.4481 -42.2208 97.1";rotation = "0 0 -1 14.8859";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "1";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.0355 -65.7424 77.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-5.1132 -67.6643 97.1";rotation = "0 0 1 165.295";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "1";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-10.2431 -53.7059 78";rotation = "-0.146161 0.989261 1.25398e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "11";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "57.7569 -53.7059 100.5";rotation = "1.09407e-06 -1.90226e-12 1 163.191";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.1526 -48.4464 92.85";rotation = "-0.983977 -0.126073 -0.126075 90.9255";scale = "2.5 0.166667 20.0006";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.5071 -67.9109 94.1";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.2381 -69.1389 94.1";rotation = "0 0 1 165.397";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.6603 -56.7472 93.35";rotation = "-0.126073 0.983977 -0.126072 90.9255";scale = "0.125 0.166666 19.0003";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.0491 -59.0163 93.85";rotation = "0.704224 0.0902294 0.704221 169.688";scale = "0.125 0.166666 17.0003";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "-4.5145 -59.125 94.09";rotation = "0.521698 0.675029 0.521697 111.959";scale = "1.52 7.52017 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "4";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.5653 -58.8903 95.85";rotation = "0.704224 0.0902301 0.704221 169.688";scale = "0.125 0.166666 15.0003";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.7543 -69.0129 93.6";rotation = "0 0 -1 14.6025";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.3811 -68.3947 93.6";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.1765 -56.8732 96.35";rotation = "-0.126073 0.983977 -0.126072 90.9255";scale = "0.125 0.166666 17.0003";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-5.5331 -59.1419 96.85";rotation = "0.704224 0.0902301 0.704221 169.688";scale = "0.125 0.166666 19.0003";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.265 -47.5537 93.35";rotation = "-0.126075 0.983977 -0.126074 90.9256";scale = "0.125 0.166666 19";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.7812 -47.6797 93.85";rotation = "-0.126073 0.983977 -0.126072 90.9255";scale = "0.125 0.166666 17.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "0.246599 -47.5711 94.09";rotation = "0.620497 -0.479554 0.620493 231.241";scale = "1.52 7.52017 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "4";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "-10.8638 -65.4497 77.406";rotation = "-0.983977 -0.126076 -0.126072 90.925";scale = "3.88307 1.694 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.254 -68.8825 93.1";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.2974 -47.8057 95.85";rotation = "-0.126073 0.983977 -0.126072 90.9255";scale = "0.125 0.166666 15.0004";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "-6.8134 -64.6424 79.1";rotation = "0 0 1 157.5";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.7812 -47.6797 96.35";rotation = "-0.126073 0.983977 -0.126072 90.9255";scale = "0.125 0.166666 17.0002";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.265 -47.5537 96.85";rotation = "-0.126075 0.983977 -0.126074 90.9256";scale = "0.125 0.166666 19.0001";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-23.2207 -48.7659 78.85";rotation = "0.704224 0.0902316 0.704221 169.688";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCardPack";position = "-5.7009 -59.4302 79.315";rotation = "-0.0902288 0.704224 -0.704221 190.312";scale = "1 1 1";team = "1";ownerGUID = "2850746";NameHolder = "bigbang";GUIDHolder = "2710770";cardColor = "1";CardSetting = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-1.7062 -53.6353 97.1";rotation = "0 0 1 77.0852";scale = "1 1 1";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "4";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.659 -40.5866 94.1";rotation = "0 0 1 165.397";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.5652 -40.8186 93.6";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.1752 -40.4606 93.6";rotation = "0 0 -1 14.6029";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.8134 -64.6424 77.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-10.6935 -40.3353 93.1";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "0.511299 -55.5004 93.1";rotation = "0 0 1 64.4566";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2850746";deployed = "1";powerFreq = "4";switchRadius = "25";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.0816994 -62.846 78.85";rotation = "-0.126075 0.983977 -0.126074 90.9256";scale = "0.125 0.166666 13.7506";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "2.9345 -56.9363 94.1";rotation = "0 0 -1 14.6025";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.539301 -47.7427 94.1";rotation = "0 0 1 165.397";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.5297 -44.1546 78.85";rotation = "0.620498 -0.47955 0.620495 231.24";scale = "0.125 0.166666 38.0006";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.4184 -56.8102 93.6";rotation = "0 0 1 165.397";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.5699 -47.7326 93.35";rotation = "0.620498 -0.47955 0.620495 231.24";scale = "0.125 0.166666 18.0009";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.713 -55.9585 93.85";rotation = "0.521697 0.675031 0.521695 111.959";scale = "0.125 0.166666 16.0011";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField3";position = "3.8216 -55.4239 94.09";rotation = "-0.126076 0.983977 -0.126074 90.9256";scale = "1.52 7.02065 0.48";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "4";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.8219 -48.7002 95.85";rotation = "0.620498 -0.479548 0.620496 231.239";scale = "0.125 0.166666 14.0013";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.0231 -47.6167 93.6";rotation = "0 0 1 165.397";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.713 -55.9585 96.35";rotation = "0.521697 0.675031 0.521695 111.959";scale = "0.125 0.166666 16.0011";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.65 -55.7166 94.1";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.776 -56.2004 93.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.9022 -56.6842 93.1";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.7589 -48.4583 94.1";rotation = "0 0 -1 104.603";scale = "0.125 0.166666 4";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.6329 -47.9745 93.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 6";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "0.926701 -49.3656 97.1";rotation = "0 0 1 80.5413";scale = "1 1 1";team = "1";ownerGUID = "2850746";powerFreq = "1";initialBarrel = "PlasmaBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.5069 -47.4907 93.1";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "0.323601 -62.783 79.1";rotation = "0 0 1 180";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "-4.5927 -43.9127 79.1";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2850746";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "0.323601 -62.783 77.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.5927 -43.9127 77.6";rotation = "0 0 1 75.3972";scale = "0.125 0.166666 3";team = "1";ownerGUID = "2850746";needsfit = "1";powerFreq = "11";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2850746/Ranks/CnC4/Saved.Rank b/Univ/Data/2850746/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..266f6b5 --- /dev/null +++ b/Univ/Data/2850746/Ranks/CnC4/Saved.Rank @@ -0,0 +1,7 @@ +//Ranks File For GUID 2850746 +//Created On 2010-04-29, C&C 4 +$Rank::Name[2850746] = "UxA Savar"; +$Rank::Rank[2850746, 1] = "Private"; +$Rank::XP[2850746, 1] = 0; +$Rank::Rank[2850746, 2] = "Acolyte"; +$Rank::XP[2850746, 2] = 0; \ No newline at end of file diff --git a/Univ/Data/2859009/Buildings/2.cs b/Univ/Data/2859009/Buildings/2.cs new file mode 100644 index 0000000..4a5ccb5 --- /dev/null +++ b/Univ/Data/2859009/Buildings/2.cs @@ -0,0 +1,21 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Kromeh" +// Created in mission "slapmydash" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-458.113 -3029.9 283.157";rotation = "0.702237 -0.117174 0.702235 193.366";scale = "0.125 0.166666 998.006";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-295.447 -3085.49 263.156";rotation = "-0.973263 0.16241 0.162424 91.5495";scale = "85.9628 13.1663 1";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.092 -3191.99 243.407";rotation = "0 0 -1 71.0542";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.1732 -3191.75 283.157";rotation = "0.63122 0.450695 0.631217 131.478";scale = "0.125 0.166666 400";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "-141.04 -2874.68 242.407";rotation = "0 0 -1 71.0542";scale = "125 166.666 2";team = "1";ownerGUID = "2859009";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.1077 -3002.58 283.156";rotation = "0.63122 0.450695 0.631217 131.478";scale = "0.125 0.166666 197.985";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-458.346 -3029.81 243.407";rotation = "0 0 -1 71.0542";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-458.265 -3029.57 283.157";rotation = "0.63122 0.450695 0.631217 131.478";scale = "0.125 0.166666 400";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-393.331 -2840.41 283.156";rotation = "0.63122 0.450695 0.631217 131.478";scale = "0.125 0.166666 197.987";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "176.185 -2719.79 283.157";rotation = "-0.502422 0.703665 -0.502421 109.735";scale = "0.125 0.166666 400";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "176.03 -2719.47 283.157";rotation = "0.162396 0.97327 0.162396 91.5523";scale = "0.125 0.166666 400";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-106.771 -2622.38 283.156";rotation = "0.702237 -0.117174 0.702235 193.366";scale = "0.125 0.166666 198.003";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "176.266 -2719.55 243.407";rotation = "0 0 -1 71.0542";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-296.253 -2557.61 283.157";rotation = "-0.502422 0.703665 -0.502421 109.735";scale = "0.125 0.166666 400";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-295.936 -2557.45 283.157";rotation = "0.702237 -0.117174 0.702235 193.366";scale = "0.125 0.166666 400";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-296.172 -2557.37 243.407";rotation = "0 0 -1 71.0542";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2859009";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2860882/Ranks/Powers/Saved.Dat b/Univ/Data/2860882/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..c559f21 --- /dev/null +++ b/Univ/Data/2860882/Ranks/Powers/Saved.Dat @@ -0,0 +1,85 @@ +//--- OBJECT WRITE BEGIN --- +new SimSet(ClientData_2860882) { + + new ScriptObject(classData1_2860882) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData2_2860882) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData3_2860882) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData4_2860882) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData5_2860882) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData6_2860882) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData7_2860882) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData8_2860882) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData9_2860882) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; + new ScriptObject(classData10_2860882) { + class = "Undecided"; + + level = "1"; + spendPoints = "1"; + exp = "0"; + affinity = "0"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/2860882/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2860882/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..1883016 --- /dev/null +++ b/Univ/Data/2860882/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,178 @@ +//Ranks & Settings File For GUID 2860882 / Name: GM sora +//Created On 2010-11-14, Total Warfare Mod 2 3.5 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2860882) { + + new ScriptObject(TWM2Client_2860882) { + + challengeComplete15For15 = "1"; + xpGain79fc623db34a8f3812e787e6cfb126cdd2aaf8f8 = "5140"; + gameTime = "4472"; + noMoreEXPdd7dfcc969fa279e882307c86c4c61faece8aef0 = "0"; + challengeCompleteMilestone25 = "1"; + xpGain0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "150000"; + ArtyCalls = "8"; + bossDefeatCountStormrider = "1"; + noMoreEXP678ce4eaef5bc9edff9b0b0c449784a4c5735b8c = "0"; + challengeCompleteAirstrike3 = "1"; + noMoreEXPe1502ced42f93bcc2b3d94e1bd6aa4f224827afc = "0"; + hasMedalTheSourceOfAllEvil = "1"; + weaponKillsSA2400Image = "17"; + GunHeliCalls = "0"; + noMoreEXPdffb981985b108a05767a59d7086fcc040b69ee7 = "0"; + challengeCompletePulsePhaserImage_4 = "1"; + weaponKillsflamerImage = "25"; + noMoreEXPc9b1c8e149a084575e67d1204b521967027eeac5 = "0"; + challengeCompleteR700SniperRifleImage_2 = "1"; + bossDefeatCountGhostOfLightning = "3"; + weaponKillsS3RifleImage = "137"; + hasMedalHonorsC = "1"; + noMoreEXP0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "0"; + xpGainb0368046d129bf6f36fd8d3738013d518762379e = "240756"; + noMoreEXP32e62694dd31776e24f357b4acc4e988e3e000d3 = "0"; + bossDefeatCountTrebor = "1"; + hasMedalBurningNightmare = "1"; + weaponKillslasergunImage = "9"; + AirstrikeCalls = "140"; + weaponKillsMiniColliderCannonImage = "3"; + noMoreEXP49106f22de9d150fbd5606af00eb16405f8f8184 = "0"; + weaponKillsPulsePhaserImage = "1852"; + noMoreEXPe8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "0"; + officer = "0"; + weaponKillsM1SniperRifleImage = "2"; + weaponKillsMissileLauncherImage = "1"; + noMoreEXP4436560adc04b26b975f41b64e1a6fda2f8e2715 = "0"; + challengeCompletePulsePhaserImage_1 = "1"; + weaponKillsM4A1Image = "8"; + challengeCompletePulsePhaserImage_3 = "1"; + challengeCompleteWp400Image_1 = "1"; + weaponKillsMRXXImage = "10"; + CGCalls = "0"; + challengeCompleteS3RifleImage_1 = "1"; + noMoreEXP1c97952230da7e336c4f52ada01d327642bb2bf9 = "0"; + weaponKillsMiniChaingunImage = "16"; + weaponKillsM1700Image = "26"; + weaponKillsALSWPSniperRifleImage = "3"; + noMoreEXP5b576b6bae0c6065b4af156a60df188dec2b8b77 = "0"; + weaponKillsMp26CMDOImage = "46"; + xpGain1c97952230da7e336c4f52ada01d327642bb2bf9 = "27538"; + challengeCompletePulsePhaserImage_6 = "1"; + HarrierCalls = "0"; + xpGain91add7cf7886d77002ae84ea77fa577c0db892c1 = "115"; + rank = "Master General I"; + hasMedalLordraniussFall = "1"; + noMoreEXP344a199fa5d3cafb644ed4f9c40b81e18f813131 = "0"; + hasMedalHonorsA = "1"; + noMoreEXP4748a65e36180e18f5c4b0672b73c1d9ac593a59 = "0"; + weaponKillsWp400Image = "101"; + hasMedalGamerExcuisite = "1"; + weaponKillsIonLauncherImage = "1"; + HWCalls = "0"; + UAVCalls = "3"; + challengeCompleteVard1 = "1"; + noMoreEXP79fc623db34a8f3812e787e6cfb126cdd2aaf8f8 = "0"; + xpGain32e62694dd31776e24f357b4acc4e988e3e000d3 = "1616"; + weaponKillsPg700Image = "6"; + xpGain9269cc40c2d1c3fb86d3050891b1c131197733f3 = "1050"; + ZBCalls = "0"; + xpGaindffb981985b108a05767a59d7086fcc040b69ee7 = "296278"; + xpGain49106f22de9d150fbd5606af00eb16405f8f8184 = "7382"; + weaponKillsR700SniperRifleImage = "687"; + name = "GM Sora"; + xpGain4748a65e36180e18f5c4b0672b73c1d9ac593a59 = "21516"; + hasMedalHonorsB = "1"; + hasMedalTheUltimateHeadshot = "1"; + noMoreEXP210d351bb624ae5ad4d9a809052effee70e492e4 = "0"; + challengeCompleteS3RifleImage_2 = "1"; + hasMedalRevengeAvoidedAgain = "1"; + xpGain66f9b979109c7805e14d70e1f232dc911c3d02d9 = "6918"; + xpGaindd7dfcc969fa279e882307c86c4c61faece8aef0 = "16356"; + hasMedalThundaStruk = "1"; + money = "721948"; + noMoreEXPbfd3af5ac87c8ba425473a98c935ec3a04b4aa41 = "0"; + weaponKillsNapalmImage = "6"; + challengeCompleteR700SniperRifleImage_3 = "1"; + challengeCompleteWp400Image_2 = "1"; + bossDefeatCountLordRog = "1"; + xpGaine1502ced42f93bcc2b3d94e1bd6aa4f224827afc = "90402"; + noMoreEXPb3ecd6a042138ace6e6e520b92e60ce7b575fbdc = "0"; + bossDefeatCountGhostOfFire = "1"; + challengeCompleteGOL1 = "1"; + challengeCompleteR700SniperRifleImage_1 = "1"; + SlthAirstrikeCalls = "4"; + GMCalls = "8"; + millionxp = "1"; + xpGain4436560adc04b26b975f41b64e1a6fda2f8e2715 = "154630"; + hasMedalTheNewGeneral = "1"; + weaponKillspistolImage = "7"; + noMoreEXP66f9b979109c7805e14d70e1f232dc911c3d02d9 = "0"; + challengeCompleteAirstrike1 = "1"; + NukeCalls = "2"; + rankNumber = "55"; + challengeCompletePulsePhaserImage_2 = "1"; + weaponKillsspikerImage = "14"; + hasMedalSkyFront = "1"; + noMoreEXP91add7cf7886d77002ae84ea77fa577c0db892c1 = "0"; + xpGain9f9f6ffda9ca0bd2be965b08866db8cb98f282a8 = "12"; + noMoreEXPd7504611f39e0e76f22e9ab2420aa86ebe0f5bdc = "0"; + xpGainbe9a5829793c53f1637ac00e5e5b05439fad7c54 = "972"; + noMoreEXPb0368046d129bf6f36fd8d3738013d518762379e = "0"; + challengeCompletePulsePhaserImage_5 = "1"; + noMoreEXPbe9a5829793c53f1637ac00e5e5b05439fad7c54 = "0"; + hasMedalNuclearDawn = "1"; + xpGain210d351bb624ae5ad4d9a809052effee70e492e4 = "4572"; + weaponKillsS3SRifleImage = "200"; + bossDefeatCountVengenor = "1"; + xp = "542896"; + noMoreEXP57cb7f038966d92fd9a6f6dc2c7e8c99d44b3cb0 = "0"; + noMoreEXP9f9f6ffda9ca0bd2be965b08866db8cb98f282a8 = "0"; + challengeCompleteAirstrike2 = "1"; + noMoreEXP8bbe7394b0e5a3d86a804b4fd14d9a293988f9af = "0"; + xpGainc9b1c8e149a084575e67d1204b521967027eeac5 = "443928"; + xpGain9b2fe339eba643a579236518f96010aab9e83524 = "2360"; + noMoreEXP9269cc40c2d1c3fb86d3050891b1c131197733f3 = "0"; + HeliCalls = "19"; + bossDefeatCountVardison3 = "2"; + weaponKillsG17SniperRifleImage = "17"; + xpGain5b576b6bae0c6065b4af156a60df188dec2b8b77 = "556"; + noMoreEXP9b2fe339eba643a579236518f96010aab9e83524 = "0"; + }; + new ScriptObject(CCD_2860882) { + + expireDate = "20130531"; + }; + new ScriptObject(ClientStore2860882) { + + purchasedThunderstorm = "0"; + nextLoto = "0"; + purchasedHologram = "0"; + purchasedFalseExplosion = "0"; + nextSlot = "0"; + purchasedGuardianFlare = "0"; + purchasedSpontaneousCombustion = "0"; + purchasedFireworks = "0"; + }; + new ScriptObject(CCD_2860882) { + + expireDate = "20130430"; + }; + new ScriptObject(CCD_2860882) { + + expireDate = "20130531"; + }; + new ScriptObject(CCD_2860882) { + + ZombieKillCount20130511_PulsePhaserImage_1 = "16"; + ZombieKillCount20130511_M1SniperRifleImage_1 = "27"; + killstreakCalls20130511_2 = "1"; + expireDate = "20130531"; + ZombieKillCount20130511_0_1 = "47"; + totalZombieKillCount20130511 = "47"; + ZombieKillCount20130511__1 = "4"; + }; + new ScriptObject(CCD_2860882) { + + expireDate = "20130731"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2860955/Ranks/CnC4/Saved.Rank b/Univ/Data/2860955/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..9e932b5 --- /dev/null +++ b/Univ/Data/2860955/Ranks/CnC4/Saved.Rank @@ -0,0 +1,26 @@ +//Ranks File For GUID 2860955 +//Created On 2010-04-17, C&C 4 +$Rank::Name[2860955] = "{Fiend}"; +$Rank::Rank[2860955, 1] = "Private"; +$Rank::XP[2860955, 1] = 981; +$Rank::Rank[2860955, 2] = "Acolyte"; +$Rank::XP[2860955, 2] = 0; +$CNC::Deaths[2860955] = 11; +$CNC::TotalBuilds[2860955] = 3; +$CNC::BuildingsBuilt[2860955, "PowerPlant"] = 2; +$CNC::BuildingsBuilt[2860955, "Bunker"] = 1; +$CNC::KilledByObj[2860955, ObeliskTurretDeployedBase] = 1; +$CNC::TotalKills[2860955] = 13; +$CNC::Kills[2860955, 2687806] = 1; +$CNC::Kills[2860955, 2148110] = 2; +$CNC::Kills[2860955, 2000343] = 4; +$CNC::Kills[2860955, 2703588] = 4; +$CNC::TotalBuildingKills[2860955] = 1; +$CNC::BuildingKills[2860955, "ObeliskOfLight"] = 1; +$CNC::KilledByPl[2860955, 2000343] = 2; +$CNC::Kills[2860955, 2485526] = 1; +$CNC::UKills[2860955] = 1; +$CNC::TotalCrawlerKills[2860955] = 2; +$CNC::CrawlerKills[2860955, 2485526] = 1; +$CNC::KilledByPl[2860955, 2485526] = 1; +$CNC::CrawlerKills[2860955, 2703588] = 1; \ No newline at end of file diff --git a/Univ/Data/2873998/Buildings/1.cs b/Univ/Data/2873998/Buildings/1.cs new file mode 100644 index 0000000..16dfd6a --- /dev/null +++ b/Univ/Data/2873998/Buildings/1.cs @@ -0,0 +1,74 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Captain Picard" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "1.58484 -172.653 128.151";rotation = "0.979812 0.141367 -0.141367 91.1685";scale = "1 1 1";team = "1";ownerGUID = "2873998";powerFreq = "3.14";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.89532 -172.822 119.75";rotation = "-0.141364 0.979811 -0.141371 91.169";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.41571 -172.964 122.083";rotation = "-0.141367 0.979812 -0.141367 91.1685";scale = "0.125 0.166666 18.9998";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.65551 -172.893 120";rotation = "0 0 1 163.58";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.086 -178.559 119.75";rotation = "0.288028 0.91328 0.288028 95.1913";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.67646 -178.273 122.07";rotation = "0.288032 0.913278 0.28803 95.1907";scale = "0.125 0.166666 18.9996";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "-7.69675 -175.65 128.917";rotation = "0.141362 -0.979812 -0.141367 91.1684";scale = "0.40111 0.262746 0.576629";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-8.02264 -175.787 128.161";rotation = "0.724571 0.48734 -0.487336 108.148";scale = "1 1 1";team = "1";ownerGUID = "2873998";powerFreq = "3.14";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "1.89551 -172.823 128.91";rotation = "-0.288036 -0.913276 0.288032 95.1901";scale = "0.401506 0.262746 0.576623";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.79109 -175.881 120";rotation = "0 0 1 112.151";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.55955 -175.975 119.75";rotation = "-0.429494 0.638567 -0.638567 226.486";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "-2.82112 -174.473 119.75";rotation = "0.101492 -0.703454 0.703458 168.409";scale = "0.289401 0.105098 0.606984";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "10.0247 -178.211 128.454";rotation = "0.913278 -0.288032 0.28803 95.1907";scale = "1 1 1";team = "1";ownerGUID = "2873998";powerFreq = "3.14";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.41571 -172.964 135.75";rotation = "-0.141367 0.979812 -0.141367 91.1685";scale = "0.125 0.166666 18.9998";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "5.98848 -175.994 119.75";rotation = "0.217665 0.690153 -0.690153 155.442";scale = "0.289401 0.0998434 0.606984";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "1.72619 -173.132 119.75";rotation = "0.101492 -0.703454 0.703458 168.409";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.69683 -175.649 119.75";rotation = "-0.487336 0.724571 -0.487341 108.148";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.67646 -178.273 135.75";rotation = "0.288032 0.913278 0.28803 95.1907";scale = "0.125 0.166666 18.9996";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.88123 -178.416 120";rotation = "0 0 1 215.009";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "3.95206 -180.685 120";rotation = "0 0 1 44.1168";scale = "1 1 1";team = "1";ownerGUID = "2873998";deployed = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.1271 -185.007 119.75";rotation = "0.770076 -0.451104 0.451097 104.802";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-0.3114 -179.23 119.75";rotation = "-0.938046 -0.245023 -0.245018 93.662";scale = "0.125 0.166666 11";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.88535 -176.113 122.069";rotation = "-0.48734 0.724571 -0.487336 108.148";scale = "0.125 0.166666 18.9981";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.06082 -181.355 119.75";rotation = "-0.639686 -0.543506 -0.543509 114.787";scale = "0.125 0.166666 11";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "-9.36431 -180.408 119.75";rotation = "-0.429494 0.638567 -0.638567 226.486";scale = "0.289401 0.0998434 0.606984";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.71045 -180.833 119.75";rotation = "-0.96375 0.188656 0.188664 92.115";scale = "0.125 0.166666 11";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "-11.467 -184.911 128.91";rotation = "0.487333 -0.724573 -0.487339 108.148";scale = "0.401537 0.262746 0.576577";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-4.72323 -185.644 119.75";rotation = "0.299432 0.674661 0.674666 213.339";scale = "0.125 0.166666 11";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.7075 -188.54 119.75";rotation = "0.565002 0.601283 0.565006 117.965";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-0.05033 -184.113 120.4";rotation = "0.795366 -0.606129 -7.68324e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2873998";deployed = "1";powerFreq = "3.14";frequency = "25";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);schedule(checkPowerObject(%building),%building.teleMode,getField(%building.getOwner().moveSetting,0),getField(%building.getOwner().moveSetting,1));addToDeployGroup(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-2.05033 -185.413 120.4";rotation = "-3.75463e-06 -7.07455e-13 1 74.6203";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "-0.00907004 -184.221 119.6";rotation = "5.79632e-06 -3.79249e-06 1 150.723";scale = "11.76 11.76 0.3";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "10.1641 -183.835 119.75";rotation = "0.553424 0.588951 -0.588947 122.078";scale = "0.289401 0.105098 0.606984";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.6765 -188.04 122.062";rotation = "0.565007 0.601279 0.565004 117.964";scale = "0.125 0.166666 18.9987";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.73781 -178.62 119.75";rotation = "0.217665 0.690153 -0.690153 155.442";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.2899 -193.428 119.75";rotation = "0.993457 -0.0807525 0.0807545 90.3755";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "4.95005 -184.956 119.75";rotation = "-0.687049 0.513793 0.51379 111.018";scale = "0.125 0.166666 11";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.88535 -176.113 135.75";rotation = "-0.48734 0.724571 -0.487336 108.148";scale = "0.125 0.166666 18.9981";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-1.8382 -188.82 119.75";rotation = "-0.0219906 0.706937 0.706935 177.481";scale = "0.125 0.166666 11";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "10.0862 -178.559 128.906";rotation = "-0.565007 -0.601277 0.565007 117.965";scale = "0.40175 0.262746 0.576595";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "2.51944 -188.49 119.75";rotation = "-0.345387 0.663596 0.663588 141.892";scale = "0.125 0.166666 11";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "-8.76209 -189.225 119.75";rotation = "0.770076 -0.451104 0.451097 104.802";scale = "0.289401 0.0945885 0.606984";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.3451 -185.129 120";rotation = "0 0 1 60.7226";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "6.69398 -191.834 119.75";rotation = "0.878149 0.338275 -0.338268 97.4241";scale = "0.289401 0.0998434 0.606984";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.6765 -188.04 135.75";rotation = "0.565007 0.601279 0.565004 117.964";scale = "0.125 0.166666 18.9987";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.4424 -188.306 119.75";rotation = "0.553424 0.588951 -0.588947 122.078";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "2.66793 -188.714 120";rotation = "0 0 1 161.638";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2873998";deployed = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.30941 -194.896 119.75";rotation = "0.878149 0.338275 -0.338268 97.4241";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "0.0208499 -184.278 135.8";rotation = "0.76207 0.647495 2.23505e-06 180";scale = "38 38 0.1";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "-1.71996 -194.176 119.75";rotation = "0.993457 -0.0807525 0.0807545 90.3755";scale = "0.289401 0.110353 0.606984";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-11.5632 -185.251 128.21";rotation = "0.382685 0.653283 -0.653279 138.118";scale = "1 1 1";team = "1";ownerGUID = "2873998";powerFreq = "3.14";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.4674 -184.911 119.75";rotation = "0.653282 -0.382684 0.65328 221.882";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.2228 -185.347 122.059";rotation = "0.653283 -0.382685 0.653279 221.882";scale = "0.125 0.166666 18.9991";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "10.9415 -188.274 128.453";rotation = "0.601279 -0.565007 0.565004 117.964";scale = "1 1 1";team = "1";ownerGUID = "2873998";powerFreq = "3.14";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "10.692 -188.29 120";rotation = "0 0 -1 93.5629";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "-0.133564 -184.69 135.8";rotation = "0 0 -1 13.3308";scale = "1 1 1";team = "1";ownerGUID = "2873998";deployed = "1";powerFreq = "3.14";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.29173 -195.249 119.75";rotation = "0.682247 0.262811 0.682253 150.55";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "-6.57722 -193.633 128.904";rotation = "-0.653275 0.382691 0.653283 221.882";scale = "0.401841 0.262746 0.576607";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.66251 -194.913 122.098";rotation = "0.682252 0.26281 0.682249 150.55";scale = "0.125 0.166666 19.0015";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "10.708 -188.539 128.924";rotation = "-0.682251 -0.262804 0.682252 150.55";scale = "0.400653 0.262746 0.576677";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.57699 -193.634 119.75";rotation = "0.705941 -0.0573831 0.705942 186.568";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.2228 -185.347 135.75";rotation = "0.653283 -0.382685 0.653279 221.882";scale = "0.125 0.166666 18.9991";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.08355 -193.714 122.075";rotation = "0.705943 -0.0573829 0.70594 186.568";scale = "0.125 0.166666 18.999";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.33027 -193.674 120";rotation = "0 0 1 9.2941";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.66251 -194.913 135.75";rotation = "0.682252 0.26281 0.682249 150.55";scale = "0.125 0.166666 19.0015";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "3.29124 -195.248 128.912";rotation = "-0.70594 0.0573848 0.705943 186.569";scale = "0.401354 0.262746 0.576604";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.47712 -195.081 120";rotation = "0 0 -1 42.1343";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "-6.37065 -193.921 128.208";rotation = "0.0573829 0.705943 -0.70594 173.431";scale = "1 1 1";team = "1";ownerGUID = "2873998";powerFreq = "3.14";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "3.64484 -195.266 128.302";rotation = "-0.26281 0.682252 -0.682249 209.45";scale = "1 1 1";team = "1";ownerGUID = "2873998";powerFreq = "3.14";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.08355 -193.714 135.75";rotation = "0.705943 -0.0573829 0.70594 186.568";scale = "0.125 0.166666 18.999";team = "1";ownerGUID = "2873998";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2873998/Buildings/Saved.cs b/Univ/Data/2873998/Buildings/Saved.cs new file mode 100644 index 0000000..cf726af --- /dev/null +++ b/Univ/Data/2873998/Buildings/Saved.cs @@ -0,0 +1 @@ +// Garbage. Delete me please. \ No newline at end of file diff --git a/Univ/Data/2884678/Buildings/1.cs b/Univ/Data/2884678/Buildings/1.cs new file mode 100644 index 0000000..6159823 --- /dev/null +++ b/Univ/Data/2884678/Buildings/1.cs @@ -0,0 +1,230 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "henry" +// Created in mission "slapmydash" +// Construction v0.70 Development Version 1 + +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "-19.8186 -224.118 128.949";rotation = "-1 -0 0 1.04679";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "91.863 -212.101 130.387";rotation = "-0.899034 0.437824 -0.0069279 2.71248";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "20.6103 -243.889 130.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.8499 -244.261 129.938";rotation = "0 0 1 181.307";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "26.6088 -244.026 130.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "14.0636 -244.598 131.314";rotation = "-0.573251 0.579387 0.579391 120.353";scale = "22.1573 1.343 0.48";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.8262 -244.355 130.128";rotation = "0 0 -1 89.39";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "32.6072 -244.163 130.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.0998 -244.267 130.188";rotation = "0.707085 -0.00806544 0.707082 180.924";scale = "0.125 0.166666 56.0572";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "38.6056 -244.3 130.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.7794 -248.741 130.007";rotation = "0.575286 -0.581442 -0.575301 119.647";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.0762 -244.358 130.378";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "44.604 -244.437 130.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.0762 -244.358 130.709";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.0732 -244.879 131.096";rotation = "0.0053231 0.999972 0.00532308 90.002";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.568 -245.374 130.378";rotation = "-0.573252 0.579385 0.579392 120.353";scale = "0.125 0.166666 96.9998";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.5642 -245.723 130.378";rotation = "-0.573252 0.579385 0.579392 120.353";scale = "0.125 0.166666 95.9998";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.6024 -244.574 130.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "41.6312 -244.401 133.203";rotation = "0.00376408 0.707102 0.707102 180.431";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.0732 -244.879 133.203";rotation = "0.0053231 0.999972 0.00532308 90.002";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.0732 -244.879 133.47";rotation = "0.0053231 0.999972 0.00532308 90.002";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.0762 -244.358 133.878";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.6008 -244.711 130.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.5992 -244.848 130.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.7155 -254.741 130.007";rotation = "0.575288 -0.581443 -0.575297 119.644";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.0991 -244.859 130.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.349 -244.865 129.938";rotation = "0 0 1 181.307";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.3433 -245.115 130.188";rotation = "0.00806544 0.707085 -0.707082 179.076";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "63.0806 -245.119 131.336";rotation = "0.00376316 0.7071 0.707103 180.432";scale = "49.0198 1.637 0.48";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "36.5906 -254.241 133.367";rotation = "0.00376376 0.707099 0.707104 180.431";scale = "0.125 0.166666 18.787";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.3232 -244.882 130.128";rotation = "0 0 -1 89.39";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.8461 -257.846 133.367";rotation = "0.00376277 0.707099 0.707104 180.431";scale = "0.125 0.166666 26.0114";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.5879 -257.865 133.338";rotation = "0.00376277 0.707099 0.707104 180.431";scale = "0.125 0.166666 26.0134";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "38.4067 -257.874 133.367";rotation = "0.00376277 0.707099 0.707104 180.431";scale = "0.125 0.166666 26.0134";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.3046 -257.883 133.312";rotation = "0.00376277 0.707099 0.707104 180.431";scale = "0.125 0.166666 26.0134";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.8235 -244.605 130.378";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.846 -257.889 133.367";rotation = "0.579388 0.573249 0.579392 120.353";scale = "0.125 0.166666 26.0136";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.8235 -244.605 130.717";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.3181 -245.11 130.378";rotation = "0.0037613 0.707103 -0.707101 179.568";scale = "0.125 0.166666 43.3944";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.8235 -244.605 131.074";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.8235 -244.605 132.897";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.8235 -244.605 133.193";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.8235 -244.605 133.539";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.8235 -244.605 133.878";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.6517 -260.741 130.007";rotation = "0.575287 -0.581446 -0.575296 119.646";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "51.4461 -253.38 130.128";rotation = "0 0 1 91.7305";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.8433 -245.115 130.188";rotation = "-0.572911 0.58613 -0.572909 119.249";scale = "0.125 0.166666 26.0048";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "35.1161 -255.024 134.128";rotation = "0 0 1 91.7626";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "36.5521 -257.854 133.367";rotation = "0.00376277 0.707099 0.707104 180.431";scale = "0.125 0.166666 7.22642";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.5934 -258.115 133.617";rotation = "0.00532131 0.999986 1.26757e-06 180";scale = "1.00001 0.166666 6.978";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "47.5584 -255.407 134.128";rotation = "0 0 1 91.7626";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "35.8222 -260.096 133.117";rotation = "-0.703334 0.71086 9.01079e-07 180";scale = "0.875051 0.166666 5.978";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "3";moving = "open";prevscale = "0.875051 0.166666 5.978";state = "closed";timeout = ".5";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "37.4894 -260.363 130.128";rotation = "0 0 1 144.829";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "2";isSwitchedOff = "1";switchRadius = "150";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5878 -266.741 130.007";rotation = "0.57529 -0.581446 -0.575293 119.648";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "40.072 -260.142 131.872";rotation = "-0.573251 0.579387 0.579391 120.353";scale = "1.12506 1.16334 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.3319 -245.615 130.188";rotation = "0.00806494 0.707085 -0.707082 179.076";scale = "0.125 0.166666 43.8314";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.8408 -258.346 133.367";rotation = "0.0037654 0.707103 -0.707101 179.569";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.8221 -260.117 133.617";rotation = "0.999986 -0.00532272 6.98964e-08 180";scale = "0.875 1.16673 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "51.2276 -272.632 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 55.2552";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.5508 -262.115 133.117";rotation = "-0.703334 0.71086 9.01079e-07 180";scale = "0.125 1.33335 5.978";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "46.051 -259.495 134.128";rotation = "0 0 1 89.4834";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (BeaconObject) () {datablock = "DeployedBeacon";position = "18.6344 -266.175 128.988";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2884678";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "36.0509 -262.098 133.367";rotation = "0.573252 -0.579387 0.579391 120.353";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5852 -266.991 133.628";rotation = "0.710861 0.703333 8.91538e-07 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "11.1346 -268.979 128.603";rotation = "-0.169328 0.171141 0.970587 92.3196";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.4098 -264.112 130.188";rotation = "0.00805695 0.707085 0.707083 180.924";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "13.7851 -270.754 133.638";rotation = "0.581445 0.575291 -0.575294 119.651";scale = "3.5202 3.604 0.48";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "29.6313 -267.994 130.128";rotation = "0 0 -1 90.9674";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.8072 -293.108 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.2867 -293.113 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "15.308 -293.124 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "16.4674 -293.136 133.054";rotation = "0.999971 -0.0053259 0.00538416 90.0042";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "17.5943 -293.148 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5453 -270.741 133.878";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "19.2457 -293.166 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "20.8759 -293.183 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "13.3147 -268.922 133.878";rotation = "-0.573252 0.579389 0.579388 120.353";scale = "1 1 1";team = "1";ownerGUID = "2884678";nametoset = "Energy Modified Projector";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "21.6258 -293.191 133.054";rotation = "0.999971 -0.0053259 0.00538416 90.0042";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "22.6601 -293.202 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.4314 -293.221 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "43.2447 -270.217 125.028";rotation = "-0 -0 1 90.2873";scale = "12.5 16.6666 3";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "47.4464 -268.765 130.128";rotation = "0 0 1 179.807";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.8555 -293.236 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "27.3075 -293.251 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 96.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "28.5343 -293.264 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 96.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "35.6148 -268.781 130.128";rotation = "0 0 -1 83.6753";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5426 -270.991 133.628";rotation = "-0.703334 0.71086 9.01079e-07 180";scale = "0.125 0.166666 7.38";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "30.3325 -293.284 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "38.4128 -269.905 128.543";rotation = "-0 -0 1 92.0245";scale = "12.5 16.6666 3";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "31.5555 -293.297 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "33.1766 -293.314 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.0902 -293.324 133.054";rotation = "0.999972 -0.00532595 0.00534267 90.0037";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.9889 -293.333 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 96.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5453 -270.741 133.878";rotation = "-0.575287 0.581449 -0.575293 119.648";scale = "0.125 0.166666 1.00006";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.948 -293.386 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "40.8989 -293.396 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "42.1137 -293.409 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "38.3109 -269.368 134.128";rotation = "0.999986 -0.00532451 -3.36726e-06 180";scale = "12.2499 16.3333 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.4138 -293.423 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "44.6266 -293.436 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "35.1905 -262.261 149.628";rotation = "2.03114e-12 1 -1.09085e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2884678";nametoset = "Energy Modified Projector";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "-21.7333 -273.326 132.264";rotation = "0.0423137 0.999104 1.26646e-06 180";scale = "0.720274 0.466678 3.16762";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";canmove = 1;Collision = 1;isdoor = "1";issliding = "0";lv = "2";moving = "open";prevscale = "0.720274 0.466678 3.16762";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.4624 -293.445 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.273 -270.11 130.188";rotation = "0.00805864 0.707085 0.707083 180.924";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "46.3414 -293.454 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.2978 -293.464 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 96.9994";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.3363 -293.475 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 96.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "49.0114 -293.483 133.055";rotation = "0.999972 -0.00532595 0.00534267 90.0037";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "49.8056 -293.491 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-20.6208 -273.42 132.514";rotation = "0.706791 -0.0299335 -0.706789 176.571";scale = "0.125 0.166666 4.46582";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.4418 -262.141 149.878";rotation = "-0.58145 -0.575288 -0.575292 119.65";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "51.9845 -293.514 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.6162 -272.949 138.438";rotation = "0.736392 0.676556 8.57595e-07 180";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-16.6488 -273.757 138.438";rotation = "0.736392 0.676556 8.57595e-07 180";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "-24.6064 -273.1 138.438";rotation = "0.999104 -0.0423135 -5.36362e-08 180";scale = "3.47785 0.97847 17.2727";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "-18.7593 -273.578 138.438";rotation = "0.999104 -0.0423135 -5.36362e-08 180";scale = "3.67999 0.97847 17.2727";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "53.2312 -293.527 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 96.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "-22.0442 -275.601 129.332";rotation = "0.998996 -0.0448024 -5.67912e-08 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2884678";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "1";emitterBlock = "VehicleFoamEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.7513 -271.891 129.049";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "15 20 20";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.8709 -293.545 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "36.6953 -271.929 129.058";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "15 20 20";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.8919 -293.556 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.4413 -262.226 149.878";rotation = "-0.581449 -0.575285 -0.575295 119.647";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.1317 -293.569 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "-21.7544 -273.574 135.492";rotation = "0.998211 -0.0422736 0.0422723 90.1027";scale = "2.19926 11.5284 0.909091";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.8206 -245.127 130.378";rotation = "-0.999972 0.00532205 0.00532553 90.002";scale = "0.125 0.166666 97.9976";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.2111 -293.581 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "50.0345 -271.699 130.128";rotation = "0 0 1 89.5327";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.7989 -294.129 130.378";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.3205 -245.132 130.828";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "59.5485 -293.595 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.7989 -294.129 131.122";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "51.1855 -262.811 149.628";rotation = "1.94088e-11 1 -2.04989e-06 180.001";scale = "1 1 1";team = "1";ownerGUID = "2884678";nametoset = "Energy Modified Projector";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.6786 -293.607 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "61.843 -293.619 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.1092 -269.888 149.878";rotation = "0.0037661 0.707103 0.707101 180.432";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.3639 -272.933 138.688";rotation = "-0.609919 -0.560359 -0.560354 117.238";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.3205 -245.132 133.27";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.7989 -294.129 133.549";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-22.093 -278.205 129.338";rotation = "0.999331 0.0365664 4.63512e-08 180";scale = "3 3 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-22.093 -278.205 129.338";rotation = "-6.93077e-05 -8.74857e-13 -1 4.19185";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.3205 -245.132 133.878";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "-17.594 -277.283 132.535";rotation = "0.854728 0.519076 6.57976e-07 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2884678";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "1";emitterBlock = "VehicleFoamEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.1489 -266.181 149.628";rotation = "-3.87521e-06 -3.4598e-06 1 180.611";scale = "1.87501 2.50014 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "-22.2394 -278.885 129.332";rotation = "0.99907 -0.0431281 -5.46688e-08 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2884678";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "1";emitterBlock = "VehicleFoamEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.1061 -270.224 134.128";rotation = "0 0 1 180.611";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.1887 -262.474 149.878";rotation = "-0.999972 0.00533575 0.00532423 90.0025";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.1362 -276.108 130.188";rotation = "0.00806034 0.707085 0.707083 180.924";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.1485 -266.267 149.628";rotation = "-8.85587e-06 1.97903e-07 1 180.611";scale = "1.87498 2.50047 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "25.0506 -279.555 130.443";rotation = "0.794298 0.607528 7.70097e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "25.0506 -279.555 130.443";rotation = "-3.74375e-06 1.17796e-13 -1 74.822";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "-26.7882 -277.934 133.688";rotation = "0.609915 0.560362 -0.560355 117.241";scale = "9.32032 18.591 0.909091";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "-17.3207 -278.718 133.688";rotation = "-0.609919 -0.560356 -0.560357 117.24";scale = "9.35684 18.591 0.909091";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-17.7205 -278.698 133.703";rotation = "-0.609921 -0.560354 -0.560358 117.24";scale = "3 3 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-17.7205 -278.698 133.703";rotation = "0.609923 0.560356 -0.560353 117.24";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "-26.3685 -277.643 134.732";rotation = "0.989774 -0.142646 -1.80817e-07 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2884678";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "1";emitterBlock = "VehicleFoamEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-26.4333 -278.483 133.474";rotation = "-0.544786 0.592962 0.592962 122.839";scale = "3 3 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-26.4333 -278.483 133.474";rotation = "0.544781 -0.592964 0.592965 122.838";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "51.1882 -262.559 149.878";rotation = "-0.999972 0.00533895 0.00531999 90.0014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "36.0345 -293.344 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 61.9876";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.229 -293.357 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 61.9876";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "38.3478 -293.369 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 61.9874";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "53.7661 -274.412 134.128";rotation = "0 0 1 88.3352";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.1236 -293.378 133.054";rotation = "0.999972 -0.00532595 0.00534267 90.0037";scale = "0.125 0.166666 61.9894";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "-22.5065 -277.948 138.044";rotation = "0.952095 0.305803 3.87633e-07 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2884678";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "1";emitterBlock = "VehicleFoamEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "51.1433 -280.551 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 15.8389";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5399 -271.241 130.188";rotation = "0.579389 0.573254 -0.579386 239.647";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.8018 -293.607 130.378";rotation = "0.00376186 0.707103 0.707101 180.432";scale = "0.125 0.166666 44.8666";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.3019 -293.602 130.378";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "42.8561 -270.221 149.878";rotation = "0.0053286 0.999972 0.00532858 90.002";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.3019 -293.602 130.721";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-27.4374 -282.627 138.688";rotation = "0.0299336 0.706791 0.706789 183.429";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-17.4732 -283.472 138.688";rotation = "0.592965 0.544781 0.592964 122.839";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.3019 -293.602 131.039";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "-22.0537 -278.317 138.438";rotation = "8.6921e-07 2.29694e-06 -1 85.1496";scale = "9.35688 18.591 0.909091";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-21.9192 -278.709 138.038";rotation = "0 0 1 189.805";scale = "3 3 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-21.9192 -278.709 138.038";rotation = "0.0854643 0.996341 -1.26295e-06 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "63.2588 -274.422 133.549";rotation = "-0.581449 -0.57529 -0.57529 119.648";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.3019 -293.602 133.054";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.3019 -293.602 133.325";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.3561 -270.227 149.878";rotation = "0.707103 -0.00376964 0.707101 180.432";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.3019 -293.602 133.602";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.3019 -293.602 133.878";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "25.0748 -283.786 130.443";rotation = "0.71241 0.701764 8.89549e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "25.0748 -283.786 130.443";rotation = "-3.09311e-06 -7.95898e-13 -1 89.1373";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-22.3472 -282.656 134.188";rotation = "-0.998211 0.0422821 0.042282 90.1028";scale = "3 3 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-22.3472 -282.656 134.188";rotation = "0.998211 -0.0422821 0.0422823 90.1022";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "-22.5643 -282.644 134.878";rotation = "0.990766 0.135584 1.71865e-07 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2884678";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "1";emitterBlock = "VehicleFoamEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-27.4585 -282.876 138.438";rotation = "0.0423137 0.999104 1.26646e-06 180";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.1061 -270.224 150.128";rotation = "0 0 1 180.611";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "-22.4975 -283.547 133.688";rotation = "0.0299337 0.706788 0.706791 183.43";scale = "9.35684 18.591 0.909091";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.0239 -277.888 149.863";rotation = "0.00376893 0.707103 0.707101 180.432";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-17.4943 -283.721 128.938";rotation = "0 0 1 4.85022";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.9994 -282.106 130.188";rotation = "0.00806204 0.707085 0.707082 180.924";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.0636 -274.181 149.613";rotation = "1.87474e-06 -2.95149e-06 1 180.611";scale = "1.87501 2.50014 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.1034 -270.474 149.863";rotation = "-0.575288 0.581454 -0.575287 119.646";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.8321 -267.525 130.188";rotation = "0.00806445 0.707085 -0.707082 179.076";scale = "0.125 0.166666 53.2098";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "43.1061 -270.224 157.628";rotation = "-0 -0 1 90.572";scale = "1.25 1.66666 2";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.0632 -274.267 150.113";rotation = "0.00532677 0.999986 2.87405e-06 180.001";scale = "1.87501 2.49981 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-17.7434 -283.7 138.688";rotation = "0.0422757 0.998211 0.0422756 90.1028";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "51.023 -278.059 149.863";rotation = "0.999972 -0.005322 0.00533284 90.0014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "35.0266 -277.638 149.613";rotation = "-1.48885e-13 1 -1.06952e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2884678";nametoset = "Energy Modified Projector";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "51.0794 -286.551 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "42.7708 -278.221 149.863";rotation = "-0.573249 0.57939 0.57939 120.353";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "43.3561 -270.225 158.628";rotation = "0 0 -1 89.4175";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";nametoset = "Modern UltraTrack Limited edition model 243XLRH";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "49.4355 -286.808 130.128";rotation = "0 0 1 90.6207";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.2708 -278.226 149.863";rotation = "-0.573245 0.579392 -0.579392 239.647";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.8626 -288.104 130.188";rotation = "0.00806373 0.707085 0.707082 180.924";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "50.8839 -278.307 149.613";rotation = "-6.2454e-12 1 2.469e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2884678";nametoset = "Energy Modified Projector";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.0545 -293.36 130.378";rotation = "-0.581447 -0.575291 -0.575291 119.648";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "13.0618 -293.609 131.279";rotation = "-0.581448 -0.575291 -0.575289 119.642";scale = "22.3823 1.535 0.48";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.2992 -293.852 130.128";rotation = "0 0 -1 89.39";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5545 -293.355 130.188";rotation = "-0.573253 0.579389 -0.579386 239.647";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "51.0053 -293.504 133.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 13.9068";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.2311 -293.362 130.378";rotation = "-0.573253 0.57939 -0.579386 239.647";scale = "0.125 0.166666 95.6462";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.5462 -294.376 130.378";rotation = "0.0053231 0.999972 0.00532308 90.002";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5492 -293.855 130.713";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5492 -293.855 131.039";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5545 -293.355 133.054";rotation = "-0.581448 -0.575294 -0.575287 119.646";scale = "0.125 0.166666 97.999";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.7258 -294.102 130.188";rotation = "0.00806544 0.707085 0.707082 180.924";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5492 -293.855 133.295";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.5462 -294.376 133.564";rotation = "0.0053231 0.999972 0.00532308 90.002";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.5492 -293.855 133.878";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.4702 -294.346 130.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 36.2126";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "39.4336 -294.381 133.295";rotation = "-0.999972 0.0053238 0.00532379 90.002";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "53.5522 -293.781 130.188";rotation = "-0.573253 0.57939 -0.579386 239.647";scale = "0.125 0.166666 16.8588";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.7201 -294.352 129.938";rotation = "0 0 1 181.307";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "62.5588 -294.136 131.362";rotation = "-0.581448 -0.575291 -0.575289 119.642";scale = "49.0198 1.66801 0.48";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "62.5536 -294.616 131.279";rotation = "0.00376316 0.7071 0.707103 180.432";scale = "49.0198 1.776 0.48";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.7962 -294.379 130.128";rotation = "0 0 -1 89.39";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "-10.468 -304.352 128.938";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "91.4606 -319.413 128.938";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); \ No newline at end of file diff --git a/Univ/Data/2884678/Buildings/15.cs b/Univ/Data/2884678/Buildings/15.cs new file mode 100644 index 0000000..9d32d63 --- /dev/null +++ b/Univ/Data/2884678/Buildings/15.cs @@ -0,0 +1,74 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "henry" +// Created in mission "flatlandbig" +// Construction v0.70 Development Version 1 + +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "91.9458 -58.1978 100";rotation = "0 0 -1 81.572";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "91.0056 -51.8019 100";rotation = "0 0 -1 115.097";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "87.7651 -63.811 100";rotation = "0 0 -1 35.3193";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "83.2426 -62.3164 100";rotation = "0 0 1 185.034";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "85.4995 -47.7547 100";rotation = "0 0 1 236.823";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "76.6349 -63.3865 100";rotation = "0 0 1 30.0111";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "MissileBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "78.4165 -49.1942 100";rotation = "0 0 1 180.705";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "73.1636 -59.1624 100";rotation = "0 0 1 61.1959";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "MissileBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "73.8121 -52.5889 100";rotation = "0 0 1 114.715";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.3711 -30.1787 100";rotation = "0 0 1 6.72847";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "76.6519 -4.56277 100";rotation = "0 0 -1 50.7864";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "79.7452 -0.629861 100";rotation = "0 0 -1 60.5914";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.0233 -11.9502 100";rotation = "0 0 1 123.085";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (BeaconObject) () {datablock = "DeployedBeacon";position = "55.2672 -25.1412 100.05";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2884678";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (BeaconObject) () {datablock = "DeployedBeacon";position = "54.8349 -25.1118 100.05";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2884678";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "81.7696 2.95372 100";rotation = "0 0 -1 36.8941";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "96.4118 10.2901 100";rotation = "0 0 1 46.4111";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "61.2953 -26.9726 100";rotation = "0 0 -1 34.3714";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "81.7895 9.93103 100";rotation = "0 0 -1 36.8941";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "79.8675 -29.8833 167.627";rotation = "0 0 -1 73.3501";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "96.4118 10.2901 140";rotation = "0 0 1 169.931";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "61.6995 -13.4794 100.222";rotation = "0 0 1 92.4164";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "67.3027 7.50013 100.222";rotation = "0 0 -1 92.7195";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";isSwitchedOff = "1";switchRadius = "200";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "82.9352 17.9748 100";rotation = "0 0 -1 36.8941";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.319 22.9693 100";rotation = "0 0 1 151.171";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.5474 -22.9472 100";rotation = "0 0 -1 83.6948";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "82.3711 -30.1787 180";rotation = "0 0 1 45.9771";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "39.5474 -22.9472 110";rotation = "0 0 1 23.4073";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "31.3706 -41.8387 100";rotation = "0 0 1 15.9515";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "31.3706 -41.8387 110";rotation = "0 0 1 183.94";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "83.5292 23.4045 100";rotation = "0 0 -1 37.4709";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "92.319 22.9693 140";rotation = "0 0 -1 80.327";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "79.8138 -11.8137 177.713";rotation = "0.793669 0.430169 -0.430167 103.124";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "78.4222 -3.6347 171.882";rotation = "0 0 1 109.725";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "80.0233 -11.9502 180";rotation = "0 0 1 68.3384";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "61.4567 21.1778 100";rotation = "0 0 1 169.226";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "MissileBarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "52.5637 -26.6621 167.627";rotation = "0 0 -1 83.2542";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "61.2953 -26.9726 180";rotation = "0 0 1 180.164";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "75.5443 33.604 100";rotation = "0 0 1 166.919";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "21.2173 -25.4572 100";rotation = "0 0 1 72.5353";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "61.4497 -13.4689 178.607";rotation = "0.593582 0.569063 -0.569059 118.615";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.1228 -30.1494 167.377";rotation = "0.0585822 0.996562 0.0585822 90.1973";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "59.9576 29.3466 100";rotation = "0 0 1 166.919";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "61.6995 -13.4794 180.222";rotation = "0 0 1 75.8602";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.3367 13.3389 171.632";rotation = "0.702846 -0.10963 0.702843 192.513";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "66.0179 35.9626 100";rotation = "0 0 1 166.919";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "39.2497 -25.0914 167.627";rotation = "0 0 -1 83.2542";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "53.7837 26.4562 100";rotation = "0 0 1 182.967";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "15.8437 -18.057 100";rotation = "0 0 1 126.401";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "59.4799 2.422 171.882";rotation = "0 0 -1 52.1741";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "15.3521 -13.6988 100";rotation = "0 0 1 112.509";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "30.2994 -24.0355 167.627";rotation = "0 0 -1 84.4081";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "51.1733 5.0779 171.882";rotation = "0 0 -1 72.9879";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.4215 39.7594 100";rotation = "0 0 -1 45.0282";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "46.8258 34.0691 100";rotation = "0 0 -1 15.5024";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "58.4215 39.7594 140";rotation = "0 0 1 229.334";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "61.71 -13.2296 173.57";rotation = "0.585298 0.56112 0.585296 121.405";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "46.8258 34.0691 140";rotation = "0 0 1 165.794";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "42.4529 7.86618 171.882";rotation = "0 0 -1 72.9879";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "25.0986 13.415 100";rotation = "0 0 1 17.7313";scale = "0.125 0.166666 160";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "18.9246 -22.6935 167.627";rotation = "0 0 -1 83.2542";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "3.04054 -27.8079 100";rotation = "0 0 -1 87.721";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "33.4082 10.7581 171.882";rotation = "0 0 -1 72.411";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "11.4092 -21.8069 167.627";rotation = "0 0 -1 82.6772";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "25.0225 13.1769 162.514";rotation = "0.10963 0.702846 -0.702843 167.487";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "3.29034 -27.8178 177.66";rotation = "-0.562042 0.584856 -0.584852 238.675";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "25.0986 13.415 180";rotation = "0 0 -1 89.8518";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "3.0306 -28.0577 188.025";rotation = "0.0140648 0.707038 -0.707036 178.389";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (Turret) () {datablock = "TurretDeployedBase";position = "3.04054 -27.8079 200";rotation = "0 0 -1 55.9338";scale = "1 1 1";team = "1";ownerGUID = "2884678";powerFreq = "1";initialBarrel = "AABarrelLarge";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setRechargeRate(%building.getDatablock().rechargeRate); \ No newline at end of file diff --git a/Univ/Data/2884678/Buildings/2.cs b/Univ/Data/2884678/Buildings/2.cs new file mode 100644 index 0000000..da39703 --- /dev/null +++ b/Univ/Data/2884678/Buildings/2.cs @@ -0,0 +1,229 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "henry" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "80.1814 25.882 99.949";rotation = "-1 -0 0 1.04679";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.3838 -22.949 109.438";rotation = "0.736392 0.676556 8.57595e-07 180";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "75.3936 -23.1 109.438";rotation = "0.999104 -0.0423135 -5.36362e-08 180";scale = "3.47785 0.97847 17.2727";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "78.2667 -23.326 103.264";rotation = "0.0423137 0.999104 1.26646e-06 180";scale = "0.720274 0.466678 3.16762";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";canmove = 1;Collision = 1;isdoor = "1";issliding = "0";lv = "2";moving = "open";prevscale = "0.720274 0.466678 3.16762";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.3792 -23.42 103.514";rotation = "0.706791 -0.0299335 -0.706789 176.571";scale = "0.125 0.166666 4.46582";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "78.2456 -23.574 106.492";rotation = "0.998211 -0.0422736 0.0422723 90.1027";scale = "2.19926 11.5284 0.909091";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "73.2118 -27.934 104.688";rotation = "0.609915 0.560362 -0.560355 117.241";scale = "9.32032 18.591 0.909091";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.6361 -22.933 109.688";rotation = "-0.609919 -0.560359 -0.560354 117.238";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "73.6315 -27.643 105.732";rotation = "0.989774 -0.142646 -1.80817e-07 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2884678";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "1";emitterBlock = "VehicleFoamEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "77.9558 -25.601 100.332";rotation = "0.998996 -0.0448024 -5.67912e-08 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2884678";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "1";emitterBlock = "VehicleFoamEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "72.5626 -32.627 109.688";rotation = "0.0299336 0.706791 0.706789 183.429";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "73.5667 -28.483 104.474";rotation = "-0.544786 0.592962 0.592962 122.839";scale = "3 3 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-26.4333 -278.483 133.474";rotation = "0.544781 -0.592964 0.592965 122.838";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "81.2407 -23.578 109.438";rotation = "0.999104 -0.0423135 -5.36362e-08 180";scale = "3.67999 0.97847 17.2727";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "77.907 -28.205 100.338";rotation = "0.999331 0.0365664 4.63512e-08 180";scale = "3 3 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-22.093 -278.205 129.338";rotation = "-6.93077e-05 -8.74857e-13 -1 4.19185";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.3512 -23.757 109.438";rotation = "0.736392 0.676556 8.57595e-07 180";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "77.4935 -27.948 109.044";rotation = "0.952095 0.305803 3.87633e-07 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2884678";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "1";emitterBlock = "VehicleFoamEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "77.7606 -28.885 100.332";rotation = "0.99907 -0.0431281 -5.46688e-08 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2884678";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "1";emitterBlock = "VehicleFoamEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "77.9463 -28.317 109.438";rotation = "8.6921e-07 2.29694e-06 -1 85.1496";scale = "9.35688 18.591 0.909091";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "78.0808 -28.709 109.038";rotation = "0 0 1 189.805";scale = "3 3 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-21.9192 -278.709 138.038";rotation = "0.0854643 0.996341 -1.26295e-06 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "72.5415 -32.876 109.438";rotation = "0.0423137 0.999104 1.26646e-06 180";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "82.406 -27.283 103.535";rotation = "0.854728 0.519076 6.57976e-07 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2884678";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "1";emitterBlock = "VehicleFoamEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "82.2795 -28.698 104.703";rotation = "-0.609921 -0.560353 -0.560357 117.494";scale = "3 3 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-17.7205 -278.698 133.703";rotation = "0.609923 0.560356 -0.560353 117.24";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "82.6793 -28.718 104.688";rotation = "-0.609919 -0.560356 -0.560357 117.24";scale = "9.35684 18.591 0.909091";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "EmitterDep";position = "77.4357 -32.644 105.878";rotation = "0.990766 0.135584 1.71865e-07 180";scale = "0.5 0.5 0.1";team = "1";ownerGUID = "2884678";powerFreq = "1";pLogic = "0";pLogic = "0";cLogic = "1";emitterBlock = "VehicleFoamEmitter";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "77.6528 -32.656 105.188";rotation = "-0.998211 0.0422821 0.042282 90.1028";scale = "3 3 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-22.3472 -282.656 134.188";rotation = "0.998211 -0.0422821 0.0422823 90.1022";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.5268 -33.472 109.688";rotation = "0.592965 0.544781 0.592964 122.839";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate0";position = "77.5025 -33.547 104.688";rotation = "0.0299337 0.706788 0.706791 183.43";scale = "9.35684 18.591 0.909091";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.2566 -33.7 109.688";rotation = "0.0422757 0.998211 0.0422756 90.1028";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.5057 -33.721 99.938";rotation = "0 0 1 4.85022";scale = "0.125 0.166666 20";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.85 5.739 100.938";rotation = "0 0 1 181.307";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.779 1.259 101.007";rotation = "0.575286 -0.581442 -0.575301 119.647";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.826 5.645 101.128";rotation = "0 0 -1 89.39";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "114.064 5.40199 102.314";rotation = "-0.573251 0.579387 0.579391 120.353";scale = "22.1573 1.343 0.48";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.715 -4.741 101.007";rotation = "0.575289 -0.581443 -0.575298 119.148";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.824 5.395 101.378";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.824 5.395 101.717";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.824 5.395 102.074";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.824 5.395 103.897";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.824 5.395 104.193";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.824 5.395 104.539";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.824 5.395 104.878";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 44.2746";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.652 -10.741 101.007";rotation = "0.575287 -0.581446 -0.575296 119.646";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "114.318 4.89 101.378";rotation = "0.0037613 0.707103 -0.707101 179.568";scale = "0.125 0.166666 43.3944";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedwwall";position = "111.135 -18.979 99.603";rotation = "-0.169328 0.171141 0.970587 92.3196";scale = "1.25 1.66666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.588 -16.741 101.007";rotation = "0.57529 -0.581446 -0.575293 119.648";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "120.61 6.11099 101.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.585 -16.991 104.628";rotation = "0.710861 0.703333 8.91538e-07 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "113.315 -18.922 104.878";rotation = "-0.573252 0.579389 0.579388 120.353";scale = "1 1 1";team = "1";ownerGUID = "2884678";nametoset = "Energy Modified Projector";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField10";position = "113.785 -20.754 104.638";rotation = "0.581443 0.575292 -0.575294 119.812";scale = "3.5202 3.604 0.48";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.545 -20.741 104.878";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.807 -43.108 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.543 -20.991 104.628";rotation = "-0.703334 0.71086 9.01079e-07 180";scale = "0.125 0.166666 7.38";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "114.287 -43.113 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.545 -20.741 104.878";rotation = "-0.575287 0.581449 -0.575293 119.648";scale = "0.125 0.166666 1.00006";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "115.308 -43.124 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "116.467 -43.136 104.054";rotation = "0.999971 -0.0053259 0.00538416 90.0042";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (BeaconObject) () {datablock = "DeployedBeacon";position = "118.634 -16.175 99.988";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2884678";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "117.594 -43.148 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "126.609 5.974 101.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "119.246 -43.166 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "89.532 -54.352 99.938";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.54 -21.241 101.188";rotation = "0.579389 0.573254 -0.579386 239.647";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.302 -43.602 101.378";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.302 -43.602 101.721";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.302 -43.602 102.039";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.302 -43.602 104.054";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.302 -43.602 104.325";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.302 -43.602 104.602";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.302 -43.602 104.878";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 44.7246";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.802 -43.607 101.378";rotation = "0.00376186 0.707103 0.707101 180.432";scale = "0.125 0.166666 44.8666";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "120.876 -43.183 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "121.626 -43.191 104.054";rotation = "0.999971 -0.0053259 0.00538416 90.0042";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "122.66 -43.202 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "114.1 5.733 101.188";rotation = "0.707085 -0.00806544 0.707082 180.924";scale = "0.125 0.166666 56.0572";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.431 -43.221 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "132.607 5.83701 101.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "125.855 -43.236 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "113.062 -43.609 102.279";rotation = "-0.581448 -0.575292 -0.575289 119.29";scale = "22.3823 1.535 0.48";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "127.308 -43.251 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 96.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.299 -43.852 101.128";rotation = "0 0 -1 89.39";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "114.054 -43.36 101.378";rotation = "-0.581447 -0.575291 -0.575291 119.648";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "128.534 -43.264 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 96.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "125.051 -29.555 101.443";rotation = "0.794298 0.607528 7.70097e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "25.0506 -279.555 130.443";rotation = "-3.74375e-06 1.17796e-13 -1 74.822";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.332 -43.284 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "129.631 -17.994 101.128";rotation = "0 0 -1 90.9674";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "138.606 5.7 101.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "125.075 -33.786 101.443";rotation = "0.71241 0.701764 8.89549e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";frequency = "5";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "25.0748 -283.786 130.443";rotation = "-3.09311e-06 -7.95898e-13 -1 89.1373";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "131.555 -43.297 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "135.846 -7.84599 104.367";rotation = "0.00376277 0.707099 0.707104 180.431";scale = "0.125 0.166666 26.0114";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "135.116 -5.024 105.128";rotation = "0 0 1 91.7626";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "136.591 -4.241 104.367";rotation = "0.00376376 0.707099 0.707104 180.431";scale = "0.125 0.166666 18.787";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "135.822 -10.096 104.117";rotation = "-0.703334 0.71086 9.01079e-07 180";scale = "0.875051 0.166666 5.978";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "3";moving = "open";prevscale = "0.875051 0.166666 5.978";state = "closed";timeout = ".5";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "133.177 -43.314 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "136.552 -7.854 104.367";rotation = "0.00376277 0.707099 0.707104 180.431";scale = "0.125 0.166666 7.22642";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "135.841 -8.34599 104.367";rotation = "0.0037654 0.707103 -0.707101 179.569";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "137.588 -7.86501 104.338";rotation = "0.00376277 0.707099 0.707104 180.431";scale = "0.125 0.166666 26.0134";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.568 4.62601 101.378";rotation = "-0.573252 0.579385 0.579392 120.353";scale = "0.125 0.166666 96.9998";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "134.09 -43.324 104.054";rotation = "0.999972 -0.00532595 0.00534267 90.0037";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "114.076 5.642 101.378";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "114.076 5.642 101.709";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.564 4.27699 101.378";rotation = "-0.573252 0.579385 0.579392 120.353";scale = "0.125 0.166666 95.9998";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.073 5.121 102.096";rotation = "0.0053231 0.999972 0.00532308 90.002";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.073 5.121 104.203";rotation = "0.0053231 0.999972 0.00532308 90.002";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.073 5.121 104.47";rotation = "0.0053231 0.999972 0.00532308 90.002";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "114.076 5.642 104.878";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "137.593 -8.11501 104.617";rotation = "0.00532131 0.999986 1.26757e-06 180";scale = "1.00001 0.166666 6.978";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "138.407 -7.87399 104.367";rotation = "0.00376277 0.707099 0.707104 180.431";scale = "0.125 0.166666 26.0134";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "137.489 -10.363 101.128";rotation = "0 0 1 144.829";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "2";isSwitchedOff = "1";switchRadius = "150";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "134.989 -43.333 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 96.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "137.822 -10.117 104.617";rotation = "0.999986 -0.00532272 6.98964e-08 180";scale = "0.875 1.16673 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "137.551 -12.115 104.117";rotation = "-0.703334 0.71086 9.01079e-07 180";scale = "0.125 1.33335 5.978";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "135.19 -12.261 120.628";rotation = "2.03114e-12 1 -1.09085e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2884678";nametoset = "Energy Modified Projector";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.305 -7.883 104.312";rotation = "0.00376277 0.707099 0.707104 180.431";scale = "0.125 0.166666 26.0134";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "136.051 -12.098 104.367";rotation = "0.573252 -0.579387 0.579391 120.353";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.846 -7.88901 104.367";rotation = "0.579388 0.573249 0.579392 120.353";scale = "0.125 0.166666 26.0136";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "135.109 -19.888 120.878";rotation = "0.0037661 0.707103 0.707101 180.432";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "135.751 -21.891 100.049";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "15 20 20";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "135.615 -18.781 101.128";rotation = "0 0 -1 83.6753";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "140.072 -10.142 102.872";rotation = "-0.573251 0.579387 0.579391 120.353";scale = "1.12506 1.16334 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.604 5.563 101.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "136.695 -21.929 100.058";rotation = "6.58669e-09 -0.00519623 0.999986 180";scale = "15 20 20";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "141.631 5.599 104.203";rotation = "0.00376408 0.707102 0.707102 180.431";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "138.311 -19.368 105.128";rotation = "0.999986 -0.00532451 -3.36726e-06 180";scale = "12.2499 16.3333 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "138.413 -19.905 99.543";rotation = "-0 -0 1 92.0245";scale = "12.5 16.6666 3";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "135.024 -27.888 120.863";rotation = "0.00376893 0.707103 0.707101 180.432";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "136.035 -43.344 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 61.9876";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "135.442 -12.141 120.878";rotation = "0.58145 0.575287 0.575291 240.179";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.948 -43.386 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "135.027 -27.638 120.613";rotation = "-1.48885e-13 1 -1.06952e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2884678";nametoset = "Energy Modified Projector";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "137.229 -43.357 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 61.9876";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.149 -16.181 120.628";rotation = "-3.87521e-06 -3.4598e-06 1 180.611";scale = "1.87501 2.50014 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "140.899 -43.396 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.856 -20.221 120.878";rotation = "0.0053286 0.999972 0.00532858 90.002";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "138.348 -43.369 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 61.9874";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.124 -43.378 104.054";rotation = "0.999972 -0.00532595 0.00534267 90.0037";scale = "0.125 0.166666 61.9894";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.114 -43.409 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.064 -24.181 120.613";rotation = "1.87474e-06 -2.95149e-06 1 180.611";scale = "1.87501 2.50014 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.414 -43.423 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.602 5.42599 101.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "146.051 -9.495 105.128";rotation = "0 0 1 89.4834";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.106 -20.224 105.128";rotation = "0 0 1 180.611";scale = "0.125 0.166666 32";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.771 -28.221 120.863";rotation = "-0.573249 0.57939 0.57939 120.353";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.555 -43.355 101.188";rotation = "-0.573253 0.579389 -0.579386 239.647";scale = "0.125 0.166666 80";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.189 -12.474 120.878";rotation = "-0.999972 0.00533575 0.00532423 90.0025";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "144.627 -43.436 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "147.558 -5.407 105.128";rotation = "0 0 1 91.7626";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.462 -43.445 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "147.446 -18.765 101.128";rotation = "0 0 1 179.807";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "146.341 -43.454 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.106 -20.224 121.128";rotation = "0 0 1 180.611";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.103 -20.474 120.863";rotation = "-0.575288 0.581454 -0.575287 119.646";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "147.298 -43.464 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 96.9994";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "143.106 -20.224 128.628";rotation = "-0 -0 1 90.572";scale = "1.25 1.66666 2";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.441 -12.226 120.878";rotation = "-0.581449 -0.575285 -0.575295 119.647";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "151.446 -3.38 101.128";rotation = "0 0 1 91.7305";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.555 -43.355 104.054";rotation = "-0.581448 -0.575294 -0.575287 119.646";scale = "0.125 0.166666 97.999";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "114.231 -43.362 101.378";rotation = "-0.573253 0.57939 -0.579386 239.647";scale = "0.125 0.166666 95.6462";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "148.336 -43.475 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 96.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "147.148 -16.267 120.628";rotation = "-8.85587e-06 1.97903e-07 1 180.611";scale = "1.87498 2.50047 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.546 -44.376 101.378";rotation = "0.0053231 0.999972 0.00532308 90.002";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.549 -43.855 101.713";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.549 -43.855 102.039";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.549 -43.855 104.295";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.546 -44.376 104.564";rotation = "0.0053231 0.999972 0.00532308 90.002";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.549 -43.855 104.878";rotation = "0.707103 -0.0037654 0.707101 180.431";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.228 -22.632 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 55.2552";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.011 -43.483 104.055";rotation = "0.999972 -0.00532595 0.00534267 90.0037";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SensorLargePulse";position = "143.356 -20.225 129.628";rotation = "0 0 -1 89.4175";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";nametoset = "Modern UltraTrack Limited edition model 243XLRH";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.356 -20.227 120.878";rotation = "0.707103 -0.00376964 0.707101 180.432";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.806 -43.491 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "156.601 5.289 101.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "139.434 -44.381 104.295";rotation = "-0.999972 0.0053238 0.00532379 90.002";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "StationInventory";position = "150.035 -21.699 101.128";rotation = "0 0 1 89.5327";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "147.063 -24.267 121.113";rotation = "0.00532677 0.999986 2.87405e-06 180.001";scale = "1.87501 2.49981 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "151.186 -12.811 120.628";rotation = "1.94088e-11 1 -2.04989e-06 180.001";scale = "1 1 1";team = "1";ownerGUID = "2884678";nametoset = "Energy Modified Projector";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.984 -43.514 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.271 -28.226 120.863";rotation = "-0.573245 0.579392 -0.579392 239.647";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.188 -12.559 120.878";rotation = "-0.999972 0.00533895 0.00531999 90.0014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.143 -30.551 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 15.8389";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.231 -43.527 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 96.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.023 -28.059 120.863";rotation = "0.999972 -0.005322 0.00533284 90.0014";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "45.363";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.871 -43.545 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedCeilingIndoor";position = "150.884 -28.307 120.613";rotation = "-6.2454e-12 1 2.469e-06 180";scale = "1 1 1";team = "1";ownerGUID = "2884678";nametoset = "Energy Modified Projector";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "StationInventory";position = "149.436 -36.808 101.128";rotation = "0 0 1 90.6207";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "153.766 -24.412 105.128";rotation = "0 0 1 88.3352";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "2";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.079 -36.551 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "155.892 -43.556 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.599 5.15199 101.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "157.132 -43.569 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.211 -43.581 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.005 -43.504 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 13.9068";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.099 5.14101 101.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.549 -43.595 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0016";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "163.081 4.881 102.336";rotation = "0.00376316 0.7071 0.707103 180.432";scale = "49.0198 1.637 0.48";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.343 4.88499 101.188";rotation = "0.00806544 0.707085 -0.707082 179.076";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.349 5.13499 100.938";rotation = "0 0 1 181.307";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "5.51";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.323 5.118 101.128";rotation = "0 0 -1 89.39";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.332 4.38499 101.188";rotation = "0.00806494 0.707085 -0.707082 179.076";scale = "0.125 0.166666 43.8314";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.843 4.88499 101.188";rotation = "-0.572911 0.58613 -0.572909 119.249";scale = "0.125 0.166666 26.0048";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.679 -43.607 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.41 -14.112 101.188";rotation = "0.00805695 0.707085 0.707083 180.924";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.843 -43.619 104.054";rotation = "0.999972 -0.005326 0.00532488 90.002";scale = "0.125 0.166666 97.0014";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.821 4.873 101.378";rotation = "-0.999972 0.00532205 0.00532553 90.002";scale = "0.125 0.166666 97.9976";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.47 -44.346 101.188";rotation = "0.0114027 0.99987 0.0114027 90.0077";scale = "0.125 0.166666 36.2126";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.273 -20.11 101.188";rotation = "0.00805864 0.707085 0.707083 180.924";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.799 -44.129 101.378";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.32 4.868 101.828";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.799 -44.129 102.122";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.32 4.868 104.27";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.799 -44.129 104.549";rotation = "0.57939 0.573253 0.579386 120.353";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.32 4.868 104.878";rotation = "-0.575291 0.581449 -0.575289 119.648";scale = "0.125 0.166666 97.9996";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.136 -26.108 101.188";rotation = "0.00806034 0.707085 0.707083 180.924";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "163.259 -24.422 104.549";rotation = "-0.581449 -0.57529 -0.57529 119.648";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.999 -32.106 101.188";rotation = "0.00806204 0.707085 0.707082 180.924";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.832 -17.525 101.188";rotation = "0.00806445 0.707085 -0.707082 179.076";scale = "0.125 0.166666 53.2098";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.552 -43.781 101.188";rotation = "-0.573253 0.57939 -0.579386 239.647";scale = "0.125 0.166666 16.8588";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.863 -38.104 101.188";rotation = "0.00806373 0.707085 0.707082 180.924";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.726 -44.102 101.188";rotation = "0.00806544 0.707085 0.707082 180.924";scale = "0.125 0.166666 12";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "162.559 -44.136 102.362";rotation = "-0.581448 -0.575292 -0.575289 119.29";scale = "49.0198 1.66801 0.48";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "162.554 -44.616 102.279";rotation = "0.00376316 0.7071 0.707103 180.432";scale = "49.0198 1.776 0.48";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.72 -44.352 100.938";rotation = "0 0 1 181.307";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.796 -44.379 101.128";rotation = "0 0 -1 89.39";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "191.863 37.899 101.387";rotation = "-0.899034 0.437824 -0.0069279 2.71248";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedOutdoor";position = "191.461 -69.413 99.938";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "2884678";initialBarrel = "DeployableOutdoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); \ No newline at end of file diff --git a/Univ/Data/2884678/Buildings/3.cs b/Univ/Data/2884678/Buildings/3.cs new file mode 100644 index 0000000..82cb9cd --- /dev/null +++ b/Univ/Data/2884678/Buildings/3.cs @@ -0,0 +1,9 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "henry" +// Created in mission "Pretty" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "Deployedfloor";position = "-130.484 -427.804 128.438";rotation = "0 0 -1 82.6285";scale = "7.5 9.99999 3";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-132.639 -436.948 129.938";rotation = "0 0 -1 80.8759";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (ForceFieldBare) () {datablock = "DeployedGravityField1";position = "-129.633 -429.343 129.928";rotation = "0 0 -1 82.6285";scale = "4.27 4.27 159.083";team = "1";ownerGUID = "2884678";needsfit = "1";velocityMod = "1";gravityMod = "0";appliedForce = "0 0 1000";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-129.011 -430.723 129.938";rotation = "0 0 -1 82.6285";scale = "0.25 0.333333 320";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/2884678/Buildings/4.cs b/Univ/Data/2884678/Buildings/4.cs new file mode 100644 index 0000000..268aba7 --- /dev/null +++ b/Univ/Data/2884678/Buildings/4.cs @@ -0,0 +1,124 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "henry" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "86.7371 44.1629 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "85.3764 41.5694 100";rotation = "0 0 1 82.6727";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "81.0169 43.543 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "95.8366 46.1568 105.045";rotation = "0.577352 0.57735 -0.57735 120";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "92.1674 44.7513 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "75.4166 42.9361 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "79.5863 33.4943 100";rotation = "0 0 1 156.479";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "74.9002 40.2223 100";rotation = "0 0 1 82.6727";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "86.175 40.229 100";rotation = "0 0 -1 3.75652";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "88.2424 41.3837 100";rotation = "0 0 1 3.68116";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "77.3865 39.0078 100";rotation = "0 0 -1 15.7702";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "98.2214 45.4073 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.4487 41.5078 102.873";rotation = "0 0 -1 8.33234";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.266 42.1982 100";rotation = "0 0 1 5.3951";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "98.5747 45.4456 102.873";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "98.0702 45.391 105.746";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "94.0274 42.5614 100";rotation = "0 0 1 7.68025";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "73.6002 32.3699 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "69.7665 42.3239 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "70.1079 39.6061 100";rotation = "0 0 1 82.6727";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "98.3182 45.4178 108.619";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.8704 35.4872 100";rotation = "0 0 -1 10.6229";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "71.082 36.755 100";rotation = "0 0 -1 42.0988";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "71.0438 35.7105 100";rotation = "0 0 -1 27.2178";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "98.3809 45.4246 111.492";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "70.6021 35.2039 100";rotation = "0 0 -1 10.6229";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "68.3597 33.3096 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "64.9241 41.7992 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "65.2399 38.9801 100";rotation = "0 0 1 82.6727";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.9022 38.7418 102.873";rotation = "0 0 -1 48.3885";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "61.4808 39.4403 100";rotation = "0 0 1 198.892";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "64.3839 37.9309 100";rotation = "0 0 1 172.541";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.9669 38.8072 100";rotation = "0 0 1 189.746";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "66.5998 39.2982 100.844";rotation = "8.06184e-07 -0.635997 0.771691 180";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "63.4791 32.9547 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.6713 39.6695 102.873";rotation = "0 0 -1 62.1321";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.2345 37.1402 100";rotation = "0 0 1 190.317";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "64.9454 32.5614 100";rotation = "0 0 1 173.112";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "60.4842 41.318 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "64.0441 31.3751 100";rotation = "0 0 1 180.556";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "59.2428 35.2931 100";rotation = "0 0 1 194.893";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "60.0713 38.3155 100";rotation = "0 0 1 82.6727";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "61.8397 38.2838 101.139";rotation = "8.06184e-07 -0.635997 0.771691 180";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "58.159 34.4683 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.1611 34.058 100";rotation = "0 0 1 194.893";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.3703 30.1774 100";rotation = "0 0 1 179.413";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.4365 37.986 102.873";rotation = "0 0 -1 62.7034";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "55.6419 40.7933 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.7553 33.2428 100";rotation = "0 0 1 194.893";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.7109 32.5274 100.237";rotation = "0.925373 -0.268035 0.268034 94.4395";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "55.4893 37.7263 100";rotation = "0 0 1 82.6727";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "57.0042 31.4916 100";rotation = "0 0 1 179.413";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "56.2592 37.3223 101.449";rotation = "8.06184e-07 -0.635997 0.771691 180";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "55.5895 31.281 100";rotation = "0 0 1 181.699";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "52.9341 33.2816 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "53.4919 37.2567 102.873";rotation = "0 0 -1 67.8451";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "41.1759 32.5165 100.892";rotation = "0.779823 -0.442652 0.442647 104.104";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "41.1759 32.5165 100.892";rotation = "0.779823 -0.442652 0.442647 104.104";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "51.3514 37.1942 100";rotation = "0 0 1 82.6727";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "50.2947 40.2139 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.8549 37.4875 102.873";rotation = "0 0 -1 80.4301";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.9146 32.1971 100";rotation = "0 0 1 181.699";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "41.6076 32.4398 100.855";rotation = "0.925373 -0.268035 0.268034 94.4395";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "49.1087 31.9672 100";rotation = "0 0 1 190.284";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "48.0635 32.3296 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.9326 32.1806 100.702";rotation = "0 0 1 190.284";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "46.4732 36.567 100";rotation = "0 0 1 82.6727";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "45.5891 39.704 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.5721 31.8104 100.452";rotation = "0.0635061 0.705681 -0.705678 172.733";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "41.2785 38.2875 100";rotation = "0 0 1 238.349";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "42.0505 32.2326 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "41.879 35.9763 100";rotation = "0 0 1 82.6727";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.8627 32.0118 100.452";rotation = "0.0892705 0.991999 0.0892698 90.4603";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "39.8721 39.0845 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.1994 32.4224 100.452";rotation = "0.0635061 0.705681 -0.705678 172.733";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.5203 36.1209 102.873";rotation = "0 0 1 237.207";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.0895 35.5318 102.873";rotation = "0 0 1 237.207";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.2378 32.0199 100";rotation = "0 0 1 205.187";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.7398 32.6873 100.452";rotation = "0.0635061 0.705681 -0.705678 172.733";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.0384 31.8224 100";rotation = "0 0 1 205.187";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "38.4511 31.5934 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "30.2328 30.4342 100.652";rotation = "0.925373 -0.268035 0.268034 94.4395";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "38.1066 29.841 100.5";rotation = "0 0 1 115.187";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "37.2881 30.0964 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "38.5662 35.3342 101.619";rotation = "8.06184e-07 -0.635997 0.771691 180";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "36.8035 35.3236 100";rotation = "0 0 1 82.6727";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.3849 36.3311 111.848";rotation = "0.431811 0.791884 0.431809 103.25";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.9895 33.542 100";rotation = "0 0 1 237.207";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "37.0765 34.4909 102.447";rotation = "8.06184e-07 -0.635997 0.771691 180";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.7334 32.2276 100";rotation = "0 0 -1 111.917";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "35.4566 27.8892 100";rotation = "0 0 1 205.187";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "33.5532 37.7266 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.1372 26.965 100";rotation = "0 0 1 205.187";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "38.932 31.5962 100.25";rotation = "-0.472364 0.744141 -0.472363 106.691";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "41.0657 38.1563 113.695";rotation = "-0.263099 0.928202 -0.263097 94.2653";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "29.3249 36.6478 100";rotation = "0 0 -1 15.2044";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "32.417 27.1792 100";rotation = "0 0 1 205.187";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "39.3101 35.9855 110.047";rotation = "-0.271668 0.923252 -0.271667 94.5707";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "31.1643 29.146 100";rotation = "0 0 1 207.473";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "30.5145 30.2437 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "24.6609 35.3803 100";rotation = "0 0 -1 15.2044";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.7793 33.4066 101.036";rotation = "-0.271668 0.923252 -0.271667 94.5707";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.7793 33.4066 103.737";rotation = "-0.271668 0.923252 -0.271667 94.5707";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.5015 32.1343 100.806";rotation = "-0.186753 0.964493 -0.186753 92.0715";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.7793 33.4066 114.063";rotation = "-0.271668 0.923252 -0.271667 94.5707";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2884678";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "21.9167 34.6344 100";rotation = "0 0 -1 15.2044";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "19.9566 34.1017 100";rotation = "0 0 -1 15.2044";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "20.9016 27.4079 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "19.0867 36.159 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "16.4283 33.1428 100";rotation = "0 0 -1 15.2044";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "15.6005 26.1624 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "12.508 32.0774 100";rotation = "0 0 -1 15.2044";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "13.7692 35.5828 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "11.5227 25.6375 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "8.17731 30.973 100";rotation = "0 0 -1 15.2044";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "5.14019 32.8622 100";rotation = "0 0 -1 96.4758";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "8.62241 35.0251 100";rotation = "0 0 1 83.8151";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "8.2018 25.126 100";rotation = "0 0 1 153.623";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "4.75716 29.984 100";rotation = "0 0 -1 19.2035";scale = "1 1 1";team = "1";ownerGUID = "2884678";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); \ No newline at end of file diff --git a/Univ/Data/2884678/Ranks/CnC4/Saved.Rank b/Univ/Data/2884678/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..2f70e1e --- /dev/null +++ b/Univ/Data/2884678/Ranks/CnC4/Saved.Rank @@ -0,0 +1,18 @@ +//Ranks File For GUID 2884678 +//Created On 2010-07-07, C&C 4 +$Rank::Name[2884678] = "henry"; +$Rank::Rank[2884678, 1] = "Private"; +$Rank::XP[2884678, 1] = 754; +$Rank::Rank[2884678, 2] = "Acolyte"; +$Rank::XP[2884678, 2] = 1; +$CNC::Deaths[2884678] = 16; +$CNC::TotalBuilds[2884678] = 11; +$CNC::BuildingsBuilt[2884678, "PowerPlant"] = 4; +$CNC::BuildingsBuilt[2884678, "Bunker"] = 7; +$CNC::KilledByObj[2884678, SalamanderFireMissileTurret] = 1; +$CNC::TotalBuildingLosses[2884678] = 2; +$CNC::BuildingLosses[2884678, "PowerPlant"] = 1; +$CNC::KilledByPl[2884678, 2687806] = 2; +$CNC::TotalCrawlerDecoms[2884678] = 4; +$CNC::TotalBuildingKills[2884678] = 2; +$CNC::BuildingKills[2884678, "Bunker"] = 2; \ No newline at end of file diff --git a/Univ/Data/2884678/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2884678/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..74c6da7 --- /dev/null +++ b/Univ/Data/2884678/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,25 @@ +//Ranks & Settings File For GUID 2884678 / Name: henry +//Created On 2013-02-13, Total Warfare Mod 2 3.8 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2884678) { + + new ScriptObject(TWM2Client_2884678) { + + gameTime = "28"; + noMoreEXP77dd8446d696474cc310736d8676d819dbe0ee18 = "0"; + officer = "0"; + phrase = "None Set"; + rank = "Private"; + name = "henry"; + money = "0"; + millionxp = "0"; + xp = "0"; + }; + new ScriptObject(ClientSettings2884678) { + + savedstreak1 = "1"; + savedstreak2 = "2"; + savedstreak3 = "4"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/2886178/Buildings/1.cs b/Univ/Data/2886178/Buildings/1.cs new file mode 100644 index 0000000..e5f62bb --- /dev/null +++ b/Univ/Data/2886178/Buildings/1.cs @@ -0,0 +1,92 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "F9Alejandro" +// Created in mission "slapmydashH" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "StationInventory";position = "-77.739 -355.111 129.938";rotation = "0 0 1 235.031";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-80.2573 -356.577 129.938";rotation = "0 0 1 193.761";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.6786 -337.882 130.438";rotation = "-0.525284 0.669444 -0.525283 112.4";scale = "0.25 0.166666 37.9948";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-80.1978 -356.335 133.188";rotation = "0.618313 0.485162 0.61831 128.238";scale = "0.125 0.166666 37.9966";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-73.1488 -349.02 129.638";rotation = "0 0 1 177.286";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-70.1627 -350.676 129.968";rotation = "0.170125 0.985423 1.24911e-06 180";scale = "0.3 0.3 0.500001";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";nametoset = " To Safe Base ";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-70.1627 -350.676 130.338";rotation = "1.50518e-06 3.1903e-12 1 199.59";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.8806 -358.382 133.188";rotation = "0.669443 0.525281 -0.525286 112.399";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.525 -356.93 133.188";rotation = "0.669443 0.525281 -0.525286 112.399";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.2088 -359.722 133.188";rotation = "0.669443 0.525281 -0.525286 112.399";scale = "0.125 0.166666 37.9994";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-70.4811 -349.145 129.638";rotation = "0 0 1 200.956";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-80.0147 -356.636 130.438";rotation = "0.704548 -0.0850126 0.704546 189.719";scale = "0.25 0.166666 37.9994";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.2076 -355.634 133.188";rotation = "0.669443 0.525281 -0.525286 112.399";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-80.0145 -356.636 133.188";rotation = "0.704548 -0.0850152 0.704546 189.718";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-71.1133 -347.658 128.938";rotation = "0 0 1 213.019";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-78.1911 -349.191 133.188";rotation = "-0.669444 -0.525287 -0.52528 112.399";scale = "0.125 0.166666 37.9994";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-77.8147 -347.654 133.188";rotation = "-0.669444 -0.525287 -0.52528 112.399";scale = "0.125 0.166666 37.9994";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-68.6204 -349.444 129.978";rotation = "0.511016 0.859571 1.08958e-06 180";scale = "0.3 0.3 0.500001";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";nametoset = " To OutSide ";frequency = "4";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-68.6204 -349.444 130.338";rotation = "-2.22826e-06 -5.04695e-12 -1 118.537";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-68.4685 -349.427 129.438";rotation = "0 0 1 193.761";scale = "7.49993 9.9999 8.4";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "-68.368 -349.427 129.438";rotation = "0 0 1 193.761";scale = "5.00005 6.66633 1";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.9548 -350.518 133.188";rotation = "0.669443 0.525281 -0.525286 112.399";scale = "0.125 0.166666 37.9994";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-66.6063 -350.23 129.638";rotation = "0 0 1 196.381";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.9929 -344.298 133.188";rotation = "-0.669444 -0.525287 -0.52528 112.399";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-74.0522 -340.056 129.938";rotation = "0 0 -1 23.6315";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.5863 -342.638 133.188";rotation = "-0.669444 -0.525287 -0.52528 112.399";scale = "0.125 0.166666 37.9994";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.619 -337.638 129.938";rotation = "0 0 1 13.7605";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-76.2308 -341.186 133.188";rotation = "-0.669444 -0.525287 -0.52528 112.399";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.919 -339.913 133.188";rotation = "-0.669444 -0.525287 -0.52528 112.399";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-62.6838 -358.798 129.938";rotation = "0 0 1 146.184";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.6268 -338.72 133.188";rotation = "-0.669444 -0.525287 -0.52528 112.399";scale = "0.125 0.166666 37.9994";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.3762 -337.697 130.438";rotation = "0.704548 -0.0850152 0.704546 189.718";scale = "0.25 0.166666 37.9994";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.9215 -342.217 133.188";rotation = "0.118945 0.985751 0.118944 90.8224";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.317 -361.215 129.938";rotation = "0 0 1 13.7605";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.2575 -360.973 130.438";rotation = "0.618313 0.485162 0.61831 128.238";scale = "0.25 0.166666 37.9966";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-61.2575 -360.971 133.188";rotation = "0.618313 0.485162 0.61831 128.238";scale = "0.125 0.166666 37.9966";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-58.9969 -343.743 129.938";rotation = "0 0 1 55.1296";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.6787 -342.276 129.938";rotation = "0 0 1 193.761";scale = "0.125 0.166666 7";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-61.1478 -336.002 109.938";rotation = "0 0 1 18.9237";scale = "0.1 0.1 0.5";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-60.6072 -336.229 109.938";rotation = "0 0 1 16.6276";scale = "0.1 0.1 0.5";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-60.8721 -335.799 109.938";rotation = "0 0 1 12.0408";scale = "0.1 0.1 0.5";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-60.2526 -335.957 109.938";rotation = "0 0 1 11.2773";scale = "0.1 0.1 0.5";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-59.4218 -336.651 109.938";rotation = "0 0 1 18.1492";scale = "0.1 0.1 0.5";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-59.8414 -336.1 109.938";rotation = "0 0 1 8.98662";scale = "0.1 0.1 0.5";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-58.837 -336.827 109.938";rotation = "0 0 1 9.75024";scale = "0.1 0.1 0.5";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-59.0425 -336.371 109.938";rotation = "0 0 1 11.2718";scale = "0.1 0.1 0.5";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-59.4424 -335.837 109.938";rotation = "0 0 1 15.1738";scale = "0.1 0.1 0.5";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-58.2374 -336.654 109.938";rotation = "0 0 1 6.69592";scale = "0.1 0.1 0.5";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-58.4278 -336.3 109.938";rotation = "0 0 1 14.3095";scale = "0.1 0.1 0.5";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-62.6934 -338.992 111.688";rotation = "0.705639 -0.0644195 0.705637 187.372";scale = "0.875 0.166666 39.0002";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "-55.1134 -338.62 109.958";rotation = "0.99521 -0.0977561 -1.23915e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";nametoset = " 1 ";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.616 -332.203 109.938";rotation = "0 0 -1 79.5678";scale = "3.76323 0.166666 6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "-54.4502 -335.618 109.958";rotation = "0.989522 -0.144384 -1.83019e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";nametoset = " More Spawns ";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-51.7075 -335.929 109.938";rotation = "0 0 -1 79.5678";scale = "2.37527 0.166666 6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-54.5815 -330.824 109.938";rotation = "0 0 -1 79.5678";scale = "0.125 1.0007 6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";nametoset = " More Spawns ";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "-53.608 -330.749 112.32";rotation = "0.98347 -0.181072 0 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2886178";nametoset = " More Spawns ";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-62.4016 -338.791 111.688";rotation = "0.60933 0.507383 0.609327 126.195";scale = "0.875 0.166666 58.9952";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "-55.0603 -325.134 112.501";rotation = "-0.181072 -0.98347 0 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2886178";nametoset = "Gens ";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-45.1967 -340.15 109.968";rotation = "0.988817 0.149133 1.8904e-07 180";scale = "0.3 0.3 0.500001";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";nametoset = "To Battle Area ";frequency = "3";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-45.1967 -340.15 110.338";rotation = "-1.69044e-05 2.50554e-12 -1 17.1535";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "-46.4775 -332.062 112.5";rotation = "0.98347 -0.181072 0 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2886178";nametoset = "Teleporters ";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-40.8445 -328.017 113.188";rotation = "-0.507383 0.609329 0.609328 126.195";scale = "7.24932 0.166667 38.0014";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "-45.6716 -332.718 112.44";rotation = "-0.98347 0.181072 0 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2886178";nametoset = "<---- Safe Area ";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-56.458 -320.314 109.938";rotation = "0 0 -1 79.5678";scale = "0.125 1.49981 6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-40.3533 -328.108 109.688";rotation = "-0.507383 0.609328 0.609329 126.195";scale = "7.49975 0.166667 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-44.1955 -332.99 111.082";rotation = "-0.991769 0.0905392 0.0905385 90.4741";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";switchRadius = "60";nametoset = "EMERGENCY ONLY ";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-44.282 -332.72 109.938";rotation = "0 0 -1 79.5678";scale = "0.125 1.68559 6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";switchRadius = "100";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-45.3184 -328.844 109.938";rotation = "0 0 1 100.432";scale = "1.68714 0.166666 6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";nametoset = "lol";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-55.6688 -317.664 109.928";rotation = "0 0 -1 77.1551";scale = "0.5 0.5 0.05";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "-45.0232 -325.86 112.365";rotation = "0.181069 0.98347 0 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2886178";nametoset = "Spawns ";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "-43.2845 -330.716 109.958";rotation = "0.981079 -0.193607 -2.45414e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "-53.5745 -315.699 112.403";rotation = "-0.98347 0.181072 0 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2886178";nametoset = " <---- Any one ";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.496 -315.091 109.938";rotation = "0 0 -1 79.5678";scale = "0.125 1.49991 6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";nametoset = " <---- Any one ";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-44.7073 -325.523 111.438";rotation = "0.609329 0.507385 0.609327 126.195";scale = "0.750003 0.166666 5.49688";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "4";moving = "open";prevscale = "0.750003 0.166666 5.49688";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-37.9737 -313.803 111.688";rotation = "-0.538991 0.647287 -0.538989 114.172";scale = "0.875 0.166666 58.9952";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "-55.0601 -312.787 109.438";rotation = "-3.38005e-05 4.52677e-05 1 190.432";scale = "1.13091 1.39643 7";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";canmove = 1;Collision = 1;isdoor = "1";issliding = "0";lv = "4";moving = "open";prevscale = "1.13091 1.39643 7";state = "closed";timeout = "1";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-55.1412 -312.504 109.928";rotation = "0 0 -1 75.6172";scale = "0.5 0.5 0.05";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";nametoset = " F9's ";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-42.1523 -322.692 109.938";rotation = "0 0 -1 79.5678";scale = "0.25013 1.49988 6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "-43.2419 -317.566 112.305";rotation = "-0.98347 0.181072 0 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2886178";nametoset = " Any one----> ";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "-49.5217 -311.676 112.086";rotation = "-0.98347 0.181072 0 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2886178";nametoset = " <---- F9's Station ";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-41.9148 -319.991 109.928";rotation = "0 0 1 104.07";scale = "0.5 0.5 0.05";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "-47.7381 -312.006 112.108";rotation = "-0.983469 0.181076 0 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2886178";nametoset = "<---- Inventory ----> ";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-41.2299 -317.682 109.938";rotation = "0 0 -1 79.5678";scale = "0.125 1.49988 6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-37.6822 -313.602 111.688";rotation = "0.0905392 0.991769 0.0905385 90.4741";scale = "0.875 0.166666 38.9996";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedMotionSensor";position = "-44.2831 -312.641 112.007";rotation = "-0.98347 0.181072 0 90.0002";scale = "1 1 1";team = "1";ownerGUID = "2886178";nametoset = " Any one----> ";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-40.769 -315.347 109.928";rotation = "0 0 1 106.151";scale = "0.5 0.5 0.05";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-55.757 -226.151 127.922";rotation = "8.16735e-09 -0.00644321 0.999979 180";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-53.1075 -224.569 128.638";rotation = "0 0 1 43.7199";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-58.3407 -222.658 129.108";rotation = "1.26756e-06 0.999979 0.00644127 180";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";frequency = "4";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-58.3407 -222.658 129.368";rotation = "1.26759e-06 -0.00644 0.999979 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-64.0724 -350.324 129.938";rotation = "0 0 1 9.71763";scale = "1110.23 9221.68 2101.35";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); \ No newline at end of file diff --git a/Univ/Data/2886178/Buildings/3.cs b/Univ/Data/2886178/Buildings/3.cs new file mode 100644 index 0000000..1956229 --- /dev/null +++ b/Univ/Data/2886178/Buildings/3.cs @@ -0,0 +1,298 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "F9Alejandro" +// Created in mission "LandofHell" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.0446 -993.329 149.184";rotation = "-0.299268 0.6747 0.674698 146.679";scale = "37.5 0.166666 200";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.777 -934.36 149.185";rotation = "-0.375748 0.847129 -0.375748 99.4626";scale = "0.125 0.166666 318";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "42.902 -939.766 129.336";rotation = "0 0 1 119.416";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.4143 -993.29 129.436";rotation = "-4.53245e-06 -8.77047e-06 -1 47.8402";scale = "39.75 0.166667 38.996";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "31.5462 -940.602 124.436";rotation = "0 0 1 10.2891";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-2.53979 -954.696 148.933";rotation = "-0.405459 0.914113 1.15872e-06 180";scale = "0.125 0.166666 38.994";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-2.8972 -954.776 148.946";rotation = "-0.0247788 0.999693 1.2672e-06 180";scale = "0.125 0.166666 39.02";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "41.8434 -934.779 124.448";rotation = "0 0 1 129.315";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.9405 -897.84 140.941";rotation = "-0.375748 0.847129 -0.375748 99.4626";scale = "3.9965 0.166666 152.898";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.113 -933.99 129.185";rotation = "-0.375756 0.847126 -0.375745 99.4614";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-1.80699 -956.435 129.336";rotation = "0 0 -1 27.8225";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.9411 -897.84 131.198";rotation = "-0.375748 0.847129 -0.375748 99.4626";scale = "0.125 0.166666 152.9";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.888 -1052.41 129.436";rotation = "0 0 1 132.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.4703 -1052.6 129.436";rotation = "0 0 1 177.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "42.218 -1049.45 129.835";rotation = "0.95182 0.306657 3.88716e-07 180";scale = "2 2 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "42.218 -1049.45 129.835";rotation = "-8.068e-06 1.36323e-12 -1 35.7158";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "40.158 -1046.68 124.435";rotation = "0 0 1 117.577";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "48.9231 -897.372 149.187";rotation = "-0.596425 0.567573 0.567572 118.374";scale = "0.125 0.166666 1";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "5.683 -919.066 129.448";rotation = "0 0 1 18.3207";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "49.1092 -897.655 148.934";rotation = "-0.405459 0.914113 1.15872e-06 180";scale = "0.125 0.166666 38.972";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "10.88 -908.613 129.448";rotation = "0 0 1 12.6086";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "51.5275 -897.887 129.348";rotation = "0 0 -1 87.5938";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "9.73399 -906.895 129.448";rotation = "0 0 1 18.4083";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "6.41499 -907.967 129.448";rotation = "0 0 1 0.197823";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-14.156 -923.447 129.449";rotation = "0 0 -1 37.4679";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-36.6027 -1056.32 149.186";rotation = "-0.0175239 0.706999 0.706997 177.992";scale = "37.5 0.16 200";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "8.786 -904.945 129.448";rotation = "0 0 -1 37.4459";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.1471 -954.787 140.941";rotation = "-0.0247712 0.999386 -0.0247711 90.0351";scale = "4.0025 0.166666 152.814";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-40.122 -973.328 129.339";rotation = "0 0 1 182.434";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-38.2716 -978.758 124.436";rotation = "0 0 1 175.056";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-15.538 -914.756 129.449";rotation = "0 0 1 64.5076";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-23.687 -923.167 129.449";rotation = "0 0 1 39.9697";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-3.147 -954.79 131.186";rotation = "-0.0247712 0.999386 -0.0247708 90.0351";scale = "0.125 0.166666 153.416";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "11.801 -891.611 129.448";rotation = "0 0 1 132.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-35.057 -937.304 129.449";rotation = "0 0 -1 24.8721";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-38.272 -942.416 129.449";rotation = "0 0 1 56.6464";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-33.981 -932.96 129.449";rotation = "0 0 1 72.219";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-2.20399 -898.574 129.449";rotation = "0 0 -1 0.745457";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-32.468 -927.614 129.449";rotation = "0 0 1 42.2053";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "0.778 -894.773 129.449";rotation = "0 0 -1 4.12388";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-15.464 -903.241 129.449";rotation = "0 0 1 199.66";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-39.206 -935.892 129.449";rotation = "0 0 1 57.8281";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-29.47 -913.414 129.449";rotation = "0 0 1 132.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-40.52 -931.225 129.449";rotation = "0 0 1 45.4682";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.2206 -1052.61 149.186";rotation = "-0.0247712 0.999386 -0.0247711 90.0351";scale = "0.125 0.166666 318";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.945 -934.175 129.435";rotation = "0 0 1 132.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "144.012 -932.251 124.446";rotation = "0 0 1 94.0493";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.1 -933.74 129.435";rotation = "0 0 1 87.1601";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "32.946 -870.606 129.448";rotation = "0 0 -1 99.2386";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-51.642 -933.434 129.449";rotation = "0 0 1 61.0905";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "148.005 -933.189 129.846";rotation = "0.849265 0.527967 6.69246e-07 180";scale = "2 2 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "148.005 -933.189 129.846";rotation = "-4.43988e-06 -1.26774e-13 -1 63.7364";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-36.1814 -1056.55 129.437";rotation = "-0.000108798 -6.65658e-05 -1 2.84048";scale = "39.75 0.166667 38.998";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "16.738 -869.798 129.448";rotation = "0 0 1 177.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "43.72 -1052.59 129.186";rotation = "-0.0247766 0.999386 -0.0247691 90.0346";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-60.749 -941.392 129.45";rotation = "0 0 -1 7.7333";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.3924 -821.154 140.954";rotation = "0.586657 -0.558275 0.586654 238.347";scale = "3.99625 0.166666 152.631";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "4.26801 -870.097 129.449";rotation = "0 0 -1 72.8653";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.3924 -821.155 131.212";rotation = "-0.567573 -0.596426 0.567571 118.374";scale = "0.125 0.166666 153.23";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "27.48 -859.055 129.448";rotation = "0 0 -1 34.93";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-60.419 -914.187 129.45";rotation = "0 0 1 222.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "28.045 -855.167 129.448";rotation = "0 0 -1 56.0406";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "146.905 -854.215 149.186";rotation = "-0.596425 0.567571 0.567574 118.374";scale = "37.5 0.16 200";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-79.7469 -958.516 148.939";rotation = "0.933078 -0.359674 -4.55919e-07 180";scale = "0.125 0.166666 38.96";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-27.391 -874.328 129.449";rotation = "0 0 1 222.16";scale = "5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.74";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "70.6595 -852.844 129.347";rotation = "0 0 1 87.7588";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "26.306 -852.92 129.448";rotation = "0 0 -1 44.6193";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-67.35 -920.761 129.45";rotation = "0 0 1 17.5795";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-80.3347 -960.472 129.339";rotation = "0 0 1 17.2544";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-48.367 -889.256 129.45";rotation = "0 0 1 177.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "70.8533 -848.613 124.447";rotation = "0 0 1 113.89";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-26.5863 -879.835 213.737";rotation = "-0.024773 0.999386 -0.024773 90.0351";scale = "2 0.166666 78.688";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "24.923 -845.64 129.448";rotation = "0 0 -1 45.0207";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "6.78999 -849.613 129.449";rotation = "0 0 -1 57.3748";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "22.033 -845.546 129.448";rotation = "0 0 -1 110.098";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "16.819 -844.557 129.448";rotation = "0 0 -1 115.34";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-28.2812 -840.625 213.737";rotation = "0.586657 -0.558275 0.586654 238.347";scale = "2 0.166666 78.995";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-86.051 -937.651 129.45";rotation = "0 0 1 16.8431";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-15.822 -850.863 129.449";rotation = "0 0 1 222.16";scale = "0.125 3.33333 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "4.242 -842.299 129.449";rotation = "0 0 -1 118.13";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "46.9126 -856.847 149.187";rotation = "-0.596425 0.567573 0.567572 118.374";scale = "46.5 0.0333333 372";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "-46.7167 -861.302 152.237";rotation = "0.999693 0.0247801 3.1411e-08 180";scale = "1.75 2.33333 6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "3";moving = "open";prevscale = "1.75 2.33333 6";state = "closed";timeout = "2";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-47.0599 -861.365 149.637";rotation = "-0.47329 0.880907 1.11663e-06 180";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";frequency = "17";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-47.0599 -861.365 149.637";rotation = "7.57915e-07 -4.39512e-13 1 123.504";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-82.513 -911.461 129.45";rotation = "0 0 1 215.163";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-47.4379 -861.109 148.737";rotation = "0 0 -1 28.3715";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-47.4379 -861.109 148.737";rotation = "0.969506 0.245066 -3.10644e-07 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-46.4893 -862.719 210.137";rotation = "0.998554 -0.0537666 -6.8154e-08 180";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";frequency = "17";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-46.4893 -862.719 160.137";rotation = "-4.71175e-05 9.26559e-13 1 6.16319";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "62.9997 -831.619 124.448";rotation = "0 0 1 10.9317";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-41.6136 -861.396 124.449";rotation = "0 0 -1 92.135";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.73";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "146.916 -854.435 129.186";rotation = "-0.596422 0.567568 0.567581 118.374";scale = "40 0.173333 771.6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.5753 -877.879 211.814";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-48.2645 -859.652 149.237";rotation = "0 0 1 149.547";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-65.5187 -879.018 211.831";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.71";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Zombies";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-175.191 -1006.66 129.188";rotation = "0.262974 0.682216 0.682221 209.468";scale = "40 0.166666 771.6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-188.512 -733.95 129.189";rotation = "-0.847131 -0.375747 -0.375743 99.4626";scale = "40 0.166666 771.6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.0409 -861.076 209.237";rotation = "0 0 1 87.1601";scale = "10 13.3333 1";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.5635 -671.019 129.189";rotation = "-0.0175266 0.706999 -0.706997 182.007";scale = "40 0.16 771.6";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-91.425 -925.516 129.45";rotation = "0 0 1 106.487";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-88.853 -918.104 129.45";rotation = "0 0 1 107.876";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-61.5998 -878.791 124.45";rotation = "0 0 1 60.5851";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.71";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-65.6339 -876.695 211.831";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.72";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Zombie Lords";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-54.0183 -862.391 149.137";rotation = "0 0 -1 103.744";scale = "0.05 0.05 0.05";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.7136 -875.09 211.876";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-27.5647 -860.111 217.487";rotation = "-0.596408 0.567583 0.567579 118.377";scale = "9.75 0.166667 77.688";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-92.574 -921.167 129.45";rotation = "0 0 1 96.0495";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-65.7591 -874.171 211.795";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.73";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Ravengers";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.8382 -872.579 211.878";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-75.013 -885.876 129.45";rotation = "0 0 1 132.16";scale = "5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.74";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-47.5703 -860.465 124.45";rotation = "0 0 1 48.3183";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.77";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-47.598 -858.5 129.45";rotation = "0 0 1 51.2128";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-47.7199 -858.235 124.45";rotation = "0 0 -1 7.06328";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.76";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-46.583 -860.221 124.45";rotation = "0 0 1 73.6428";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.74";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-50.4244 -859.69 124.45";rotation = "0 0 -1 22.3463";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-65.903 -871.273 211.741";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.74";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Demons";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.9696 -869.929 211.813";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.21 -774.686 149.186";rotation = "0.586657 -0.558275 0.586654 238.347";scale = "0.125 0.166666 317.998";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-52.3419 -862.192 124.45";rotation = "0 0 1 233.318";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.72";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-47.8526 -856.02 124.45";rotation = "0 0 1 2.76394";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.75";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.38 -820.904 148.947";rotation = "0.724412 -0.689367 -8.73835e-07 180";scale = "0.125 0.166666 38.98";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-66.0058 -869.197 211.791";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.75";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Air Rapiers";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.2953 -820.452 148.937";rotation = "0.933078 -0.359674 -4.55919e-07 180";scale = "0.125 0.166666 38.96";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.1048 -867.205 211.783";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "147.149 -854.088 129.436";rotation = "-7.38341e-06 -7.98205e-07 -1 92.8398";scale = "39.7497 0.166667 39";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.384 -821.9 129.448";rotation = "0 0 1 177.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.125 -858.107 129.45";rotation = "0 0 1 132.16";scale = "0.125 3.33333 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-66.1406 -866.48 211.738";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.6";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Stalkers";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.2561 -864.155 211.78";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "48.0189 -819.543 129.348";rotation = "0 0 -1 112.901";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.186 -774.186 129.186";rotation = "0.586661 -0.558274 0.586651 238.348";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-66.2901 -863.465 211.776";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.77";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Ultra Demons";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-79.933 -958.348 140.949";rotation = "0.338448 0.878013 0.338447 97.4332";scale = "3.995 0.166666 152.965";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-101.818 -920.768 129.45";rotation = "0 0 1 111.143";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "59.4144 -818.381 124.448";rotation = "0 0 1 64.6159";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-66.4103 -861.045 211.776";rotation = "0.558275 0.586657 0.586654 238.347";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-101.446 -916.163 129.45";rotation = "0 0 1 147.091";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-65.6449 -881.521 213.737";rotation = "0.567573 0.596426 0.567571 118.374";scale = "2 0.166666 78";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "-66.4515 -860.212 211.7";rotation = "0.558277 0.586652 0.586658 238.348";scale = "0.3 0.3 0.3";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.8";isSwitchedOff = "1";switchRadius = "200";timed = "2";nametoset = "Demon Lord";SwitchTimer = "10000";};setTargetSensorGroup(%building.getTarget(),1);setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-79.932 -958.348 131.209";rotation = "0.338448 0.878013 0.338447 97.4332";scale = "0.125 0.166666 152.965";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-89.594 -891.618 129.45";rotation = "0 0 1 71.4289";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-36.046 -837.03 129.449";rotation = "0 0 1 222.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "2.76401 -820.083 129.449";rotation = "0 0 -1 115.34";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-107.937 -924.718 129.451";rotation = "0 0 1 36.8493";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-28.0441 -840.362 213.737";rotation = "-0.024773 0.999386 -0.024773 90.0351";scale = "2 0.166666 79.0002";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-16.961 -823.911 129.449";rotation = "0 0 1 219.558";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-117.014 -945.373 129.451";rotation = "0 0 1 225.786";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "5.737 -811.474 129.449";rotation = "0 0 -1 116.141";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "16.013 -809.036 129.449";rotation = "0 0 1 229.297";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.178 -814.591 129.449";rotation = "0 0 -1 115.34";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-67.7452 -842.329 159.737";rotation = "0 0 1 87.1601";scale = "0.125 0.166666 16";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-125.73 -950.539 124.439";rotation = "0 0 -1 115.675";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-32.43 -820.106 129.449";rotation = "0 0 1 177.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-113.778 -904.519 129.451";rotation = "0 0 -1 115.34";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-99.765 -878.452 129.451";rotation = "0 0 1 71.9068";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-112.524 -1055.15 124.438";rotation = "0 0 1 237.905";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-94.754 -869.884 129.45";rotation = "0 0 1 81.7342";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-1.70399 -805.941 129.449";rotation = "0 0 -1 98.4634";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-7.44901 -807.414 129.449";rotation = "0 0 -1 81.3256";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-115.834 -1060.5 129.438";rotation = "0 0 1 177.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-114.819 -1057.68 129.838";rotation = "0.99314 0.116931 1.48221e-07 180";scale = "2 2 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-114.819 -1057.68 129.838";rotation = "-2.16066e-05 3.05927e-12 -1 13.4301";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-116.268 -1060.35 129.438";rotation = "0 0 1 222.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "3.782 -802.202 129.449";rotation = "0 0 -1 74.8438";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-15.679 -808.011 129.449";rotation = "0 0 -1 97.3702";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-8.80499 -805.379 129.449";rotation = "0 0 -1 74.7882";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-58.55 -827.147 129.45";rotation = "0 0 1 154.66";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.1116 -820.281 140.947";rotation = "0.338452 0.87801 0.338451 97.4332";scale = "3.995 0.166666 152.985";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-108.938 -880.209 129.451";rotation = "0 0 1 159.94";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-79.644 -842.341 129.45";rotation = "0 0 -1 115.34";scale = "0.125 6.66666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.74";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-100.435 -864.53 129.451";rotation = "0 0 1 222.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.74";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "45.11 -820.281 131.207";rotation = "0.338448 0.878013 0.338447 97.4332";scale = "0.125 0.166666 152.986";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-1.108 -797.265 129.449";rotation = "2.77288e-07 5.99785e-08 1 222.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-175.942 -1005.98 149.189";rotation = "0.878013 -0.338449 0.338447 97.433";scale = "37.5 0.166666 200";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-34.921 -808.721 129.45";rotation = "0 0 1 197.299";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-111.191 -872.194 129.451";rotation = "0 0 1 93.2036";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-97.763 -852.529 129.451";rotation = "0 0 1 87.4637";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-116.769 -874.397 129.451";rotation = "0 0 1 86.382";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.561 -806.422 129.45";rotation = "0 0 1 199.66";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-118.086 -875.38 129.451";rotation = "0 0 1 180.562";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.812 -906.845 148.939";rotation = "0.933078 -0.359674 -4.55919e-07 180";scale = "0.125 0.166666 38.958";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.878 -906.444 148.947";rotation = "0.724405 -0.689374 -8.73845e-07 180";scale = "0.125 0.166666 38.992";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-28.732 -796.326 129.449";rotation = "0 0 1 184.61";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "28.708 -780.078 129.34";rotation = "0 0 1 43.1047";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-116.089 -865.413 129.451";rotation = "0 0 1 91.408";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-138.748 -907.658 129.351";rotation = "0 0 1 61.6669";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-22.921 -789.879 129.449";rotation = "0 0 1 132.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-121.465 -871.047 129.451";rotation = "0 0 1 166.108";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-73.482 -816.291 129.45";rotation = "0 0 1 87.1601";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-52.957 -803.564 129.45";rotation = "0 0 1 184.72";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-127.967 -876.403 129.451";rotation = "0 0 1 222.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-119.975 -865.424 129.451";rotation = "0 0 1 83.162";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-49.946 -800.906 129.45";rotation = "0 0 1 178.023";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-105.344 -845.401 129.451";rotation = "0 0 1 105.118";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-91.036 -829.434 129.451";rotation = "0 0 1 113.765";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-46.846 -795.382 129.45";rotation = "0 0 1 170.926";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-51.806 -797.003 129.45";rotation = "0 0 1 189.362";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-57.305 -800.029 129.45";rotation = "0 0 1 214.592";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-128.252 -869.142 129.451";rotation = "0 0 1 87.682";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.8";ZType = "6";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-64.746 -801.093 129.45";rotation = "0 0 1 222.16";scale = "0.125 3.33333 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-58.982 -797.479 129.45";rotation = "0 0 1 230.044";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-107.411 -835.006 129.451";rotation = "0 0 -1 92.8398";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-124.277 -854.156 129.451";rotation = "0 0 -1 92.8398";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-60.693 -797.106 129.45";rotation = "0 0 1 223.425";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-94.21 -821.57 129.451";rotation = "0 0 1 122.839";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-82.645 -811.799 129.45";rotation = "0 0 1 129.783";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.71";ZType = "1";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-46.409 -786.549 129.45";rotation = "0 0 1 177.16";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-72.487 -802.682 129.45";rotation = "0 0 1 145.751";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.72";ZType = "3";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-60.602 -794.779 129.45";rotation = "0 0 -1 112.615";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-100.582 -824.437 129.451";rotation = "0 0 1 160.248";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-104.251 -827.558 129.451";rotation = "0 0 1 160.22";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.75";ZType = "5";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.89 -906.192 140.95";rotation = "0.567578 0.596417 0.567575 118.375";scale = "3.9995 0.166666 152.595";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-93.645 -816.291 129.451";rotation = "0 0 1 140.116";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.73";ZType = "2";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "137.279 -779.963 145.172";rotation = "-0.299265 0.674698 0.674702 146.678";scale = "3.9999 0.166666 10.0023";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-11.7775 -768.774 148.938";rotation = "0.933078 -0.359674 -4.55919e-07 180";scale = "0.125 0.166666 38.96";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-136.89 -906.193 131.201";rotation = "0.567578 0.596417 0.567575 118.375";scale = "0.125 0.166666 152.597";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "83.6985 -720.659 149.188";rotation = "-0.878014 0.338445 0.338448 97.4331";scale = "37.5 0.166666 200";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-113.598 -832.205 129.451";rotation = "0 0 1 191.284";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.77";ZType = "12";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-110.411 -828.021 129.451";rotation = "0 0 1 174.821";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-11.754 -766.556 129.34";rotation = "0 0 1 178.121";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-101.987 -817.4 129.451";rotation = "0 0 1 166.752";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.76";ZType = "9";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedZSpawnBase";position = "-107.797 -822.472 129.451";rotation = "0 0 1 194.85";scale = "1 1 1";team = "1";ownerGUID = "2886178";powerFreq = "77.74";ZType = "4";spawnTypeset = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-234.316 -953.463 149.189";rotation = "0.682219 -0.262977 0.682217 209.467";scale = "0.125 0.166666 318.002";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.796 -770.991 149.287";rotation = "0.922893 -0.355746 -0.147357 221.841";scale = "0.125 0.166666 12.9997";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "138.319 -774.621 129.841";rotation = "0.372481 0.92804 1.17637e-06 180";scale = "2 2 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "138.319 -774.621 129.841";rotation = "1.87464e-06 5.41202e-12 1 223.737";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-175.386 -1006.83 129.439";rotation = "7.74706e-07 1.71634e-06 1 222.16";scale = "39.7492 0.166667 39";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.198 -774.436 129.436";rotation = "0 0 1 87.1601";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "143.001 -774.018 129.436";rotation = "0 0 1 42.1603";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.109 -770.492 137.436";rotation = "0.682219 -0.262976 0.682217 209.467";scale = "4 0.166666 9.99938";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-116.083 -1060.52 129.188";rotation = "0.338446 0.878013 0.338449 97.4326";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-82.014 -793.605 129.45";rotation = "0 0 1 199.66";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-95.469 -802.814 129.451";rotation = "0 0 1 154.66";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-112.042 -816.937 129.451";rotation = "0 0 1 109.66";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "10.8762 -753.986 124.44";rotation = "0 0 -1 46.8344";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";switchRadius = "1000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-69.317 -782.854 129.44";rotation = "0 0 -1 25.3397";scale = "2.5 0.166666 20";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.3341 -772.516 140.939";rotation = "0.706999 0.017523 0.706997 177.992";scale = "4.0005 0.166666 152.698";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.3341 -772.516 131.188";rotation = "0.706999 0.017523 0.706997 177.992";scale = "0.125 0.166666 152.696";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-19.3351 -758.408 124.44";rotation = "0 0 1 41.7537";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "128.37 -782.351 145.172";rotation = "-0.379189 0.854882 0.354108 162.148";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-164.272 -877 124.452";rotation = "0 0 -1 92.2244";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.631 -829.685 148.939";rotation = "0.914114 0.405456 5.13953e-07 180";scale = "0.125 0.166666 38.974";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.462 -829.503 140.945";rotation = "0.674702 0.299264 0.674699 146.679";scale = "3.99675 0.166666 153.104";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-159.645 -859.776 129.352";rotation = "0 0 -1 89.8948";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.165 -747.002 129.436";rotation = "-3.88784e-06 3.16866e-06 1 132.16";scale = "0.125 23.3333 39";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-140.463 -829.502 131.202";rotation = "0.674701 0.299266 0.674699 146.679";scale = "0.125 0.166666 153.101";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-142.817 -829.144 129.351";rotation = "0 0 1 104.261";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-51.052 -753.727 129.34";rotation = "0 0 1 1.71915";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.5838 -772.529 148.94";rotation = "0.999693 0.0247782 3.14086e-08 180";scale = "0.125 0.166666 39.004";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-88.9137 -772.57 148.939";rotation = "0.914114 0.405456 5.13953e-07 180";scale = "0.125 0.166666 39.002";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-70.4547 -760.202 124.438";rotation = "0 0 -1 91.0436";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-89.1986 -769.797 129.338";rotation = "0 0 1 169.722";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "77.0243 -721.359 139.187";rotation = "-0.299265 0.674705 -0.674695 213.321";scale = "2.49989 0.166666 18.0025";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "-122.643 -787.402 129.338";rotation = "0 0 -1 49.405";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-238.414 -872.914 149.189";rotation = "0.596425 -0.567574 0.567571 118.375";scale = "37.5 0.16 200";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-128.769 -789.364 124.451";rotation = "0 0 -1 45.9282";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.9531 -667.129 149.188";rotation = "0.682219 -0.262976 0.682217 209.467";scale = "0.125 0.166666 318";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.2198 -723.51 145.316";rotation = "0.338445 0.878014 0.338448 97.4333";scale = "1.81075 0.166666 18.0006";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "87.2198 -723.51 139.187";rotation = "0.338444 0.878013 0.338451 97.4326";scale = "0.125 0.166666 18.0005";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "83.8839 -720.49 138.937";rotation = "0.359672 0.933079 1.18276e-06 180";scale = "2.25006 0.166666 19";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "1";moving = "open";prevscale = "2.25006 0.166666 19";state = "closed";timeout = "0";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.5825 -666.793 129.188";rotation = "0.682223 -0.262974 0.682214 209.468";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.0279 -670.992 149.19";rotation = "-0.999386 -0.0247717 -0.0247694 90.0351";scale = "37.5 0.166666 200";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-225.575 -952.166 124.453";rotation = "0 0 -1 99.2059";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "17.9206 -682.343 145.188";rotation = "-0.379189 0.854884 -0.354104 197.852";scale = "0.125 0.166666 200";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-231.197 -952.288 129.853";rotation = "0.92552 -0.3787 -4.80036e-07 180";scale = "2 2 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-231.197 -952.288 129.853";rotation = "-6.44514e-06 1.62181e-12 1 44.5062";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-234.501 -953.295 129.439";rotation = "0 0 1 222.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-234.698 -952.877 129.439";rotation = "0 0 -1 92.8398";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.604 -693.977 129.438";rotation = "-2.75899e-06 1.38568e-06 -1 47.8399";scale = "0.125 23.3333 39";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "104.762 -698.571 129.338";rotation = "0.933802 -0.35779 -4.53532e-07 180";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";frequency = "27";teleMode = "3";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "104.762 -698.571 129.338";rotation = "-6.85114e-06 -1.8715e-12 1 41.9291";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-188.49 -733.927 149.189";rotation = "-0.84713 -0.375749 -0.375743 99.462";scale = "37.5 0.166666 200";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "103.979 -695.92 123.938";rotation = "0 0 1 227.071";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "23.1226 -676.598 145.188";rotation = "-0.299265 0.674698 0.674702 146.678";scale = "4.00012 0.166666 9.9988";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-242.588 -793.823 149.189";rotation = "0.586656 -0.558276 0.586654 238.347";scale = "0.125 0.166666 317.998";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-238.649 -873.225 129.439";rotation = "-7.38341e-06 -7.98205e-07 -1 92.8398";scale = "39.75 0.166667 39";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-234.686 -953.127 129.189";rotation = "0.567573 0.596423 0.567574 118.374";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "27.9498 -670.182 149.188";rotation = "0.922893 -0.355746 -0.147357 221.841";scale = "0.125 0.166666 12.9997";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "77.7";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "23.871 -670.831 129.841";rotation = "-0.433219 0.901289 1.14247e-06 180";scale = "2 2 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "23.871 -670.831 129.841";rotation = "7.97132e-07 -4.7584e-12 1 128.656";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.9539 -667.127 137.438";rotation = "0.682219 -0.262976 0.682217 209.467";scale = "4 0.166666 10.0001";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.7678 -666.961 129.438";rotation = "0 0 1 42.1603";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.3328 -666.805 129.438";rotation = "0 0 1 177.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-134.721 -674.695 149.19";rotation = "0.706999 0.0175239 0.706997 177.992";scale = "0.125 0.166666 317.998";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-55.3188 -670.756 129.438";rotation = "-1.66757e-06 -1.51741e-06 1 87.1601";scale = "0.125 52.9999 39";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "24.5825 -666.793 129.188";rotation = "-0.0247701 0.999386 -0.0247713 90.0346";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-242.276 -792.954 149.189";rotation = "0.674702 0.299265 0.674698 146.679";scale = "0.125 0.166666 318";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-235.563 -795.035 124.453";rotation = "0 0 -1 75.3927";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-188.915 -734.023 129.439";rotation = "-1.85289e-06 1.78671e-06 1 132.16";scale = "39.75 0.166667 39";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-242.612 -793.324 129.189";rotation = "0.674702 0.299262 0.674699 146.678";scale = "0.125 0.166666 320";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-240.003 -794.531 129.853";rotation = "0.708762 -0.705448 -8.94219e-07 180";scale = "2 2 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-240.003 -794.531 129.853";rotation = "-3.07041e-06 5.6844e-13 1 89.7315";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-242.6 -793.573 129.439";rotation = "0 0 -1 92.8398";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-242.444 -793.139 129.439";rotation = "0 0 -1 47.8397";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "-131.329 -680.897 124.439";rotation = "0 0 -1 36.9735";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-134.258 -677.517 129.839";rotation = "-0.221436 0.975175 1.23612e-06 180";scale = "2 2 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "77.7";frequency = "7";teleMode = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-134.258 -677.517 129.839";rotation = "1.01202e-06 2.95883e-12 1 154.413";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-134.971 -674.707 129.44";rotation = "0 0 1 177.16";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-135.387 -674.906 129.439";rotation = "0 0 -1 47.8397";scale = "0.125 0.166666 40";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-45.0824 -218.808 132.518";rotation = "1 -2.43096e-06 -1.9987e-06 179.262";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-48.8324 -218.811 132.768";rotation = "0.707101 -0.00455984 0.707098 179.478";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "-47.1489 -219.036 130.851";rotation = "-1.0602e-06 0.70254 0.711645 180";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";frequency = "27";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "-47.1489 -219.036 130.851";rotation = "-1.26759e-06 0.711644 -0.702541 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-47.0824 -218.535 130.771";rotation = "0.579811 0.579814 -0.572394 239.573";scale = "0.875 1.16667 0.2";team = "1";ownerGUID = "2886178";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-49.0824 -218.763 129.018";rotation = "8.16735e-09 -0.00644321 0.999979 180";scale = "0.125 0.166666 8";team = "1";ownerGUID = "2886178";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "-48.4547 -215.645 124.058";rotation = "8.16735e-09 -0.00644321 0.999979 180";scale = "1 1 1";team = "1";ownerGUID = "2886178";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); \ No newline at end of file diff --git a/Univ/Data/2886178/Ranks/CnC4/Saved.Rank b/Univ/Data/2886178/Ranks/CnC4/Saved.Rank new file mode 100644 index 0000000..851c62a --- /dev/null +++ b/Univ/Data/2886178/Ranks/CnC4/Saved.Rank @@ -0,0 +1,40 @@ +//Ranks File For GUID 2886178 +//Created On 2010-04-18, C&C 4 +$Rank::Name[2886178] = "F9Alejandro"; +$Rank::Rank[2886178, 1] = "Gunnary Private"; +$Rank::XP[2886178, 1] = 1541; +$Rank::Rank[2886178, 2] = "Delerion"; +$Rank::XP[2886178, 2] = 4845; +$Rank::Rank[2886178, 3] = "Raider"; +$Rank::XP[2886178, 3] = 0; +$CNC::KilledByPl[2886178, 2860882] = 4; +$CNC::TotalKills[2886178] = 7; +$CNC::Kills[2886178, 2860882] = 1; +$CNC::TotalBuilds[2886178] = 47; +$CNC::BuildingsBuilt[2886178, "PowerPlant"] = 20; +$CNC::TotalCrawlerDecoms[2886178] = 1; +$CNC::Deaths[2886178] = 44; +$CNC::KilledByPl[2886178, 2687806] = 4; +$CNC::BuildingsBuilt[2886178, "Bunker"] = 16; +$CNC::Help[2886178, 2] = 1; +$CNC::TotalBuildingKills[2886178] = 6; +$CNC::BuildingKills[2886178, "ObeliskOfLight"] = 1; +$CNC::KilledByPl[2886178, 2000343] = 1; +$CNC::TotalBuildingLosses[2886178] = 3; +$CNC::BuildingLosses[2886178, "Bunker"] = 2; +$CNC::KilledByObj[2886178, CobraTurret] = 1; +$CNC::KilledByObj[2886178, CrawlerTurretBase] = 4; +$CNC::KilledByObj[2886178, SalamanderFireMissileTurret] = 1; +$CNC::KilledByObj[2886178, RifleSoldierArmor] = 2; +$CNC::Kills[2886178, 3026074] = 1; +$CNC::KilledByObj[2886178, FalconMRLSTurretDeployedBase] = 2; +$CNC::BuildingKills[2886178, "FalconMRLS"] = 1; +$CNC::BuildingKills[2886178, "GunTurret"] = 1; +$CNC::BuildingKills[2886178, "FocusBeam"] = 1; +$CNC::TotalCrawlerKills[2886178] = 2; +$CNC::Kills[2886178, 2714648] = 3; +$CNC::Kills[2886178, 3206219] = 2; +$CNC::CrawlerKills[2886178, 3206219] = 1; +$CNC::KilledByPl[2886178, 2714648] = 5; +$CNC::KilledByObj[2886178, OrcaUnit] = 1; +$CNC::BuildingLosses[2886178, "PowerPlant"] = 1; \ No newline at end of file diff --git a/Univ/Data/2886178/Ranks/TWM2/Saved.TWMSave b/Univ/Data/2886178/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..3ffe4c0 --- /dev/null +++ b/Univ/Data/2886178/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,202 @@ +//Ranks & Settings File For GUID 2886178 / Name: F9Alejandro +//Created On 2010-11-19, Total Warfare Mod 2 3.5 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_2886178) { + + new ScriptObject(TWM2Client_2886178) { + + HeliCalls = "26"; + hasMedalTheLight = "1"; + weaponKillsWp400Image = "7"; + noMoreEXP05ec8a0c6ae6a7005ef78101b3ccc82c5dfedc1a = "0"; + noMoreEXPdc7b9d125155cc301183ae093f3bfe9b8cc3a597 = "0"; + noMoreEXPdd80bc24dac8672bcf767d755c529873255414ac = "0"; + noMoreEXP35f136884b65ba778bbcfa4ccd59bcefc1cf8258 = "0"; + noMoreEXP6c40a08c348816c726fb4502aefda7aaa3cbc5f8 = "0"; + noMoreEXPbdd827761f1ab2ee90be57d19b47d608dd78e2bc = "0"; + SatNukeCalls = "6"; + challengeCompleteHelicopter1 = "1"; + gameTime = "8566"; + hasMedalSrysly = "1"; + noMoreEXPafd65474d446a6dde699343e249c8305bb5c112c = "0"; + officer = "0"; + hasMedalDailyMax = "1"; + challengeCompleteIns1 = "1"; + challengeCompleteS3RifleImage_3 = "1"; + noMoreEXP32e62694dd31776e24f357b4acc4e988e3e000d3 = "0"; + noMoreEXP1b6475b3ab1948b2abe866ad6a445f9d0129cc4e = "0"; + xpGain6a0c8abf721c54d1168639f7efe996c0de0104eb = "107"; + hasMedalBurningNightmare = "1"; + challengeCompletePulsePhaserImage_3 = "1"; + noMoreEXPd9de6e2caeda34a1a37110ca942c2f04524d90c8 = "0"; + challengeCompleteR700SniperRifleImage_1 = "1"; + noMoreEXP49106f22de9d150fbd5606af00eb16405f8f8184 = "0"; + challengeComplete3For5Sabo = "1"; + challengeCompletePulsePhaserImage_5 = "1"; + xpGain4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "35529"; + noMoreEXP24a5f5898db61153fd1ae9ccb7f3dd2b0429ed46 = "0"; + challengeCompleteSimonSays = "1"; + hasMedalTheNewGeneral = "1"; + weaponKillsMp26Image = "4"; + noMoreEXP4436560adc04b26b975f41b64e1a6fda2f8e2715 = "0"; + noMoreEXP163309f7d20e9d13aea1cddbb374e4a5e2fbf87f = "0"; + xpGain05ec8a0c6ae6a7005ef78101b3ccc82c5dfedc1a = "43210"; + hasMedalNuclearDawn = "1"; + weaponKillsG17SniperRifleImage = "74"; + xpGain49106f22de9d150fbd5606af00eb16405f8f8184 = "196572"; + challengeCompleteMilestone25 = "1"; + hasMedalTheUltimateHeadshot = "1"; + noMoreEXPeda914a77e55aad7e7c12a57aa7f122fa43d085b = "0"; + noMoreEXP232efdff56b108c368cbe587f5fd4eac010b95f4 = "0"; + noMoreEXP784b4659990722bb3d884f1aed98d7cf08812b9a = "0"; + weaponKillsPulseRifleImage = "1"; + weaponKillsS3SRifleImage = "380"; + xpGain20101120 = "147620"; + xpGainb4b3b9bbb32de394f880cda62002aeb900c8e5f4 = "72"; + AirstrikeCalls = "53"; + xpGain6c40a08c348816c726fb4502aefda7aaa3cbc5f8 = "16488"; + weaponKillsM1700Image = "54"; + noMoreEXP1cebdd03e0d549faba0c1d80c580b3052ed55331 = "0"; + phrase = "None Set"; + noMoreEXP88dfe234cf9bcb0f0b20f3c8b9ecd21aec9b2345 = "0"; + xpGain7c002129fba7c117b128edb1f4ef0ce1153a3ea1 = "1486"; + challengeCompleteAirstrike1 = "1"; + noMoreEXP6a0c8abf721c54d1168639f7efe996c0de0104eb = "0"; + hasMedalInsigniaDefeated = "1"; + noMoreEXP096452e939718d812d2d8657844d162cd2a0ed36 = "0"; + challengeComplete15For15 = "1"; + noMoreEXP91add7cf7886d77002ae84ea77fa577c0db892c1 = "0"; + xpGain38913e5ddc4b7a9cc22652c7ec793f3010e192f6 = "280"; + challengeCompleteFromTheTop = "1"; + hasMedalRevengeAvoidedAgain = "1"; + xpGain1b6475b3ab1948b2abe866ad6a445f9d0129cc4e = "64"; + weaponKillsRPGImage = "1"; + weaponKillsLD06SavagerImage = "9"; + noMoreEXPede11104d231d7649917ff6289def0f9287e6902 = "0"; + bossDefeatCountVardison3 = "1"; + weaponKillsMRXXImage = "49"; + weaponKillsR700SniperRifleImage = "352"; + noMoreEXPb83507ec9eb66c5c2ad20c7a9d913e577e3ce341 = "0"; + weaponKillsDeagleImage = "18"; + xpGain2a09b7b3efb489590ac743f84eea4e155e94d87b = "176188"; + xpGaind9de6e2caeda34a1a37110ca942c2f04524d90c8 = "450828"; + weaponKillsS3RifleImage = "362"; + challengeCompletespikerImage_1 = "1"; + noMoreEXP98b575265bb5add2f01dea955b7aa153bb69fdb4 = "0"; + weaponKillsP90Image = "17"; + bossDefeatCountInsignia = "2"; + challengeCompletePulsePhaserImage_2 = "1"; + NapalmHarrierCalls = "6"; + bossDefeatCountYvex = "2"; + challengeCompletePulsePhaserImage_1 = "1"; + weaponKillsSA2400Image = "1"; + noMoreEXPc9b1c8e149a084575e67d1204b521967027eeac5 = "0"; + noMoreEXP7c002129fba7c117b128edb1f4ef0ce1153a3ea1 = "0"; + rank = "Commander"; + weaponKillsShadowRifleImage = "7"; + challengeCompleteBombDisarmed = "1"; + noMoreEXP7157524394b5b23795f12ae582a4859a543a7db9 = "0"; + rankNumber = "60"; + bossDefeatCountVengenor = "2"; + weaponKillsPg700Image = "14"; + xpGainb83507ec9eb66c5c2ad20c7a9d913e577e3ce341 = "80"; + name = "F9Alejandro"; + xpGaineda914a77e55aad7e7c12a57aa7f122fa43d085b = "2530"; + UAVCalls = "6"; + hasMedalTheSourceOfAllEvil = "1"; + noMoreEXP38913e5ddc4b7a9cc22652c7ec793f3010e192f6 = "0"; + bossDefeatCountLordRog = "1"; + xpGainbdd827761f1ab2ee90be57d19b47d608dd78e2bc = "608100"; + xpGain4436560adc04b26b975f41b64e1a6fda2f8e2715 = "20"; + challengeCompleteS3RifleImage_1 = "1"; + weaponKillsNapalmImage = "37"; + noMoreEXP0ac238afdd346e7b2e22a669d608862c217b87af = "0"; + challengeCompleteEpicFailure = "1"; + weaponKillsM1SniperRifleImage = "96"; + challengeCompleteArmyOf50Stopped = "1"; + weaponKillspistolImage = "22"; + xpGain7157524394b5b23795f12ae582a4859a543a7db9 = "461520"; + noMoreEXPb6fbdce79185e8b928f7dc576a18af95af468452 = "0"; + noMoreEXP4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "0"; + weaponKillsG41RifleImage = "10"; + challengeCompletespikerImage_2 = "1"; + bossDefeatCountShadeLord = "2"; + weaponKillsflamerImage = "44"; + xpGainafd65474d446a6dde699343e249c8305bb5c112c = "229"; + challengeCompleteR700SniperRifleImage_2 = "1"; + weaponKillsALSWPSniperRifleImage = "19"; + hasMedalHonorsB = "1"; + noMoreEXP680e7deda563526e500f58036b6375a82134c2b0 = "0"; + money = "196264"; + GMCalls = "8"; + millionxp = "2"; + weaponKillsMp26CMDOImage = "83"; + xpGainc9b1c8e149a084575e67d1204b521967027eeac5 = "64952"; + noMoreEXP2a09b7b3efb489590ac743f84eea4e155e94d87b = "0"; + hasMedalGamerExcuisite = "1"; + noMoreEXP05fd5809259065bb6c5118b76aad3b24949c6dd3 = "0"; + bossDefeatCountGhostOfFire = "4"; + weaponKillsPulsePhaserImage = "1242"; + hasMedalHonorsA = "1"; + NukeCalls = "1"; + challengeCompleteNapalmImage_1 = "1"; + weaponKillsM4A1Image = "15"; + weaponKillsspikerImage = "54"; + xpGain05fd5809259065bb6c5118b76aad3b24949c6dd3 = "6564"; + challengeCompleteS3RifleImage_2 = "1"; + hasMedalHonorsC = "1"; + weaponKillslasergunImage = "16"; + challengeCompleteGoldStar = "1"; + challengeCompleteBombDetonated = "1"; + xpGainee527c226a836088156cb166ad8704a69723a4fe = "702444"; + noMoreEXPfdd9330966537889b883c917c248124703b206ee = "0"; + hasMedalAGreatCommando = "1"; + noMoreEXPe5318d4147f1df7f2a9c6dc371ea7783d4168440 = "0"; + weaponKillsRP432Image = "4"; + xpGainfdd9330966537889b883c917c248124703b206ee = "21956"; + challengeCompleteM1700Image_1 = "1"; + noMoreEXPb4b3b9bbb32de394f880cda62002aeb900c8e5f4 = "0"; + noMoreEXPd4bc189d30ad198f82d2188bb8e082ed0532d917 = "0"; + xp = "949408"; + noMoreEXP = "1"; + challengeCompleteAngel = "1"; + noMoreEXP1039f9bee04ef0fe706e8b49159ab9825bd08d7f = "0"; + weaponKillsMiniChaingunImage = "14"; + noMoreEXPee527c226a836088156cb166ad8704a69723a4fe = "0"; + challengeCompleteVard1 = "1"; + challengeCompletePulsePhaserImage_4 = "1"; + }; + new ScriptObject(CCD_2886178) { + + expireDate = "20130831"; + }; + new ScriptObject(ClientSettings2886178) { + + savedstreak3 = "4"; + savedperk3 = "Bandolier"; + savedstreak1 = "1"; + savedperk1 = "AP Bullets"; + savedstreak2 = "2"; + savedperk2 = "Head Guard"; + }; + new ScriptObject(ClientStore2886178) { + + nextLoto = "0"; + purchasedGuardianFlare = "0"; + purchasedThunderstorm = "0"; + nextSlot = "0"; + purchasedFireworks = "1"; + purchasedHologram = "0"; + purchasedSpontaneousCombustion = "0"; + purchasedFalseExplosion = "0"; + }; + new ScriptObject(CCD_2886178) { + + expireDate = "20111231"; + }; + new ScriptObject(CCD_2886178) { + + expireDate = "20130831"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/3040953/Buildings/1.cs b/Univ/Data/3040953/Buildings/1.cs new file mode 100644 index 0000000..2516d67 --- /dev/null +++ b/Univ/Data/3040953/Buildings/1.cs @@ -0,0 +1,139 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Lone Warrior" +// Created in mission "FlatlandBigH" +// Construction v0.70 Development Version 1 + +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "49.8213 5.7866 108";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "3040953";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "108.195 -10.7616 107.75";rotation = "0.683132 0.516397 -0.516395 111.323";scale = "0.125 0.166666 180.717";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.5655 -44.1258 114.25";rotation = "0.705543 -0.0665082 0.70554 187.61";scale = "0.125 0.166666 38";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.3199 -44.0791 110.5";rotation = "0 0 1 100.77";scale = "0.125 0.166666 8";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.2732 -44.3247 114.25";rotation = "-0.537634 0.649541 -0.53763 113.989";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.8514 -46.1468 112.25";rotation = "0.0665074 0.70554 0.705543 187.61";scale = "4.75 1.16667 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.4673 16.3759 107.164";rotation = "-0.136397 -0.98122 0.136395 91.0866";scale = "0.125 0.166666 22.6292";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.4764 -47.7232 110.5";rotation = "0 0 -1 79.2298";scale = "0.125 0.166666 8";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "108.194 -10.7616 106.153";rotation = "0.703717 -0.097817 -0.703714 168.826";scale = "0.125 0.166666 75.9938";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.4297 -47.9688 114.25";rotation = "-0.537632 0.649542 -0.537631 113.989";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "60.7748 -47.3646 110.5";rotation = "0 0 1 3.59792";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.4673 16.3759 105.589";rotation = "-0.136397 -0.98122 0.136395 91.0866";scale = "0.125 0.166666 22.6292";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "71.2275 -49.5623 110.5";rotation = "0 0 1 94.6584";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "71.3972 -0.3299 107.5";rotation = "0.137683 0.990476 1.25552e-06 180";scale = "0.125 0.166666 15";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "59.9315 -50.9684 110.5";rotation = "0 0 -1 25.7725";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "52.7436 -53.704 112.25";rotation = "-0.505123 0.610264 0.61027 126.401";scale = "4.74995 1.16667 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "64.5912 -52.4256 110.5";rotation = "0 0 1 4.6048";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "56.6404 -51.7285 110.5";rotation = "0 0 -1 112.127";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "108.194 -10.7616 104.291";rotation = "0.703717 -0.097817 -0.703714 168.826";scale = "0.125 0.166666 75.9938";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.9217 -63.2821 114.25";rotation = "0.705543 -0.0665082 0.70554 187.61";scale = "0.125 0.166666 38";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "71.9 -57.3481 112.25";rotation = "0.0934409 0.99123 0.0934424 90.505";scale = "0.875 6.33329 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "23.5934 13.2218 107.501";rotation = "0.137683 0.990476 1.25552e-06 180";scale = "0.125 0.166666 15.002";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "59.812 -55.4745 110.5";rotation = "0 0 1 65.8919";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.2308 -47.6765 109.245";rotation = "0.0934393 0.991231 0.0934389 90.505";scale = "0.125 0.166666 38";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "20";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "69.9633 -56.2633 110.5";rotation = "0 0 1 99.234";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "64.6556 -57.1072 110.5";rotation = "0 0 1 24.8745";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.3199 -44.0791 106.5";rotation = "0 0 1 100.77";scale = "0.125 0.166666 8";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "66.926 -59.0489 110.5";rotation = "0 0 1 78.4826";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.2732 -44.3247 110.25";rotation = "-0.537634 0.649541 -0.53763 113.989";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.6761 -63.2354 110.5";rotation = "0 0 1 100.77";scale = "0.125 0.166666 8";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "52.7433 -53.7043 110.25";rotation = "0.705543 -0.0665082 0.70554 187.61";scale = "0.125 6.6667 38";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.2268 16.4441 107.501";rotation = "0.137683 0.990476 1.25552e-06 180";scale = "0.125 0.166666 15.002";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.4764 -47.7232 106.5";rotation = "0 0 -1 79.2298";scale = "0.125 0.166666 8";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.4673 16.3759 102.945";rotation = "-0.136397 -0.98122 0.136395 91.0866";scale = "0.125 0.166666 22.6292";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "53.0568 -60.3556 110.5";rotation = "0 0 1 216.057";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "60.3011 -64.8118 112.25";rotation = "-0.991231 0.0934367 0.0934422 90.5045";scale = "4.75 1.16667 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "59.4418 -61.5251 110.5";rotation = "0 0 1 188.58";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "61.8266 -55.8128 109.6";rotation = "0 0 1 166.513";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "20";frequency = "4";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "61.8266 -55.8128 109.6";rotation = "-0.117425 0.993082 -1.25882e-06 180";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.8792 -66.634 110.25";rotation = "0.610267 0.505125 0.610265 126.401";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.5655 -44.1258 107.557";rotation = "0.705543 -0.0665082 0.70554 187.61";scale = "0.125 0.166666 38";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.8325 -66.8796 110.5";rotation = "0 0 1 100.77";scale = "0.125 0.166666 8";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "66.2753 -62.6026 110.5";rotation = "0 0 1 188.57";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.2732 -44.3247 109.24";rotation = "-0.537634 0.649541 -0.53763 113.989";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "20";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "108.435 -10.8298 107.5";rotation = "0.797727 0.603019 7.64381e-07 180";scale = "0.125 0.166666 15";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "108.194 -10.7616 101.407";rotation = "0.703717 -0.097817 -0.703714 168.826";scale = "0.125 0.166666 75.9938";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.2308 -47.6765 106.75";rotation = "0.0934393 0.991231 0.0934389 90.505";scale = "0.125 0.166666 38";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.4297 -47.9688 109.198";rotation = "-0.537632 0.649542 -0.537631 113.989";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "20";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.4673 16.3759 100.969";rotation = "-0.136397 -0.98122 0.136395 91.0866";scale = "0.125 0.166666 22.6292";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.7228 -62.9898 107.564";rotation = "0.610267 0.505125 0.610265 126.401";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "64.2581 -57.6317 106.5";rotation = "0 0 1 210.883";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.4297 -47.9688 107.512";rotation = "-0.537632 0.649542 -0.537631 113.989";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.5656 -44.1259 104.667";rotation = "0.705542 -0.0665097 0.70554 187.61";scale = "0.125 0.166666 8.99994";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.7228 -62.9898 106.75";rotation = "0.610267 0.505125 0.610265 126.401";scale = "0.125 0.166666 37.9996";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.5869 -66.8329 109.206";rotation = "0.0934381 0.991231 0.0934377 90.505";scale = "0.125 0.166666 38";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "20";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "59.4775 -45.0603 104.63";rotation = "0.705543 -0.0665082 0.70554 187.61";scale = "0.125 0.166666 7.99994";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.1586 16.2036 107.751";rotation = "0.0978192 0.703717 -0.703714 168.826";scale = "0.125 0.166666 199.001";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.9639 -50.8132 105.75";rotation = "-0.0934356 -0.991231 0.0934402 90.5044";scale = "0.125 0.166666 8.99974";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "20";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "59.3 -48.3246 106";rotation = "0.819496 0.573085 7.26437e-07 180";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.9639 -50.8132 105.404";rotation = "-0.0934356 -0.991231 0.0934402 90.5044";scale = "0.125 0.166666 8.99974";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "20";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.6761 -63.2354 106.5";rotation = "0 0 1 100.77";scale = "0.125 0.166666 8";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "47.1207 -35.6781 103.174";rotation = "-0.683138 -0.516384 -0.516401 111.323";scale = "0.125 0.166666 74.0042";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.8792 -66.634 106.75";rotation = "0.610267 0.505125 0.610265 126.401";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "62.076 -55.479 106.5";rotation = "0.770349 0.637623 1.85527e-06 180";scale = "4.99993 6.66663 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.8982 -45.9012 104.266";rotation = "0.705543 -0.0665082 0.70554 187.61";scale = "0.125 0.166666 18.9913";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "62.9639 -50.8132 105.049";rotation = "-0.0934356 -0.991231 0.0934402 90.5044";scale = "0.125 0.166666 8.99974";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.2296 -106.798 107.75";rotation = "0.98122 -0.136396 0.136393 91.0859";scale = "0.125 0.166666 200";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.32 -44.0792 101";rotation = "0 0 -1 79.2298";scale = "0.125 0.166666 10";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.1586 16.2036 106.755";rotation = "0.623613 0.471399 -0.623611 230.478";scale = "0.125 0.166666 199.001";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "59.2319 -45.0136 101";rotation = "0 0 1 100.77";scale = "0.125 0.166666 10";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.8325 -66.8796 106.5";rotation = "0 0 1 100.77";scale = "0.125 0.166666 8";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.6526 -45.8545 101";rotation = "0 0 1 100.77";scale = "0.125 0.166666 10";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.9217 -63.2821 107.58";rotation = "0.705543 -0.0665082 0.70554 187.61";scale = "0.125 0.166666 38";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.4722 -47.7224 101";rotation = "0 0 1 100.77";scale = "0.125 0.166666 10";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.7679 -62.9986 104.749";rotation = "0.610267 0.505125 0.610265 126.401";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField9";position = "63.372 -46.0455 100.99";rotation = "0.0665066 0.70554 0.705543 187.61";scale = "4.01997 3.39999 0.48";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "60.4612 -50.5916 103.5";rotation = "0.537634 -0.649541 -0.53763 113.989";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.1586 16.2036 105.385";rotation = "0.623613 0.471399 -0.623611 230.478";scale = "0.125 0.166666 199.001";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.9217 -63.2821 106.75";rotation = "0.705543 -0.0665082 0.70554 187.61";scale = "0.125 0.166666 38";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "63.6413 -58.9158 106";rotation = "0.153285 0.988182 1.25261e-06 180";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "54.5656 -44.1259 101.927";rotation = "0.705542 -0.0665097 0.70554 187.61";scale = "0.125 0.166666 8.99994";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "58.1227 -52.1824 103.5";rotation = "0.649541 0.537634 -0.53763 113.989";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "108.367 -11.0703 106.006";rotation = "0.623612 0.471401 -0.623609 230.479";scale = "0.125 0.166666 199";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.2095 -50.8599 104.799";rotation = "0.995587 -0.0938482 -1.18961e-07 180";scale = "0.125 0.166666 7.598";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "66.9641 -53.8643 103.5";rotation = "-0.505123 0.610268 -0.610265 233.599";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "67.1389 -51.6074 104.799";rotation = "0.995587 -0.0938482 -1.18961e-07 180";scale = "0.125 0.166666 7.598";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "63.8982 -45.9012 101.871";rotation = "0.705543 -0.0665082 0.70554 187.61";scale = "0.125 0.166666 18.9913";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.4255 -47.968 104.186";rotation = "-0.537634 0.649541 -0.53763 113.989";scale = "0.125 0.166666 37.9198";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "59.8772 -59.6416 104.05";rotation = "0.0665086 0.705539 0.705543 187.61";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.1586 16.2036 104.453";rotation = "0.623613 0.471399 -0.623611 230.478";scale = "0.125 0.166666 199.001";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "57.1884 -57.0945 103.5";rotation = "-0.505123 0.610268 0.610265 126.401";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "61.9347 -42.9295 99.8772";rotation = "0.128933 -0.15577 -0.979343 80.4066";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "66.0298 -58.7763 103.5";rotation = "-0.649541 -0.537634 -0.53763 113.989";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "56.1099 -46.71 100.5";rotation = "0 0 -1 79.2298";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "58.7795 -59.4328 103.5";rotation = "0.610268 0.505123 -0.610265 233.599";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "61.0218 -47.6444 100.5";rotation = "0 0 1 100.77";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.1586 16.2036 103.397";rotation = "0.623613 0.471399 -0.623611 230.478";scale = "0.125 0.166666 199.001";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "108.367 -11.0703 104.255";rotation = "0.623612 0.471401 -0.623609 230.479";scale = "0.125 0.166666 199";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "63.6912 -60.3672 103.5";rotation = "-0.537634 0.649541 -0.53763 113.989";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "65.9337 -48.5787 100.5";rotation = "0 0 -1 79.2298";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.7679 -62.9986 102.077";rotation = "0.610267 0.505125 0.610265 126.401";scale = "0.125 0.166666 37.9998";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "70.8456 -49.5131 100.5";rotation = "0 0 1 100.77";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.5943 -66.7936 104.26";rotation = "0.0934393 0.991231 0.0934389 90.505";scale = "0.125 0.166666 37.9078";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "62.3895 -56.0941 101";rotation = "0 0 1 41.7879";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "60.406 -52.5532 101.4";rotation = "0.70867 -0.70554 -8.94336e-07 180";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "20";frequency = "4";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "60.406 -52.5532 101.4";rotation = "-3.06984e-06 1.13688e-13 1 89.7464";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "34.0194 -80.9752 103.173";rotation = "0.0978197 0.70371 0.703721 191.174";scale = "0.125 0.166666 94.8062";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "65.0239 -57.0515 101";rotation = "0 0 1 36.2043";scale = "1 1 1";team = "1";ownerGUID = "3040953";deployed = "1";powerFreq = "20";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.4255 -47.968 101.972";rotation = "-0.537634 0.649541 -0.53763 113.989";scale = "0.125 0.166666 37.9198";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "55.1756 -51.6218 100.5";rotation = "0 0 1 100.77";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "60.0875 -52.5562 100.5";rotation = "0 0 -1 79.2298";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "50.7212 -63.2442 101";rotation = "0 0 1 100.77";scale = "0.125 0.166666 10";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "64.9993 -53.4906 100.5";rotation = "0 0 1 100.77";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "69.9112 -54.4249 100.5";rotation = "0 0 -1 79.2298";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.8399 -66.8403 101";rotation = "0 0 -1 79.2298";scale = "0.125 0.166666 10";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "54.2412 -56.5338 100.5";rotation = "0 0 -1 79.2298";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "59.1531 -57.4681 100.5";rotation = "0 0 1 100.77";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "64.065 -58.4025 100.5";rotation = "0 0 -1 79.2298";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.1586 16.2036 100.935";rotation = "0.623613 0.471399 -0.623611 230.478";scale = "0.125 0.166666 199.001";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "70.0997 -91.2036 103.173";rotation = "0.0978197 0.70371 0.703721 191.174";scale = "0.125 0.166666 94.8068";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "68.9769 -59.3369 100.5";rotation = "0 0 1 100.77";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.5943 -66.7936 102.035";rotation = "0.0934393 0.991231 0.0934389 90.505";scale = "0.125 0.166666 37.9078";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "108.367 -11.0703 101.322";rotation = "0.623612 0.471401 -0.623609 230.479";scale = "0.125 0.166666 199";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "53.3068 -61.4457 100.5";rotation = "0 0 1 100.77";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "58.2188 -62.38 100.5";rotation = "0 0 -1 79.2298";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "63.1306 -63.3144 100.5";rotation = "0 0 1 100.77";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedwWall";position = "68.0425 -64.2487 100.5";rotation = "0 0 -1 79.2298";scale = "1.25 1.66666 1";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedFloorIndoor";position = "35.6292 -94.1315 108";rotation = "1 0 0 0";scale = "1 1 1";team = "1";ownerGUID = "3040953";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-14.8069 -79.8332 107.75";rotation = "0.703717 -0.0978204 0.703714 191.174";scale = "0.125 0.166666 200";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "70.272 -91.5123 103.173";rotation = "-0.471402 0.623605 0.623616 129.522";scale = "0.125 0.166666 77.3674";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-14.8069 -79.8332 106.521";rotation = "0.703717 -0.0978204 0.703714 191.174";scale = "0.125 0.166666 199";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.9209 -106.971 104.457";rotation = "0.703717 -0.0978192 -0.703714 168.826";scale = "0.125 0.166666 199";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-14.8069 -79.8332 103.401";rotation = "0.703717 -0.0978204 0.703714 191.174";scale = "0.125 0.166666 199";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-15.0474 -79.765 100";rotation = "0 0 -1 74.1728";scale = "0.125 0.166666 16";team = "1";ownerGUID = "3040953";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "80.9209 -106.971 101.153";rotation = "0.703717 -0.0978192 -0.703714 168.826";scale = "0.125 0.166666 199";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.1614 -107.039 107.5";rotation = "0.990477 -0.137681 -1.74523e-07 180";scale = "0.125 0.166666 15";team = "1";ownerGUID = "3040953";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/3040953/Ranks/Powers/Saved.Dat b/Univ/Data/3040953/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..1f6bcc8 --- /dev/null +++ b/Univ/Data/3040953/Ranks/Powers/Saved.Dat @@ -0,0 +1,13 @@ +$PowerSave::Level[3040953, 2] = 1; +$PowerSave::SpendPoints[3040953, 2] = 1; +$PowerSave::EXP[3040953, 2] = 0; +$PowerSave::TopPlPosition[3040953, 2] = 1; +$PowerSave::Class[3040953, 2] = ""; +$PowerSave::Level[3040953, 1] = 7; +$PowerSave::SpendPoints[3040953, 1] = 2; +$PowerSave::EXP[3040953, 1] = 221; +$PowerSave::TopPlPosition[3040953, 1] = 1; +$PowerSave::Class[3040953, 1] = "Demon"; +$PowerSave::HasPower[3040953, 1, "FireBolt"] = 1; +$PowerSave::HasPower[3040953, 1, "EnergyBall1"] = 1; +$PowerSave::HasPower[3040953, 1, "FireBall1"] = 1; \ No newline at end of file diff --git a/Univ/Data/3040953/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3040953/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..1aca98e --- /dev/null +++ b/Univ/Data/3040953/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,267 @@ +//Ranks & Settings File For GUID 3040953 / Name: Lone Warrior +//Created On 2010-11-08, Total Warfare Mod 2 3.4 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3040953) { + + new ScriptObject(ClientSettings3040953) { + }; + new ScriptObject(CCD_3040953) { + + ZombieKillCount20120326_0_1 = "18"; + expireDate = "20120331"; + totalZombieKillCount20120326 = "18"; + ZombieKillCount20120326_PistolImage_1 = "18"; + }; + new ScriptObject(ClientSettings3040953) { + + weaponUpgradePulsePhaserImage = "Laser"; + savedperk2 = "Double Down"; + savedstreak5 = "16"; + savedstreak3 = "12"; + savedstreak1 = "2"; + savedperk5 = "Bandolier"; + savedperk1 = "Advanced Grip"; + savedstreak2 = "6"; + savedperk3 = "Kevlar Armor"; + savedperk4 = "No-Infect Armor"; + savedstreak4 = "14"; + }; + new ScriptObject(ClientStore3040953) { + + nextLoto = "0"; + purchasedFireworks = "0"; + purchasedThunderstorm = "0"; + nextSlot = "0"; + purchasedHologram = "0"; + purchasedSpontaneousCombustion = "1"; + purchasedFalseExplosion = "0"; + purchasedGuardianFlare = "0"; + }; + new ScriptObject(ClientSettings3040953) { + + weaponUpgradePulsePhaserImage = "Laser"; + savedperk2 = "Kevlar Armor"; + savedstreak5 = "16"; + savedstreak3 = "12"; + savedstreak1 = "2"; + savedperk1 = "AP Bullets"; + savedstreak2 = "6"; + savedperk3 = "No-Infect Armor"; + savedperk4 = "Bandolier"; + savedstreak4 = "14"; + }; + new ScriptObject(ClientSettings3040953) { + + weaponUpgradePulsePhaserImage = "Laser"; + savedperk2 = "Kevlar Armor"; + savedstreak5 = "16"; + savedstreak3 = "6"; + savedstreak1 = "2"; + savedperk1 = "AP Bullets"; + savedstreak2 = "4"; + savedperk3 = "No-Infect Armor"; + savedperk4 = "Bandolier"; + savedstreak4 = "14"; + }; + new ScriptObject(ClientSettings3040953) { + + weaponUpgradePulsePhaserImage = "Laser"; + savedperk2 = "Kevlar Armor"; + savedstreak5 = "16"; + savedstreak3 = "6"; + savedstreak1 = "2"; + savedperk1 = "AP Bullets"; + savedstreak2 = "4"; + savedperk3 = "No-Infect Armor"; + savedperk4 = "Bandolier"; + savedstreak4 = "14"; + }; + new ScriptObject(ClientSettings3040953) { + + weaponUpgradePulsePhaserImage = "Laser"; + savedperk2 = "Double Down"; + savedstreak5 = "16"; + savedstreak3 = "6"; + savedstreak1 = "2"; + savedperk5 = "Bandolier"; + savedperk1 = "Advanced Grip"; + savedstreak2 = "4"; + savedperk3 = "Kevlar Armor"; + savedperk4 = "No-Infect Armor"; + savedstreak4 = "14"; + }; + new ScriptObject(ClientSettings3040953) { + + weaponUpgradePulsePhaserImage = "Laser"; + savedperk2 = "Kevlar Armor"; + savedstreak5 = "16"; + savedstreak3 = "6"; + savedstreak1 = "2"; + savedperk1 = "AP Bullets"; + savedstreak2 = "4"; + savedperk3 = "No-Infect Armor"; + savedperk4 = "Bandolier"; + savedstreak4 = "14"; + }; + new ScriptObject(ClientSettings3040953) { + + weaponUpgradePulsePhaserImage = "Laser"; + savedperk2 = "Double Down"; + savedstreak5 = "16"; + savedstreak3 = "6"; + savedstreak1 = "2"; + savedperk5 = "Bandolier"; + savedperk1 = "Advanced Grip"; + savedstreak2 = "4"; + savedperk3 = "Kevlar Armor"; + savedperk4 = "No-Infect Armor"; + savedstreak4 = "14"; + }; + new ScriptObject(CCD_3040953) { + + ZombieKillCount20111125_0_2 = "2"; + totalZombieKillCount20111125 = "2"; + expireDate = "20111130"; + ZombieKillCount20111125_P90Image_1 = "1"; + ZombieKillCount20111125_0_1 = "1"; + ZombieKillCount20111125_P90Image_2 = "2"; + }; + new ScriptObject(CCD_3040953) { + + expireDate = "20111130"; + }; + new ScriptObject(CCD_3040953) { + + expireDate = "20111130"; + }; + new ScriptObject(CCD_3040953) { + + expireDate = "20111231"; + }; + new ScriptObject(ClientSettings3040953) { + + weaponUpgradePulsePhaserImage = "Laser"; + savedperk2 = "Double Down"; + savedstreak5 = "16"; + savedstreak3 = "7"; + savedstreak1 = "2"; + savedperk5 = "Bandolier"; + savedperk1 = "Advanced Grip"; + savedstreak2 = "6"; + savedperk3 = "Kevlar Armor"; + savedperk4 = "No-Infect Armor"; + savedstreak4 = "14"; + }; + new ScriptObject(CCD_3040953) { + + killstreakCalls20111212_6 = "4"; + ZombieKillCount20111212_0_14 = "2"; + ZombieKillCount20111212_m93Image_1 = "118"; + ZombieKillCount20111212_0_1 = "156"; + killstreakCalls20111212_2 = "4"; + expireDate = "20111231"; + ZombieKillCount20111212_PulsePhaserImage_1 = "9"; + ZombieKillCount20111212_m93Image_14 = "2"; + ZombieKillCount20111212_MeleeImage_1 = "5"; + totalZombieKillCount20111212 = "157"; + ZombieKillCount20111212_M4A1Image_1 = "1"; + ZombieKillCount20111212__1 = "23"; + }; + new ScriptObject(CCD_3040953) { + + expireDate = "20111231"; + }; + new ScriptObject(CCD_3040953) { + + expireDate = "20111231"; + }; + new ScriptObject(CCD_3040953) { + + expireDate = "20111231"; + }; + new ScriptObject(TWM2Client_3040953) { + + millionxp = "0"; + GMCalls = "0"; + SlthAirstrikeCalls = "0"; + rankNumber = "8"; + NukeCalls = "0"; + noMoreEXP56e985bae39b83aded1a7bda3a35cc45ca9dd8c5 = "0"; + xp = "414"; + HeliCalls = "0"; + gameTime = "7155"; + ArtyCalls = "0"; + GunHeliCalls = "0"; + noMoreEXP89cdac08df21a5718f555304b1ff83706f567ff0 = "0"; + AirstrikeCalls = "0"; + officer = "4"; + xpGain0242e146cf59a545568a0c91351c7d8a6002d7d7 = "414"; + phrase = "[RETURNING PLAYER] Plz excuse me if i act like a noob sometimes i just started playing T2 again in months!"; + noMoreEXP0242e146cf59a545568a0c91351c7d8a6002d7d7 = "0"; + CGCalls = "0"; + hasMedalGamerExcuisite = "1"; + name = "Lone Warrior"; + noMoreEXPbc92bde0fa78008460571f8238edd60056307e7b = "0"; + HarrierCalls = "0"; + rank = "Corporal"; + UAVCalls = "0"; + HWCalls = "0"; + ZBCalls = "0"; + money = "4.10454e+06"; + }; + new ScriptObject(CCD_3040953) { + + ZombieKillCount20111209_0_3 = "1"; + ZombieKillCount20111209_PulseSMGImage_1 = "1"; + ZombieKillCount20111209_S3RifleImage_2 = "1"; + ZombieKillCount20111209_S3RifleImage_4 = "2"; + ZombieKillCount20111209_0_4 = "2"; + ZombieKillCount20111209_0_1 = "12"; + ZombieKillCount20111209_0_13 = "1"; + ZombieKillCount20111209_S3RifleImage_11 = "8"; + ZombieKillCount20111209_S3RifleImage_1 = "11"; + expireDate = "20111231"; + ZombieKillCount20111209_0_11 = "8"; + totalZombieKillCount20111209 = "28"; + ZombieKillCount20111209_S3RifleImage_3 = "1"; + ZombieKillCount20111209_0_2 = "1"; + ZombieKillCount20111209_0_5 = "1"; + zombieHeadshots20111209 = "21"; + ZombieKillCount20111209_S3RifleImage_9 = "2"; + ZombieKillCount20111209_0_9 = "2"; + ZombieKillCount20111209_S3RifleImage_13 = "1"; + ZombieKillCount20111209_RP432Image_5 = "1"; + }; + new ScriptObject(CCD_3040953) { + + ZombieKillCount20111209_PulseSMGImage_1 = "6"; + ZombieKillCount20111209_Grenade_13 = "1"; + ZombieKillCount20111209_0_1 = "13"; + ZombieKillCount20111209_0_13 = "4"; + ZombieKillCount20111209_S3RifleImage_1 = "6"; + ZombieKillCount20111209__13 = "1"; + ZombieKillCount20111209_PulseSMGImage_13 = "1"; + expireDate = "20111231"; + totalZombieKillCount20111209 = "16"; + zombieHeadshots20111209 = "2"; + ZombieKillCount20111209_MeleeImage_1 = "1"; + ZombieKillCount20111209_S3RifleImage_13 = "1"; + }; + new ScriptObject(CCD_3040953) { + + ZombieKillCount20111211_0_13 = "2"; + killstreakCalls20111211_2 = "1"; + expireDate = "20111231"; + ZombieKillCount20111211_0_1 = "13"; + ZombieKillCount20111211_Mp26CMDOImage_1 = "3"; + zombieHeadshots20111211 = "9"; + totalZombieKillCount20111211 = "14"; + ZombieKillCount20111211_S3SRifleImage_1 = "10"; + ZombieKillCount20111211_Mp26CMDOImage_13 = "2"; + }; + new ScriptObject(CCD_3040953) { + + expireDate = "20120331"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/3060368/Ranks/Powers/Saved.Dat b/Univ/Data/3060368/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..c41c63d --- /dev/null +++ b/Univ/Data/3060368/Ranks/Powers/Saved.Dat @@ -0,0 +1,97 @@ +//Powers Mod Data Saver. +//--- OBJECT WRITE BEGIN --- +new SimSet(ClientData_3060368) { + + new ScriptObject(classData10_3060368) { + class = "Undecided"; + + affinity = "0"; + spendPoints = "1"; + exp = "0"; + level = "1"; + }; + new ScriptObject(classData2_3060368) { + class = "Phantom"; + + hasPowerFlicker = "1"; + affinity = "0"; + hasPowerShadowStrike = "1"; + spendPoints = "6"; + exp = "251"; + level = "8"; + }; + new ScriptObject(classData3_3060368) { + class = "Witch"; + + hasPowerLightStrike = "1"; + affinity = "0"; + spendPoints = "0"; + exp = "16"; + level = "1"; + }; + new ScriptObject(classData4_3060368) { + class = "Hunter"; + + hasPowerManaArrow = "1"; + affinity = "0"; + spendPoints = "2"; + exp = "67"; + level = "3"; + }; + new ScriptObject(classData5_3060368) { + class = "Undecided"; + + affinity = "0"; + spendPoints = "1"; + exp = "0"; + level = "1"; + }; + new ScriptObject(classData6_3060368) { + class = "Undecided"; + + affinity = "0"; + spendPoints = "1"; + exp = "0"; + level = "1"; + }; + new ScriptObject(classData7_3060368) { + class = "Undecided"; + + affinity = "0"; + spendPoints = "1"; + exp = "0"; + level = "1"; + }; + new ScriptObject(classData8_3060368) { + class = "Undecided"; + + affinity = "0"; + spendPoints = "1"; + exp = "0"; + level = "1"; + }; + new ScriptObject(classData9_3060368) { + class = "Undecided"; + + affinity = "0"; + spendPoints = "1"; + exp = "0"; + level = "1"; + }; + new ScriptObject(classData1_3060368) { + class = "Demon"; + + hasPowerFireBall1 = "1"; + hasPowerFireBall3 = "1"; + hasPowerEleStrike = "1"; + affinity = "0"; + spendPoints = "7"; + hasPowerThunder = "1"; + exp = "7107"; + hasPowerLightning = "1"; + level = "30"; + hasPowerEnergyVampire = "1"; + hasPowerFireBolt = "1"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/3060368/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3060368/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..997c10e --- /dev/null +++ b/Univ/Data/3060368/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,224 @@ +//Ranks & Settings File For GUID 2000343 / Name: Phantom139 +//Ranks & Settings File For GUID 3060368 / Name: ALittlebear +//Created On 2011-10-07, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3060368) { + + new ScriptObject(TWM2Client_3060368) { + + challengeComplete15For15 = "1"; + noMoreEXPb47efe2379f1336e87dd71f87643bb12f14c6659 = "0"; + weaponKillsR700SniperRifleImage = "64"; + ZBCalls = "0"; + hasMedalHarbiend = "1"; + bossDefeatCountCnlWindshear = "1"; + noMoreEXP26bc77186b7fdb0087fd458a5b4986ae1822641b = "0"; + money = "1.18985e+06"; + challengeCompleteS3RifleImage_2 = "1"; + noMoreEXP3168ab06a67b7ef06492b6f0c5af4a73283849ef = "0"; + noMoreEXP8856c216a14a70b8909906a45628ed4113371b78 = "0"; + challengeCompleteModel1887Image_1 = "1"; + weaponKillsspikerImage = "1"; + noMoreEXP06357015ac3cfebae2f340207cf20616b3cdb708 = "0"; + hasMedalTheUltimateHeadshot = "1"; + millionxp = "2"; + hasMedalBurningNightmare = "1"; + weaponKillspistolImage = "4"; + rankNumber = "57"; + challengeCompleteModel1887Image_4 = "1"; + challengeCompleteABC = "1"; + noMoreEXP07e0b2857f554d7fb175dae282e985129316b474 = "0"; + GMCalls = "1"; + SlthAirstrikeCalls = "0"; + weaponKillsPulsePhaserImage = "101"; + xpGain07e0b2857f554d7fb175dae282e985129316b474 = "215240"; + challengeCompleteS3RifleImage_1 = "1"; + weaponKillsNapalmImage = "17"; + bossDefeatCountGhostOfFire = "2"; + weaponKillsS3RifleImage = "211"; + name = "ALittlebear"; + noMoreEXP11a735ced5bdeea30f9f7fea896b285185029d99 = "0"; + challengeCompleteGroupBuster = "1"; + xpGain32e62694dd31776e24f357b4acc4e988e3e000d3 = "7516"; + NukeCalls = "0"; + challengeCompletePulsePhaserImage_1 = "1"; + xp = "103148"; + weaponKillsM1SniperRifleImage = "105"; + challengeCompleteModel1887Image_2 = "1"; + challengeCompleteZoneCapture = "1"; + noMoreEXP4f91474409e3b72c7c5cf8b5e59406ea15a3d711 = "0"; + xpGain4f91474409e3b72c7c5cf8b5e59406ea15a3d711 = "1.08554e+06"; + noMoreEXPbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "0"; + hasMedalTheLight = "1"; + HeliCalls = "1"; + gameTime = "5778"; + xpGainbf60b256ceb4bb9b3edef378f8535e18bd397194 = "116"; + noMoreEXP0974a89e4f159ee762db40aa7f4ae676abd86b4d = "0"; + ArtyCalls = "0"; + xpGainbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "457722"; + xpGainb47efe2379f1336e87dd71f87643bb12f14c6659 = "1272"; + SatNukeCalls = "1"; + GunHeliCalls = "0"; + xpGain11a735ced5bdeea30f9f7fea896b285185029d99 = "32652"; + hasMedalRevengeAvoidedAgain = "1"; + noMoreEXP232efdff56b108c368cbe587f5fd4eac010b95f4 = "0"; + bossDefeatCountLordRog = "1"; + challengeCompleteAcceptance = "1"; + bossDefeatCountShadeLord = "1"; + challengeCompleteM1SniperRifleImage_1 = "1"; + hasMedalHonorsA = "1"; + challengeCompleteMilestone25 = "1"; + hasMedalHonorsC = "1"; + AirstrikeCalls = "2"; + weaponKillsM1700Image = "24"; + phrase = "Boom Headshot"; + officer = "1"; + challengeCompleteAngel = "1"; + weaponKillsWp400Image = "14"; + weaponKillsMp26CMDOImage = "8"; + vehicleKillsHarbingerGunship = "1"; + weaponKillsMiniChaingunImage = "2"; + weaponKillsS3SRifleImage = "29"; + xpGain232efdff56b108c368cbe587f5fd4eac010b95f4 = "3678"; + CGCalls = "0"; + weaponKillsM4A1Image = "1"; + hasMedalSurvivor = "1"; + weaponKillslasergunImage = "1"; + noMoreEXPb4b3b9bbb32de394f880cda62002aeb900c8e5f4 = "0"; + bossDefeatCountInsignia = "1"; + hasMedalMySky = "1"; + hasMedalInsigniaDefeated = "1"; + challengeCompleteModel1887Image_3 = "1"; + HarrierCalls = "0"; + rank = "Commanding General"; + hasMedalHonorsB = "1"; + challengeCompleteLifeGiver = "1"; + noMoreEXPbf60b256ceb4bb9b3edef378f8535e18bd397194 = "0"; + hasMedalGamerExcuisite = "1"; + weaponKillsModel1887Image = "648"; + xpGainc709bed61d79462c4b5dbb6925539e9605f5832f = "5404"; + hasMedalLordraniussFall = "1"; + noMoreEXPc709bed61d79462c4b5dbb6925539e9605f5832f = "0"; + UAVCalls = "0"; + HWCalls = "0"; + bossDefeatCountTrebor = "1"; + noMoreEXP32e62694dd31776e24f357b4acc4e988e3e000d3 = "0"; + noMoreEXPf97387eb0a60a81f7be6f9f82140426f0b5ba7ef = "0"; + }; + new ScriptObject(CCD_3060368) { + + expireDate = "20120731"; + }; + new ScriptObject(TWM2Client_3060368) { + + money = "201207"; + millionxp = "0"; + rankNumber = "36"; + challengeCompleteS3RifleImage_1 = "1"; + weaponKillsS3RifleImage = "94"; + name = "ALittlebear"; + noMoreEXP11a735ced5bdeea30f9f7fea896b285185029d99 = "0"; + xp = "68046"; + HeliCalls = "7"; + gameTime = "4174"; + xpGain11a735ced5bdeea30f9f7fea896b285185029d99 = "68046"; + hasMedalHonorsA = "1"; + AirstrikeCalls = "7"; + weaponKillsM1700Image = "2"; + phrase = "None Set"; + officer = "1"; + weaponKillsMp26CMDOImage = "5"; + weaponKillsS3SRifleImage = "22"; + rank = "Lieutenant Colonel"; + hasMedalHonorsB = "1"; + hasMedalGamerExcuisite = "1"; + }; + new ScriptObject(ClientStore3060368) { + + purchasedFireworks = "1"; + purchasedHologram = "0"; + nextLoto = "0"; + purchasedThunderstorm = "0"; + purchasedSpontaneousCombustion = "0"; + nextSlot = "0"; + purchasedGuardianFlare = "0"; + purchasedFalseExplosion = "0"; + }; + new ScriptObject(ClientSettings3060368) { + }; + new ScriptObject(ClientSettings3060368) { + }; + new ScriptObject(CCD_3060368) { + + ZombieKillCount20111223_S3RifleImage_1 = "2"; + ZombieKillCount20111223_0_3 = "11"; + ZombieKillCount20111223_R700SniperRifleImage_1 = "41"; + totalZombieKillCount20111223 = "88"; + ZombieKillCount20111223_R700SniperRifleImage_2 = "2"; + ZombieKillCount20111223_0_2 = "28"; + ZombieKillCount20111223_Model1887Image_2 = "16"; + ZombieKillCount20111223_AcidCannonImage_2 = "1"; + ZombieKillCount20111223__2 = "6"; + ZombieKillCount20111223_Model1887Image_1 = "6"; + ZombieKillCount20111223_S3RifleImage_2 = "1"; + ZombieKillCount20111223_MeleeImage_2 = "2"; + ZombieKillCount20111223_MeleeImage_3 = "1"; + ZombieKillCount20111223_0_1 = "50"; + ZombieKillCount20111223_lasergunImage_1 = "1"; + expireDate = "20111231"; + ZombieKillCount20111223_Model1887Image_3 = "1"; + ZombieKillCount20111223_R700SniperRifleImage_3 = "9"; + zombieHeadshots20111223 = "52"; + }; + new ScriptObject(CCD_3060368) { + + ZombieKillCount20111223_R700SniperRifleImage_1 = "5"; + totalZombieKillCount20111223 = "33"; + ZombieKillCount20111223_M1SniperRifleImage_1 = "29"; + ZombieKillCount20111223_0_1 = "34"; + expireDate = "20111231"; + zombieHeadshots20111223 = "34"; + }; + new ScriptObject(CCD_3060368) { + + ZombieKillCount20111223_S3RifleImage_1 = "46"; + totalZombieKillCount20111223 = "53"; + ZombieKillCount20111223_M1700Image_1 = "8"; + ZombieKillCount20111223_0_1 = "54"; + expireDate = "20111231"; + zombieHeadshots20111223 = "45"; + }; + new ScriptObject(ClientSettings3060368) { + + savedperk1 = "Wind Brake Beacon"; + savedperk2 = "Kevlar Armor"; + savedperk3 = "Hardline"; + }; + new ScriptObject(CCD_3060368) { + + zombieHeadshots20111224 = "15"; + totalZombieKillCount20111224 = "51"; + killstreakCalls20111224_4 = "1"; + ZombieKillCount20111224_0_1 = "37"; + ZombieKillCount20111224_PistolImage_13 = "2"; + killstreakCalls20111224_2 = "1"; + ZombieKillCount20111224_S3SRifleImage_13 = "11"; + ZombieKillCount20111224_Mp26CMDOImage_1 = "6"; + ZombieKillCount20111224_Mp26CMDOImage_13 = "2"; + ZombieKillCount20111224_S3SRifleImage_1 = "18"; + ZombieKillCount20111224_PistolImage_1 = "1"; + ZombieKillCount20111224_0_13 = "15"; + ZombieKillCount20111224__1 = "12"; + expireDate = "20111231"; + killstreakCalls20111224_3 = "1"; + }; + new ScriptObject(CCD_3060368) { + + expireDate = "20120131"; + }; + new ScriptObject(CCD_3060368) { + + expireDate = "20121130"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/3119044/Ranks/Powers/Saved.Dat b/Univ/Data/3119044/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..bf96225 --- /dev/null +++ b/Univ/Data/3119044/Ranks/Powers/Saved.Dat @@ -0,0 +1,130 @@ +//--- OBJECT WRITE BEGIN --- +new SimSet(ClientData_3119044) { + + new ScriptObject(classData10_3119044) { + class = "Undecided"; + + level = "1"; + affinity = "0"; + spendPoints = "1"; + exp = "0"; + }; + new ScriptObject(classData1_3119044) { + class = "Prospector"; + + hasPowerHellstorm = "1"; + hasPowerHPBoost3 = "1"; + hasPowerSplitFire = "1"; + hasPowerHPBoost6 = "1"; + hasPowerEnergyBoost1 = "1"; + hasPowerEnergyBoost4 = "1"; + hasPowerEnergyVampire = "1"; + hasPowerFireBall6 = "1"; + hasPowerDarkHeal = "1"; + hasPowerFireBall2 = "1"; + hasPowerFireBall3 = "1"; + level = "92"; + hasPowerHPBoost5 = "1"; + affinity = "2"; + hasPowerHPBoost2 = "1"; + hasPowerDeepFlameShot = "1"; + hasPowerEnergyBoost5 = "1"; + hasPowerEnergyBoost6 = "1"; + hasPowerEnergyBoost3 = "1"; + hasPowerHPBoost1 = "1"; + hasPowerEnrage = "1"; + hasPowerEnergyBoost2 = "1"; + hasPowerHellsFury = "1"; + hasPowerLightning = "1"; + hasPowerHPBoost4 = "1"; + spendPoints = "52"; + exp = "20859"; + hasPowerFireBolt = "1"; + hasPowerParalyze = "1"; + hasPowerSuperSplitFire = "1"; + }; + new ScriptObject(classData3_3119044) { + class = "Undecided"; + + level = "1"; + affinity = "0"; + spendPoints = "1"; + exp = "0"; + }; + new ScriptObject(classData4_3119044) { + class = "Undecided"; + + level = "1"; + affinity = "0"; + spendPoints = "1"; + exp = "0"; + }; + new ScriptObject(classData5_3119044) { + class = "Undecided"; + + level = "1"; + affinity = "0"; + spendPoints = "1"; + exp = "0"; + }; + new ScriptObject(classData6_3119044) { + class = "Undecided"; + + level = "1"; + affinity = "0"; + spendPoints = "1"; + exp = "0"; + }; + new ScriptObject(classData7_3119044) { + class = "Undecided"; + + level = "1"; + affinity = "0"; + spendPoints = "1"; + exp = "0"; + }; + new ScriptObject(classData8_3119044) { + class = "Undecided"; + + level = "1"; + affinity = "0"; + spendPoints = "1"; + exp = "0"; + }; + new ScriptObject(classData9_3119044) { + class = "Undecided"; + + level = "1"; + affinity = "0"; + spendPoints = "1"; + exp = "0"; + }; + new ScriptObject(classData2_3119044) { + class = "Annihilator"; + + hasPowerHPBoost3 = "1"; + hasPowerDesolation = "1"; + hasPowerHPBoost6 = "1"; + hasPowerBurnForce = "1"; + hasPowerFissureBurst = "1"; + hasPowerEnergyBoost1 = "1"; + hasPowerEnergyBoost4 = "1"; + level = "94"; + hasPowerHPBoost5 = "1"; + affinity = "2"; + hasPowerHPBoost2 = "1"; + hasPowerEnergyBoost5 = "1"; + hasPowerEnergyBoost6 = "1"; + hasPowerDragonsRevenge = "1"; + hasPowerHPBoost1 = "1"; + hasPowerEnergyBoost3 = "1"; + hasPowerEnergyBoost2 = "1"; + hasPowerSunRay = "1"; + hasPowerHPBoost4 = "1"; + spendPoints = "158"; + exp = "36346"; + hasPowerFireBolt = "1"; + hasPowerEnergyBoost7 = "1"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/3119044/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3119044/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..e69de29 diff --git a/Univ/Data/3152732/Buildings/1.cs b/Univ/Data/3152732/Buildings/1.cs new file mode 100644 index 0000000..19ed8a0 --- /dev/null +++ b/Univ/Data/3152732/Buildings/1.cs @@ -0,0 +1,533 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Drakolich" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.982 23.9778 140.75";rotation = "-0.563816 0.603509 -0.563816 117.778";scale = "0.125 0.166666 71.0614";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.999 24.2272 101";rotation = "0 0 1 3.89485";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "332.248 24.2102 140.75";rotation = "0.706904 -0.0240346 0.706901 182.754";scale = "0.125 0.166666 82.5848";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "351.222 10.1813 124.363";rotation = "0.0339687 0.998845 0.0339705 90.0666";scale = "3.52 6.80258 0.48";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "6.704";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.983 23.9778 114.868";rotation = "-0.563816 0.603509 -0.563816 117.778";scale = "1.66025 0.166666 71.0614";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "350.765 3.46894 124.363";rotation = "0.0339687 0.998845 0.0339705 90.0666";scale = "3.52 6.24792 0.48";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "6.703";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "320.651 17.2317 100.75";rotation = "5.26925e-06 -3.50146e-06 1 93.8946";scale = "4 5.5 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "329.548 -11.4695 111.297";rotation = "0.589997 0.551192 0.589993 122.274";scale = "0.125 0.166666 71.0614";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "309.85 -10.3481 140.75";rotation = "0.706904 -0.0240346 0.706901 182.754";scale = "0.125 0.166666 38.958";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "332.247 24.2102 114.882";rotation = "0.706904 -0.0240346 0.706901 182.754";scale = "1.65675 0.166666 82.5848";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "330.985 5.98854 117.939";rotation = "0.706904 -0.0240346 0.706901 182.754";scale = "0.125 12.0102 82.683";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.053 53.9468 140.75";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.125 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "352.844 22.5572 140.75";rotation = "-0.563815 0.603505 -0.563821 117.777";scale = "0.125 13.7737 125.999";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.508 52.6223 136.062";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "2.2185 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.464 52.8295 129.747";rotation = "0 0 1 183.895";scale = "1.52527 0.166666 3.75602";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.542 53.121 136.652";rotation = "0.0339566 0.998846 0.0339633 90.0667";scale = "0.125 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "327.148 53.1234 129.747";rotation = "-0.000141138 -5.06315e-07 1 3.89485";scale = "0.0777697 0.262745 0.113992";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "329.569 -11.471 108.454";rotation = "0.563817 -0.603507 -0.563817 117.777";scale = "1.29625 0.166667 71.0614";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.508 52.6223 129.261";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "0.243 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.508 52.6223 128.6";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "0.125 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "373.445 21.4055 111.319";rotation = "0.0339628 0.998846 0.0339628 90.0661";scale = "0.125 0.166666 82.5848";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "362.549 8.2905 124.364";rotation = "0.0339738 0.998845 0.0339755 90.0667";scale = "3.52 7.80826 0.48";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "6.702";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.005 6.23788 111.319";rotation = "-0.60351 -0.563813 -0.563818 117.778";scale = "8.8827 0.166667 67.987";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "320.464 53.5785 129.747";rotation = "0 0 1 183.895";scale = "2.71125 0.166666 3.75602";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.508 52.6223 125.902";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "1.224 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "327.604 56.5087 140.75";rotation = "0.603507 0.563816 -0.563818 117.772";scale = "1.5791 0.166666 9.55808";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "329.531 -11.7189 101";rotation = "0 0 1 3.89485";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.979 52.7945 121.518";rotation = "0 0 1 183.895";scale = "1.26768 0.166666 3.872";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331 55.9636 128.6";rotation = "-0.603505 -0.563817 -0.563819 117.777";scale = "1.42255 0.166666 7.45322";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "328.023 53.0638 121.518";rotation = "-0.000141138 -5.06315e-07 1 3.89485";scale = "0.0871131 0.262745 0.117512";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "362.139 2.28149 124.364";rotation = "0.0339738 0.998845 0.0339755 90.0667";scale = "3.52 5.543 0.48";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "6.701";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "373.445 21.4053 108.464";rotation = "-0.706901 0.024041 0.706904 182.753";scale = "1.3025 0.166667 82.5848";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "340.243 23.4154 105.609";rotation = "0.0240345 0.706904 -0.706901 177.246";scale = "4.01428 0.166666 71.0614";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "324.683 53.2915 121.518";rotation = "0 0 1 183.895";scale = "0.958708 0.166666 3.872";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "340.454 23.6516 105.359";rotation = "0.0339847 0.999422 1.26686e-06 180";scale = "4.113 0.166666 8.718";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "309.848 -10.3788 120.75";rotation = "-0.033967 -0.998846 0.0339638 90.0661";scale = "9.87502 0.166667 38.958";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "321.107 53.5346 121.518";rotation = "-0.000141138 -5.06315e-07 1 3.89485";scale = "0.101556 0.262745 0.117512";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.983 23.9778 103.431";rotation = "-0.563816 0.603509 -0.563816 117.778";scale = "1.2155 0.166666 71.0614";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "325.413 59.548 140.5";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "0.125 1.9259 7.19602";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.508 52.6223 119.097";rotation = "-0.551194 0.589991 0.589997 122.274";scale = "0.125 1.614 38.9982";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "330.956 53.1149 140.75";rotation = "0.998846 -0.0339636 0.0339594 90.0661";scale = "1.78888 0.166666 29.9996";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "272.36 30.7933 100.75";rotation = "-0.60351 -0.563814 -0.563817 117.778";scale = "1.12496 0.166666 241.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.299 -1.0833 106.362";rotation = "0 0 -1 86.1052";scale = "0.125 0.166666 9.338";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "373.445 21.4055 105.609";rotation = "0.0339628 0.998846 0.0339628 90.0661";scale = "0.125 0.166666 82.5848";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "317.249 53.797 121.518";rotation = "0 0 1 183.895";scale = "1.09979 0.166666 3.872";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "332.273 52.7745 114.941";rotation = "0 0 1 3.89465";scale = "1.11984 0.166666 3.47";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "355.835 -1.73272 110.781";rotation = "0.033962 0.998846 0.033962 90.0661";scale = "0.125 0.166666 18.617";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "356.544 10.1294 105.609";rotation = "-0.551194 0.58999 0.589998 122.274";scale = "6.07398 0.166666 18.2742";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "328.336 53.0424 114.941";rotation = "2.70398e-07 2.41413e-06 1 183.895";scale = "0.103907 0.262745 0.105312";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "326.352 53.9292 136.652";rotation = "0.0240306 0.706901 0.706905 182.754";scale = "4.11275 0.166666 29";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.428 58.65 136.652";rotation = "0.603509 0.563821 -0.563811 117.771";scale = "2.08588 0.166666 6.09608";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "327.318 61.1143 138.725";rotation = "0.700918 0.195074 -0.686046 152.767";scale = "1.23602 0.166666 8.37126";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "328.207 61.73 141";rotation = "0 0 -1 86.1052";scale = "1.31687 0.166666 8";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "328.223 61.974 140.5";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "1.17364 0.166666 7.19602";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "327.939 61.4717 144.676";rotation = "0.033962 0.998846 0.033962 90.0661";scale = "0.125 1.57176 9.55808";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "339.987 -12.4306 111.531";rotation = "0 0 1 183.895";scale = "5.11532 0.166666 12.316";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "324.262 53.32 114.941";rotation = "0 0 1 3.89465";scale = "1.18924 0.166666 3.47";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "309.601 -10.3311 101";rotation = "0 0 1 3.89485";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.282 -1.33272 110.781";rotation = "-0.563817 0.603508 -0.563816 117.778";scale = "0.125 0.166666 22.5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.939 62.0715 141";rotation = "0 0 -1 86.1052";scale = "1.2994 0.166666 8";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.054 53.9467 114.347";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.297 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.548 -1.10042 108.448";rotation = "-0.033967 -0.998846 0.0339638 90.0661";scale = "1.043 0.166667 18.617";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.845 53.9394 140.75";rotation = "0.998846 -0.0339636 0.0339594 90.0661";scale = "1.89137 0.166666 29.9996";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.956 62.313 140.5";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "1.1733 0.166666 7.19602";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "338.509 -0.59442 101.117";rotation = "0 0 1 183.895";scale = "3.96517 0.166666 8.484";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "320.358 53.5856 114.941";rotation = "2.70398e-07 2.41413e-06 1 183.895";scale = "0.0934644 0.262745 0.105312";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "371.295 -14.2809 140.75";rotation = "0.589997 0.551192 0.589993 122.274";scale = "0.125 0.166666 71";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.508 52.6223 113.503";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "0.125 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.939 53.6604 128.6";rotation = "0.0240316 0.706904 0.706901 182.754";scale = "3.9431 0.166666 29.9996";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "345.518 -12.5567 108.447";rotation = "0.563816 -0.603508 -0.563817 117.777";scale = "1.04225 0.166667 22.5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "323.348 64.3978 143";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "1 0.166666 9.55806";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.941 53.818 114.941";rotation = "0 0 1 3.89465";scale = "0.945685 0.166666 3.47";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.054 53.9467 111.932";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.6605 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "334.74 52.3558 120.75";rotation = "0.589995 0.551194 0.589992 122.274";scale = "10.125 0.166666 31.0004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "346.549 -1.1003 106.112";rotation = "-0.603507 -0.563815 -0.56382 117.777";scale = "0.125 0.166666 18.615";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "330.748 55.8994 113.503";rotation = "-0.603505 -0.563817 -0.563819 117.777";scale = "1.38226 0.166666 7.94434";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.735 52.811 108.129";rotation = "0 0 1 3.89465";scale = "1.38971 0.166666 4.964";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "333.599 66.7731 128.598";rotation = "0.999323 -0.0339787 -0.0140709 224.972";scale = "0.93046 0.166666 25.32";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.514 57.3506 119.718";rotation = "0.603511 0.563817 -0.563813 117.778";scale = "1.69062 0.166666 6.44488";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "356.084 -1.7497 106.362";rotation = "0 0 -1 86.1052";scale = "0.125 0.166666 9.338";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "320.047 -11.3238 111.281";rotation = "0.0240345 0.706904 -0.706901 177.246";scale = "5.11982 0.166666 6";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "335.969 -12.1572 105.862";rotation = "0 0 1 3.89485";scale = "3.10168 0.166666 10.338";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "345.518 -12.5567 106.112";rotation = "0.589994 0.551192 0.589994 122.274";scale = "0.125 0.166666 23.5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "327.338 53.1104 108.129";rotation = "2.70398e-07 2.41413e-06 1 183.895";scale = "0.0991735 0.262746 0.150653";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "373.694 21.3885 101";rotation = "0 0 1 3.89485";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "326.406 53.4244 119.718";rotation = "0.0240316 0.706904 0.706901 182.754";scale = "4.06915 0.166666 29.9996";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "319.81 -11.2768 140.75";rotation = "-0.563815 0.603505 -0.563821 117.777";scale = "0.125 6.66607 53.9998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.243 63.215 128.35";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "2.45168 0.166666 16.764";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "323.486 66.4193 140.75";rotation = "-0.603508 -0.563818 -0.563815 117.778";scale = "1.11651 0.166666 9.55808";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "330.161 -13.5158 111.28";rotation = "-0.653396 0.699393 -0.289694 210.288";scale = "0.749985 0.166666 16.05";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "323.043 53.403 108.129";rotation = "0 0 1 3.89465";scale = "1.3386 0.166666 4.964";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "352.863 23.0573 100.75";rotation = "-0.998846 0.0339606 0.0339642 90.0661";scale = "10.5729 0.166666 71.9998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "356.067 -1.99912 110.781";rotation = "-0.563817 0.603508 -0.563816 117.778";scale = "0.125 0.166666 22.4998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.053 53.9467 107.521";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.304 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.839 64.725 132.662";rotation = "-0.66451 0.302097 0.683494 151.253";scale = "2.94587 0.166666 6.09208";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "345.501 -12.8061 105.862";rotation = "0 0 1 3.89485";scale = "0.125 0.166666 10.338";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "318.96 53.6808 108.129";rotation = "2.70398e-07 2.41413e-06 1 183.895";scale = "0.0862272 0.262745 0.150653";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "371.026 -14.544 111.281";rotation = "0.0339628 0.998846 0.0339628 90.0661";scale = "0.125 0.166666 82.683";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "319.154 65.6125 136.402";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "1.66613 0.166666 15.104";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "273.159 42.528 100.599";rotation = "-0.603513 -0.563812 -0.563816 117.777";scale = "4.74445 0.166667 315.874";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "345.394 -12.5482 103.179";rotation = "0.563812 -0.603513 -0.563816 117.777";scale = "1.08975 0.166667 22.417";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.053 53.9468 106.663";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.125 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "355.303 -13.223 108.457";rotation = "0.563816 -0.603508 -0.563817 117.777";scale = "1.04725 0.166667 22.4998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "316.301 53.8615 108.129";rotation = "0 0 1 3.89465";scale = "0.624692 0.166666 4.964";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.785 67.4956 128.6";rotation = "-0.603505 -0.563817 -0.563819 117.777";scale = "0.297798 0.166666 7.45322";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "363.332 22.094 105.358";rotation = "0.0339847 0.999422 1.26686e-06 180";scale = "5.06795 0.166666 8.718";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.331 61.696 100.5";rotation = "0 0 -1 86.1052";scale = "4.00002 0.166666 81";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "309.584 -10.5805 140.75";rotation = "-0.563816 0.603509 -0.563816 117.778";scale = "0.125 0.166666 54.0002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "330.57 52.8905 101";rotation = "1.54679e-06 -7.23438e-06 1 93.8946";scale = "0.125 2.6314 10.826";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";nametoset = "Office Complex: Under Construction";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "350.409 -12.8895 105.613";rotation = "0.999165 -0.0339755 0.0226987 112.544";scale = "2.38851 0.166666 25.3048";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "355.303 -13.223 106.112";rotation = "0.589993 0.551193 0.589995 122.274";scale = "0.125 0.166666 23.4998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.817 53.6688 113.503";rotation = "0.0240316 0.706904 0.706901 182.754";scale = "3.8817 0.166666 30.0002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.955 54.239 100.75";rotation = "-0.603507 -0.56382 -0.563814 117.777";scale = "1.12505 0.166666 241.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "365.398 21.7028 105.609";rotation = "0.0240345 0.706904 -0.706901 177.246";scale = "4.02355 0.166666 71.0614";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "369.98 21.3909 111.318";rotation = "0.0282567 0.831139 -0.555346 177.836";scale = "1.725 0.166666 35.8";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "373.677 21.1391 114.871";rotation = "-0.563816 0.603509 -0.563816 117.778";scale = "1.66225 0.166666 71";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "367.378 -14.0449 111.319";rotation = "0.0240414 0.706905 0.7069 182.753";scale = "1.83699 0.166667 47.0616";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "319.245 53.6615 101";rotation = "1.58106e-05 -6.30429e-05 1 3.89424";scale = "2.10086 0.166667 10.826";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";nametoset = "Office Complex: Under Construction";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "355.286 -13.4724 105.862";rotation = "0 0 1 3.89485";scale = "0.125 0.166666 10.338";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "319.257 64.5595 119.468";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "2.18811 0.166666 11.43";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "356.126 -2.04449 103.179";rotation = "-0.998846 0.0339543 0.0339571 90.0661";scale = "0.125 1.453 22.417";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "347.294 59.7657 100.26";rotation = "-0.000286521 0.000284337 -1 86.1041";scale = "4 6.8328 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "371.295 -14.2809 111.297";rotation = "0.589997 0.551192 0.589993 122.274";scale = "0.125 0.166666 71";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "363.085 -13.9879 111.531";rotation = "0 0 1 183.895";scale = "3.98093 0.166666 12.316";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "333.466 66.5249 113.503";rotation = "0.999323 -0.0339787 -0.014071 224.972";scale = "0.993038 0.166666 19.64";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "330.992 63.146 113.253";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "2.49475 0.166666 12.68";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "336.06 68.0523 120.75";rotation = "0.0339611 0.998846 0.0339609 90.0667";scale = "10.125 0.166666 40.0004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "329.78 -11.7358 103.431";rotation = "0.706904 -0.0240346 0.706901 182.754";scale = "1.2155 0.166666 82.683";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "309.584 -10.5806 120.75";rotation = "-0.589996 -0.551186 0.589999 122.273";scale = "9.87502 0.166667 54.0002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "326.305 53.4313 106.663";rotation = "0.998846 -0.0339636 0.0339594 90.0661";scale = "4.11952 0.166666 30.0002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.555 27.4138 101";rotation = "0 0 1 3.89485";scale = "10.4383 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "317.253 62.4987 113.399";rotation = "0.354128 -0.379054 -0.854934 95.0761";scale = "0.125 1.07413 18.3723";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.396 58.5634 106.663";rotation = "0.603507 0.563816 -0.563818 117.771";scale = "2.29146 0.166666 6.04196";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "363.873 -2.32139 101.117";rotation = "0 0 1 3.89505";scale = "3.96918 0.166666 8.484";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "371.266 -14.2789 108.457";rotation = "0.563817 -0.603507 -0.563817 117.777";scale = "1.29499 0.166667 71";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "331.532 67.3829 113.503";rotation = "-0.603505 -0.563817 -0.563819 117.777";scale = "0.362778 0.166666 7.94234";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "371.278 -14.5303 101";rotation = "0 0 1 3.89485";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "348.349 -19.0625 103.211";rotation = "0.455173 -0.734043 0.503982 109.906";scale = "3.175 0.166666 6.1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "329.382 -11.9592 105.612";rotation = "-0.998846 0.0339613 0.0339655 90.0656";scale = "9.79813 0.166666 53.9384";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "388.75 10.5907 175.75";rotation = "-0.682667 0.73073 -6.29358e-08 180";scale = "5 6.83333 152";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "373.677 21.1391 103.433";rotation = "-0.563816 0.603509 -0.563816 117.778";scale = "1.217 0.166666 71";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "365.341 -14.1568 105.862";rotation = "0 0 1 3.89485";scale = "2.84932 0.166666 10.338";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "315.563 61.4298 100.75";rotation = "-0.603509 -0.563816 -0.563816 117.778";scale = "3.87503 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "336.819 68.0007 100";rotation = "1.80355e-06 1.88621e-06 -1 86.1052";scale = "0.125 0.507173 19.212";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "319.137 65.7835 106.413";rotation = "0.730727 0.68267 8.65346e-07 180";scale = "1.58154 0.166666 10.826";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "318.893 65.7939 103.743";rotation = "-0.664508 0.302098 0.683496 151.252";scale = "2.18976 0.166666 6.04398";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "294.31 54.858 101";rotation = "0 0 1 3.89485";scale = "10.383 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "373.748 -14.972 111.281";rotation = "0.0240345 0.706904 -0.706901 177.246";scale = "18.6137 0.166666 5.9997";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "409.871 -32.4586 111.281";rotation = "-0.551192 0.589991 0.589999 122.274";scale = "5.9923 0.166666 202.582";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "286.034 -24.7592 100";rotation = "0 0 1 187.517";scale = "6 7.99999 200";team = "1";ownerGUID = "3152732";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "350.434 -31.7132 105.612";rotation = "-0.551187 0.589999 0.589995 122.273";scale = "4.3454 0.166666 5.49664";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "307.733 -37.7676 101";rotation = "0 0 1 3.89485";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "371.207 59.8966 98";rotation = "-8.64265e-06 1.28502e-06 -1 86.1052";scale = "5 6.83313 32";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "409.04 -44.6648 140.75";rotation = "0.0339628 0.998846 0.0339628 90.0661";scale = "0.125 0.166666 202.584";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "308.418 -24.0324 100.75";rotation = "0.551193 -0.589993 0.589995 122.274";scale = "7 0.166666 204.582";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "358.086 71.0575 100.266";rotation = "0 0 -1 86.1041";scale = "2.0009 0.166666 17.004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "410.908 -17.2283 140.75";rotation = "0.0339628 0.998846 0.0339628 90.0661";scale = "0.125 0.166666 78.9442";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "307.982 -37.7843 120.75";rotation = "-0.033967 -0.998846 0.0339638 90.0661";scale = "9.87502 0.166667 202.584";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "276.3 24.7645 100";rotation = "0 0 1 91.9792";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "371.528 -14.547 120.75";rotation = "-0.033967 -0.998846 0.0339638 90.0661";scale = "9.87502 0.166667 78.9442";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "392.72 58.4319 100.25";rotation = "-8.64265e-06 1.28502e-06 -1 86.1052";scale = "5 6.83333 134";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "366.177 72.14 108.769";rotation = "0.999422 -0.0339951 -7.83039e-07 180";scale = "0.125 1.24821 17.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "362.581 74.511 100.268";rotation = "0 0 1 3.89605";scale = "1.99963 0.166666 17";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "268.506 33.07 106.572";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.125 0.166666 4";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";nametoset = "Main St.";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "271.958 28.5656 100.75";rotation = "0.0240317 0.706907 -0.706898 177.246";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "268.24 32.8376 106.589";rotation = "-0.563817 0.603508 -0.563816 117.778";scale = "0.125 0.166666 4";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "268.257 33.087 101";rotation = "0 0 -1 86.1052";scale = "0.16129 0.466677 7.61905";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "409.974 -30.9464 140.75";rotation = "0.0339603 0.998846 0.0339597 90.0655";scale = "0.125 9.00003 79.9446";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "269.963 28.7013 100.75";rotation = "0.024038 0.706896 0.706909 182.753";scale = "1.12485 0.166667 55.9998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "381.282 -15.4851 105.612";rotation = "-0.998846 0.0339613 0.0339655 90.0656";scale = "14.8372 0.166666 53.9382";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "266.863 -46.259 104.999";rotation = "0.0240343 0.706902 0.706903 182.753";scale = "0.125 2.66667 149.996";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "270.6 8.6118 100.75";rotation = "0.0240301 0.706908 -0.706898 177.246";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "423.264 -57.1577 104.998";rotation = "0.706904 -0.0240364 -0.706901 177.246";scale = "2 0.166666 314.06";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "271.79 59.2602 101";rotation = "0 0 1 92.704";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.859 56.5009 100.75";rotation = "0.0240366 0.706907 0.706897 182.753";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "272.136 64.7661 101.4";rotation = "0.723429 0.690399 8.75143e-07 180";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "266.941 -48.773 100.748";rotation = "-0.551196 0.589997 -0.589988 237.726";scale = "0.99999 0.166666 314.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "323.465 -50.3665 100.748";rotation = "0.603501 0.563821 -0.563819 117.777";scale = "0.125 0.166666 112.997";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "252.527 30.2216 104.999";rotation = "-0.563819 0.603504 -0.563818 117.778";scale = "2 0.166666 41.6646";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "272.514 70.9325 101.4";rotation = "0.763446 0.645872 8.18701e-07 180";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "413.751 19.1626 101";rotation = "0 0 1 3.89485";scale = "7.33195 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "411.157 -17.2453 101";rotation = "0 0 1 3.89485";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "392.583 22.6083 100.75";rotation = "-0.60351 -0.563813 -0.563818 117.778";scale = "1.12496 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.113 9.43736 103.729";rotation = "-0.998846 0.0339543 0.0339571 90.0661";scale = "0.125 0.166667 11.3443";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.113 9.4373 106.239";rotation = "-0.563814 0.60351 -0.563817 117.778";scale = "1.13 0.166666 30.8122";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "250.92 6.60784 103.479";rotation = "-0.682667 0.73073 -1.9406e-06 180";scale = "0.172793 0.262745 0.0724733";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.727 3.7784 101.642";rotation = "0.589995 0.551194 0.589992 122.274";scale = "0.3215 0.166666 11.3442";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.71 3.52893 100.999";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 5.96";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.146 9.9362 100.749";rotation = "0.0240368 0.706897 0.706908 182.753";scale = "0.125 0.166666 136";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.488 0.27436 100.999";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 5.96";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "266.403 -56.7542 100.599";rotation = "0.706909 -0.0240365 0.706896 182.754";scale = "0.125 3.99997 313.992";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.473 0.0249 103.484";rotation = "-0.563819 0.603507 -0.563815 117.778";scale = "0.24725 0.166666 11.9439";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDecoration16";position = "250.27 -2.95425 102.99";rotation = "0.73073 0.682667 -3.78467e-06 180";scale = "0.181924 0.262745 0.0446133";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "411.14 -17.4947 140.75";rotation = "-0.563816 0.603509 -0.563816 117.778";scale = "0.125 0.166666 54.0002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.473 0.02493 101.626";rotation = "-0.563819 0.603507 -0.563815 117.778";scale = "0.314 0.166666 11.9439";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "423.235 -57.1581 100.747";rotation = "0.603501 0.563819 -0.563821 117.777";scale = "0.125 0.166666 200.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "394.178 46.0539 100.75";rotation = "-0.603507 -0.56382 -0.563814 117.777";scale = "1.12505 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "411.14 -17.4948 120.75";rotation = "-0.589996 -0.551186 0.589999 122.273";scale = "9.87502 0.166667 54.0002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "420.936 56.2557 175.75";rotation = "0.730729 0.682668 5.33436e-06 179.999";scale = "4.85 6.63333 152";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.146 9.9362 100.749";rotation = "0.0240325 0.706908 -0.706897 177.246";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "245.58 -2.36425 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "301.82 103.286 100";rotation = "0 0 1 4.93234";scale = "6.25 8.33333 330";team = "1";ownerGUID = "3152732";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.421 11.0282 104.999";rotation = "0.706904 -0.0240376 0.706901 182.753";scale = "2 0.166666 39.008";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "241.383 10.0952 108.749";rotation = "-0.563814 0.60351 -0.563817 117.778";scale = "0.125 6.66753 30.8122";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "260.238 -110.459 100.747";rotation = "0.0240347 0.706897 0.706908 182.753";scale = "0.999805 0.166666 279";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "243.256 0.24286 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "265.855 -64.7355 100.749";rotation = "-0.603512 -0.563817 -0.563812 117.778";scale = "1.00002 0.166666 314.006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "243.167 -0.51227 102.249";rotation = "-0.0240329 -0.706901 0.706904 182.754";scale = "0.87452 0.166666 6.00004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "243.055 -1.92451 100.999";rotation = "0 0 1 183.895";scale = "0.125 0.166666 3";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "421.844 -77.616 104.996";rotation = "0.0339589 0.998846 0.033965 90.0655";scale = "1.9995 0.166666 314.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "242.839 -4.50376 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.337 1.7604 100.749";rotation = "-0.551195 0.589988 0.589998 122.274";scale = "4.10588 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.344 -4.85853 104.999";rotation = "0.706904 -0.0240376 0.706901 182.753";scale = "2 0.166666 38.996";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "240.52 -1.74349 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "238.47 10.2977 101.488";rotation = "-0.998846 0.0339615 0.0339664 90.0661";scale = "0.125 0.666666 6.8";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "237.321 10.0464 102.488";rotation = "0 0 1 183.895";scale = "0.819672 0.819669 0.332226";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "409.289 -44.6818 101";rotation = "0 0 1 3.89485";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "237.212 9.45748 102.488";rotation = "0 0 1 183.895";scale = "0.81967 0.81967 0.332227";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "236.434 10.1248 102.488";rotation = "0 0 1 183.895";scale = "0.819672 0.819669 0.332226";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.594 -50.0894 107.064";rotation = "0.589996 0.551193 0.589993 122.274";scale = "0.125 0.166666 4";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "236.351 9.58002 102.488";rotation = "0 0 1 183.895";scale = "0.81967 0.81967 0.332227";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.826 -50.3558 107.04";rotation = "0.706904 -0.024037 0.706901 182.753";scale = "0.125 0.166666 4";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "238.411 -1.82632 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "236.804 5.90704 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "235.537 10.2466 102.488";rotation = "0 0 1 183.895";scale = "0.819672 0.819669 0.332226";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "417.6 66.5105 107.652";rotation = "0.730728 0.682669 5.51124e-06 180";scale = "0.125 9.34927 14.804";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate10";position = "235.445 9.65252 102.488";rotation = "0 0 1 183.895";scale = "0.81967 0.81967 0.332227";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "322.075 -70.8184 100.748";rotation = "-0.551193 0.589987 0.590002 122.273";scale = "0.125 0.166666 113.003";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "267.883 -31.2959 100.749";rotation = "0.0240284 0.706908 -0.706898 177.246";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "238 7.07219 101.388";rotation = "-0.551189 0.589993 0.589998 122.274";scale = "0.125 0.666666 9";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "235.76 5.92643 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "234.605 10.3101 102.488";rotation = "0 0 1 183.895";scale = "0.125 0.166666 2";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "262.577 -50.3388 100.998";rotation = "0 0 -1 86.1052";scale = "0.16129 0.466677 7.61905";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "238.178 9.71709 102.238";rotation = "-0.55119 0.589992 0.589998 122.274";scale = "0.299448 0.166666 13.6616";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "236.276 0.833886 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "236.167 -0.09936 102.249";rotation = "-0.998846 0.0339595 0.0339637 90.0667";scale = "0.875022 0.166666 6.00006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.883 10.4863 103.738";rotation = "0.706904 -0.0240417 0.706901 182.754";scale = "0.125 0.166666 5.99994";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "236.029 -1.47845 100.999";rotation = "0 0 1 183.895";scale = "0.125 0.166666 3";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "234.556 5.99108 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "235.956 -4.15529 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "231.635 10.5033 102.488";rotation = "0 0 1 183.895";scale = "0.125 0.166666 3";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedDoor";position = "233.511 7.37788 101.694";rotation = "0.0339647 0.998846 0.0339671 90.0661";scale = "0.347251 0.166666 4.6608";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";cankill = "0";canmove = 1;Collision = 1;hasslided = "0";isdoor = "1";issliding = "0";lv = "0";moving = "open";prevscale = "0.347251 0.166666 4.6608";state = "closed";timeout = ".5";toggletype = "0";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "433.451 41.3754 107.243";rotation = "0.0339628 0.998846 0.0339628 90.0661";scale = "0.125 0.166666 4";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "426.078 -19.5141 100.998";rotation = "0 0 -1 86.1052";scale = "19 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate9";position = "233.275 -1.17872 100.999";rotation = "0 0 1 183.895";scale = "1.21951 1.21951 0.952381";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "432.655 41.179 100.749";rotation = "-0.998846 0.0339618 0.0339643 90.0655";scale = "0.64073 0.166666 37.9568";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "230.077 -5.09096 104.999";rotation = "0.589997 0.551192 0.589993 122.274";scale = "2 0.166666 32.8468";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "421.845 -77.6106 100.746";rotation = "-0.551192 0.589988 0.590001 122.273";scale = "0.125 0.166666 200.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "433.7 41.3584 101";rotation = "0 0 1 3.89485";scale = "0.16129 0.466677 7.61905";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "425.215 -57.5434 100.747";rotation = "0.024043 0.7069 0.706905 182.753";scale = "0.999805 0.166666 151";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "432.782 48.4685 101.399";rotation = "0.708282 -0.70593 -8.9483e-07 180";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "432.876 51.8841 101.399";rotation = "0.735965 -0.677019 -8.58183e-07 180";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "245.269 -109.44 100.746";rotation = "0.998846 -0.0339638 0.0339578 90.0655";scale = "0.99956 0.166666 831.006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "432.953 56.094 100.999";rotation = "0 0 -1 85.0819";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "426.575 68.0118 100";rotation = "0 0 -1 85.5053";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "282.334 324.547 100.59";rotation = "0.589998 0.551186 -0.589998 237.728";scale = "0.125 3.66613 871.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "352.95 127.156 100";rotation = "0 0 1 1.44994";scale = "6.25 8.33333 330";team = "1";ownerGUID = "3152732";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "248.429 -29.9714 100.748";rotation = "0.0240308 0.706908 -0.706898 177.246";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "449.346 120.228 100.601";rotation = "-0.998846 0.0339547 0.0339693 90.0667";scale = "4.99955 0.166666 437";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "262.973 -70.2862 100.998";rotation = "0 0 1 96.2139";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.356 -113.827 104.997";rotation = "0.589991 0.5512 0.589991 122.273";scale = "2 0.166666 87.9864";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "242.99 -109.786 104.996";rotation = "0.0240343 0.706902 0.706903 182.753";scale = "0.125 2.66667 208.186";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "418.262 -54.2497 100";rotation = "0 0 -1 86.1591";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.391 -113.329 100.747";rotation = "0.998846 -0.0339606 0.0339492 90.0655";scale = "0.125 0.166666 86.9988";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "262.133 -74.9369 101.398";rotation = "0.64794 0.761692 9.65513e-07 180";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "397.034 121.084 100.252";rotation = "-0 -0 1 3.88337";scale = "1.25 1.66666 20";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "275.217 76.4547 100.75";rotation = "0.024038 0.706907 0.706898 182.753";scale = "0.125 0.166666 200";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "283.914 -90.2713 100.997";rotation = "0.730721 0.682676 -1.35316e-07 179.999";scale = "10.8749 13.1667 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "261.747 -78.3265 101.397";rotation = "0.757811 0.652474 8.2707e-07 180";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "437.374 121.043 100.751";rotation = "0.024031 0.706911 -0.706894 177.246";scale = "1.00005 0.166666 151";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "426.46 -61.3864 106.966";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "0.125 0.166666 4";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "426.726 -61.154 106.971";rotation = "0.589995 0.551194 0.589992 122.274";scale = "0.125 0.166666 4";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.973 35.9621 105.002";rotation = "0.706904 -0.024034 0.706901 182.753";scale = "2.0005 0.166666 176.977";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "426.709 -61.4034 100.997";rotation = "0 0 1 93.8946";scale = "0.16129 0.466677 7.61905";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "461.316 119.413 100.749";rotation = "-0.998846 0.0339582 0.0339673 90.0667";scale = "0.99981 0.166666 358";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "5.05";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.991 -103.169 104.998";rotation = "0.0240308 0.706903 0.706903 182.753";scale = "0.125 2.66667 72.0674";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "433.71 92.9915 101.001";rotation = "0 0 1 93.8946";scale = "14.1173 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "456.965 29.7518 100.997";rotation = "0 0 1 93.8946";scale = "44.6253 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.888 63.813 105.003";rotation = "0.706904 -0.0240345 0.706901 182.753";scale = "2.0005 0.166667 176.935";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";nametoset = "EXIT ONLY";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "255.764 77.7792 100.75";rotation = "0.0240378 0.706896 0.706908 182.753";scale = "0.125 0.166666 200";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "265.166 -71.2036 100.748";rotation = "0.0240267 0.706908 -0.706898 177.246";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "252.26 29.9521 100.75";rotation = "0.603495 0.563822 -0.563825 117.776";scale = "0.125 0.166666 200.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "422.094 -77.6278 100.997";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "417.4 122.152 100.752";rotation = "0 0 1 183.895";scale = "8.99877 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "241.13 -79.0779 100";rotation = "0 0 -1 86.1476";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "399.712 123.607 100.502";rotation = "0.024043 0.7069 0.706905 182.753";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "425.466 -57.5599 100.747";rotation = "0.0240301 0.706904 -0.706901 177.246";scale = "0.875528 0.166666 79.0006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.155 57.8047 100.751";rotation = "0.603495 0.563822 -0.563825 117.776";scale = "0.125 0.166666 200.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "439.353 120.658 100.501";rotation = "-0.55119 0.589988 0.590002 122.273";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "456.477 76.6531 100.489";rotation = "-0.551192 0.589991 0.589999 122.274";scale = "3.67712 0.519998 20.0172";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "90.213";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTripwire";position = "456.365 77.6087 100.849";rotation = "-0.551192 0.589989 0.59 122.274";scale = "1 1 1";team = "1";ownerGUID = "3152732";powerFreq = "90.213";switchRadius = "150";beamRange = "30";tripMode = "0";fieldMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();%tripField = new ForceFieldBare() {datablock = "TripField";scale = "0.01 0.01 0.01";};%building.tripField = %tripField;%tripField.pzone.delete();%building.pzone = "";%tripTrigger = new Trigger() {datablock = "TripTrigger";scale = "0.05 0.05 19.7967";polyhedron = "0.0000000 1.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.0000000 1.0000000";};%building.tripTrigger = %tripTrigger;%tripTrigger.baseObj = %building;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.powerFreq));%building.deploy();adjustTripwire(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "456.465 77.6019 100.849";rotation = "-0.551192 0.589991 0.589999 122.274";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "423.746 -82.8329 100.997";rotation = "0 0 -1 85.1484";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "457.964 77.5014 102.748";rotation = "0.0339607 0.998846 0.0339603 90.0673";scale = "0.125 0.166666 3";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "474.094 4.0152 101.495";rotation = "0 0 1 163.645";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "459.461 77.3995 102.748";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "0.125 0.166666 3";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "421.415 -87.605 100.997";rotation = "0 0 1 93.8946";scale = "4.8749 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "459.461 77.3995 101.762";rotation = "-0.551194 0.589995 0.589992 122.274";scale = "0.2 0.2 0.1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "90.213";isSwitchedOff = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "431.57 120.444 107.601";rotation = "0 0 1 183.632";scale = "1 1.33333 3";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "12.8435";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField0";position = "456.826 82.2017 100.489";rotation = "-0.551192 0.589991 0.589999 122.274";scale = "3.67712 0.519998 20.0172";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "90.213";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "422.111 -77.3784 100.747";rotation = "0.0240298 0.706904 -0.706901 177.246";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "459.71 77.3825 101.498";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 3";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "302.125 -113.561 104.997";rotation = "0.0339541 0.998846 0.0339539 90.0652";scale = "2 0.166666 79.0044";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "459.959 77.3655 101.248";rotation = "-0.551194 0.589995 0.589992 122.274";scale = "0.125 0.166666 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "245.712 -69.8791 100.747";rotation = "0.0240291 0.706908 -0.706898 177.246";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "401.07 143.561 100.752";rotation = "0 0 -1 86.1052";scale = "9.99982 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.716 -110.879 100.747";rotation = "-0.551198 0.589999 -0.589985 237.727";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "423.384 -88.3275 101.397";rotation = "-0.619147 0.785275 9.95407e-07 180";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "474.564 -18.5846 101.495";rotation = "0 0 1 162.497";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "438.852 120.692 106.845";rotation = "0.0339607 0.998846 0.0339605 90.0667";scale = "1.078 0.166666 6.00192";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "SpawnPointDeployedBase";position = "422.844 -92.6993 101.397";rotation = "0.712031 -0.702148 -8.90037e-07 180";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "3.14159";};addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered(); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.64 -108.285 100.997";rotation = "0 0 1 93.894";scale = "1.41629 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "439.103 120.675 101.001";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "224.646 119.413 100";rotation = "0 0 1 3.92687";scale = "6.25 8.33332 330";team = "1";ownerGUID = "3152732";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate1";position = "446.304 -75.2868 100.997";rotation = "0 0 1 93.8946";scale = "0.16129 0.466677 7.61905";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "310.839 165.075 100";rotation = "0 0 -1 95.3396";scale = "6.25 8.33333 340";team = "1";ownerGUID = "3152732";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "446.287 -75.5362 107.181";rotation = "-0.563819 0.603507 -0.563815 117.778";scale = "0.125 0.166666 4";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "446.553 -75.3038 107.244";rotation = "0.706904 -0.024035 0.706901 182.753";scale = "0.125 0.166666 4";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "474.193 -33.8855 101.496";rotation = "0 0 1 57.9621";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "401.07 143.561 100.502";rotation = "0.0240441 0.706899 0.706905 182.753";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "243.256 -109.554 104.997";rotation = "-0.551195 0.589996 -0.589991 237.727";scale = "0.125 2.66667 38.0018";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "451.169 -59.06 100.747";rotation = "-0.551193 0.589999 -0.589989 237.726";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "448.907 -59.1567 100.747";rotation = "-0.998846 0.0339582 0.0339673 90.0667";scale = "0.875522 0.166666 78.9996";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.218 -110.844 100.747";rotation = "-0.551198 0.589982 0.590002 122.273";scale = "0.125 0.166666 38.0016";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "449.527 -79.4952 100.997";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.86 56.501 104.998";rotation = "0.589993 0.551194 0.589995 122.273";scale = "2.00025 0.166666 440";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "440.479 140.878 100.501";rotation = "0.0240282 0.706908 -0.706897 177.246";scale = "0.125 0.166666 40.0004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "491.037 12.7477 101.496";rotation = "0 0 1 131.516";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "466.12 -60.0775 100.997";rotation = "0 0 1 3.89525";scale = "7.49105 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "434.485 -98.0165 108.997";rotation = "-0.682668 0.730728 -2.64249e-06 180";scale = "0.125 8.9988 17";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "485.27 -22.6322 101.496";rotation = "0 0 1 42.7351";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "448.85 -89.472 100.997";rotation = "0 0 1 93.8946";scale = "4.87505 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "449.544 -79.2458 100.747";rotation = "-0.998846 0.0339582 0.0339673 90.0667";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "400.253 165.917 100.252";rotation = "0 0 1 3.88337";scale = "1.25 1.33333 20";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree12";position = "482.622 -39.2552 101.496";rotation = "0 0 1 50.2112";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "459.553 119.282 100.999";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "440.462 140.629 100.751";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "494.349 -2.8504 101.496";rotation = "0 0 1 146.413";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "449.346 120.228 100.501";rotation = "0.998846 -0.0339697 0.0339549 90.0655";scale = "4.99902 0.166666 40.0004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "449.775 -79.5278 100.747";rotation = "-0.551193 0.589999 -0.589989 237.726";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "254.39 57.551 105.002";rotation = "0.589994 0.551197 0.589991 122.273";scale = "1.9995 0.166666 440.548";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "464.257 114.779 100";rotation = "0 0 1 187.586";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "5.84353";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.217 6.7735 114.382";rotation = "0.65664 0.61345 0.438752 135.421";scale = "0.625085 0.166666 63.0008";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "459.305 119.299 100.501";rotation = "-0.551192 0.590002 -0.589987 237.726";scale = "0.125 0.166666 32";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "469.04 118.636 108.751";rotation = "-0.682667 0.73073 9.07162e-07 180";scale = "0.125 3.82687 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "492.377 -32.5829 101.496";rotation = "0 0 1 28.1673";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "460.929 139.485 100.501";rotation = "-0.998846 0.0339539 0.0339683 90.0673";scale = "0.125 0.166666 39.9984";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.835 -13.5033 113.246";rotation = "0 0 1 93.8946";scale = "9.875 0.166666 5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.013 92.1299 115.12";rotation = "-0.621116 0.664825 -0.414998 132.096";scale = "0.125 0.166666 60.93";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "508.872 19.2752 101.496";rotation = "0 0 1 115.272";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "158.454 36.0871 100.752";rotation = "-0.0188726 -0.555481 0.831315 183.239";scale = "2.99693 0.166666 63.9996";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.327 78.3839 108.067";rotation = "-0.618815 0.444611 0.647602 136.242";scale = "7.70627 0.666766 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "460.912 139.236 100.751";rotation = "0 0 1 93.8946";scale = "0.125 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "507.582 37.0804 101.246";rotation = "-0.998846 0.0339748 0.0339572 90.0661";scale = "24.8759 0.166667 199.001";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField2";position = "451.176 -58.8198 100.487";rotation = "0.589996 0.551184 0.590001 122.273";scale = "0.52 99.5201 99.52";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "507.6 37.3296 108.995";rotation = "0.999422 -0.033983 2.5767e-07 180";scale = "24.8755 0.166667 15.992";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "557.233 33.9499 100.747";rotation = "0.603505 0.563817 -0.563819 117.776";scale = "0.125 0.166666 199.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "440.325 160.684 100.752";rotation = "0 0 -1 86.1052";scale = "0.125 25.1651 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.087 93.2194 113.137";rotation = "-0.190992 0.20441 -0.960072 88.4371";scale = "0.125 0.166666 5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "402.661 163.248 100.502";rotation = "-0.603515 -0.563816 -0.56381 117.778";scale = "0.125 0.166666 149.996";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "156.448 6.5912 112.997";rotation = "0.0240235 0.706912 -0.706894 177.245";scale = "2.99668 0.166666 79.9998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "271.615 56.652 100.75";rotation = "0.0240355 0.706907 0.706898 182.753";scale = "1.00031 0.166666 536.004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "504.506 -28.8924 101.496";rotation = "0 0 -1 36.5532";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "495.76 -55.0912 101.496";rotation = "0 0 1 157.872";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.757 7.5535 114.383";rotation = "0.65664 0.61345 0.438752 135.421";scale = "0.625155 0.166666 63.0084";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "160.376 64.439 100.755";rotation = "0.0188946 0.555463 0.831326 183.237";scale = "2.99415 0.166666 64.0006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "475.036 118.479 100.501";rotation = "0.998846 -0.0339683 0.0339565 90.065";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "153.75 -33.067 113.246";rotation = "0 0 1 93.8946";scale = "0.125 3.99523 5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "156.563 92.9093 115.12";rotation = "-0.621116 0.664825 -0.414998 132.096";scale = "0.125 0.166666 60.9298";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "155.874 79.1202 108.049";rotation = "-0.618815 0.444611 0.647602 136.242";scale = "7.72967 0.666753 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.465 113.499 113.252";rotation = "0 0 -1 86.1064";scale = "9.9997 0.166666 5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "521.018 5.4897 101.496";rotation = "0 0 1 207.113";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "476.36 137.934 100.751";rotation = "0 0 1 3.89485";scale = "0.125 13.3338 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "156.637 93.9988 113.137";rotation = "-0.190992 0.20441 -0.960072 88.4371";scale = "0.125 0.166666 5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "550.784 -68.0975 100.745";rotation = "-0.55119 0.589987 0.590004 122.274";scale = "0.99999 0.166666 201.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "134.344 -82.549 112.753";rotation = "0.0240375 0.7069 0.706905 182.753";scale = "4.9983 0.166666 536.836";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "162.382 93.9353 113.002";rotation = "0.0240409 0.706896 0.706909 182.752";scale = "2.99443 0.166666 79.9996";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "550.244 -76.0842 100.594";rotation = "0.0339638 0.998846 0.0339718 90.0653";scale = "0.125 4.00507 201";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "232.781 183.93 100";rotation = "0 0 1 180.472";scale = "6.25 8.33332 330";team = "1";ownerGUID = "3152732";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "476.394 138.433 100.501";rotation = "0.998846 -0.0339683 0.0339564 90.065";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "549.699 -84.0729 100.745";rotation = "0.603505 0.563815 -0.563821 117.777";scale = "0.999965 0.166666 201";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "499.66 -82.9245 100.996";rotation = "0 0 1 3.89525";scale = "25 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "530.346 21.9817 101.496";rotation = "0 0 -1 113.534";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree12";position = "523.819 -27.8322 101.496";rotation = "0 0 -1 60.333";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "471.123 -60.4186 100.747";rotation = "-0.551192 0.590001 -0.589989 237.726";scale = "0.125 0.166666 160";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "520.565 -49.3502 101.496";rotation = "0 0 1 239.182";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "314.656 212.62 100";rotation = "0 0 1 3.38886";scale = "7.5 10 400";team = "1";ownerGUID = "3152732";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "510.507 -69.6909 96";rotation = "0 0 1 90.756";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.555 133.221 114.503";rotation = "0.033952 0.998847 0.0339519 90.0661";scale = "0.62475 0.166666 22.953";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree2";position = "534.125 4.2333 101.497";rotation = "0 0 1 167.957";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "130.53 38.2385 101.004";rotation = "0 0 1 183.895";scale = "11.255 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "480.057 160.047 99.452";rotation = "0 0 1 3.88337";scale = "1.25 1.33333 20";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "132.385 66.094 101.005";rotation = "0 0 1 183.895";scale = "11.2766 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "469.729 -80.8864 100.747";rotation = "-0.551192 0.590001 -0.589989 237.726";scale = "0.125 0.166666 160";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "538.498 -19.292 101.497";rotation = "0 0 1 193.731";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree3";position = "539.219 -4.8763 101.497";rotation = "0 0 -1 67.1501";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree0";position = "533.146 -40.7564 101.497";rotation = "0 0 -1 54.5434";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.466 142.987 113.004";rotation = "0 0 -1 86.1058";scale = "0.125 0.166666 32";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedTree1";position = "543.953 6.6038 101.497";rotation = "0 0 1 206.909";scale = "1 1 1";team = "1";ownerGUID = "3152732";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "152.491 36.7436 100.753";rotation = "0.603497 0.56382 -0.563825 117.776";scale = "0.125 0.166666 120.001";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "282.009 176.224 100.749";rotation = "0.0240393 0.706907 0.706898 182.753";scale = "0.125 0.166666 200";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "154.386 64.5964 100.754";rotation = "0.603497 0.56382 -0.563825 117.776";scale = "0.125 0.166666 120.001";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "110.394 -80.919 112.751";rotation = "0.0240373 0.706896 0.706909 182.753";scale = "5.0003 0.166666 536.836";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-14.975 50.4006 100.757";rotation = "-0.603511 -0.563814 -0.563816 117.778";scale = "0.999965 0.166666 535.994";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "-14.167 62.08 100.608";rotation = "-0.0339679 -0.998846 0.0339488 90.0672";scale = "0.125 6.47237 536.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-13.377 73.7617 100.759";rotation = "-0.551194 0.590008 -0.589979 237.727";scale = "1.00003 0.166666 536.004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.016 -46.3955 128.502";rotation = "0.999423 -0.0339749 -4.30663e-08 180";scale = "0.125 0.166666 57.004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.217 143.004 126.673";rotation = "0.033957 0.998846 0.0339569 90.0661";scale = "0.916 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.217 143.004 128.754";rotation = "0.033957 0.998846 0.0339569 90.0661";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "262.556 177.548 100.752";rotation = "0.0240388 0.706897 0.706908 182.753";scale = "0.125 0.166666 200";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "536.305 -64.857 100.996";rotation = "0 0 1 3.89525";scale = "7.0826 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "106.377 10.5749 114.386";rotation = "0.656645 0.613446 0.438749 135.421";scale = "0.625053 0.166666 62.9952";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "554.105 -15.7021 100.997";rotation = "0 0 -1 86.1047";scale = "25 0.166666 15.996";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "550.706 -65.5867 100.746";rotation = "0.998846 -0.0339741 0.033958 90.0657";scale = "0.125 0.166666 200";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.312 -45.0543 128.752";rotation = "0.706904 -0.0240333 0.706901 182.753";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.312 -45.0543 126.978";rotation = "0.706904 -0.0240333 0.706901 182.753";scale = "0.761503 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.513 144.345 128.504";rotation = "0.0339747 0.999423 1.26686e-06 180";scale = "0.125 0.166666 57.008";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.037 95.9405 115.122";rotation = "-0.621115 0.664825 -0.414998 132.096";scale = "0.125 0.166666 60.9294";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "111.347 82.1291 108.042";rotation = "-0.618815 0.444612 0.647602 136.242";scale = "7.7417 0.666766 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "112.111 97.03 113.139";rotation = "-0.190994 0.204409 -0.960072 88.4372";scale = "0.125 0.166666 5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "100.604 40.0254 100.755";rotation = "-0.0188702 -0.555477 0.831318 183.239";scale = "4.00425 0.166666 64.0002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "98.598 10.5292 112.999";rotation = "0.0240195 0.706908 -0.706898 177.245";scale = "4.00375 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.063 -45.0373 113.002";rotation = "0 0 -1 86.1058";scale = "0.125 0.166666 32";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "102.456 68.382 100.757";rotation = "0.0188968 0.555463 0.831326 183.237";scale = "3.96815 0.166666 64.0006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "550.01 -75.8205 100.995";rotation = "0 0 1 3.89525";scale = "0.125 6.83843 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "88.412 -28.6193 114.498";rotation = "0.706904 -0.0240316 0.706901 182.753";scale = "0.625 0.166666 31.0256";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.879 11.3947 113.131";rotation = "0.191938 0.179287 0.964892 95.9344";scale = "0.125 0.166666 5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.5 -8.8978 113.249";rotation = "0 0 1 93.894";scale = "9.99995 0.166666 5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "104.467 97.8772 113.004";rotation = "0.0240436 0.706895 0.706909 182.752";scale = "3.96793 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "96.774 98.0741 113.139";rotation = "-0.190994 0.204409 -0.960072 88.4372";scale = "0.125 0.166666 5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "107.415 137.518 113.255";rotation = "0 0 -1 86.1058";scale = "0.125 5.1245 5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "98.155 118.353 113.255";rotation = "0 0 -1 86.1058";scale = "9.9998 0.166666 5";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "308.986 274.368 104.998";rotation = "0.0339628 0.998846 0.0339628 90.0661";scale = "2 0.166666 39.9964";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "289.168 277.722 100.748";rotation = "-0.603505 -0.563827 -0.56381 117.772";scale = "1.1253 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "139.841 200.77 128.506";rotation = "0.999423 -0.0339749 -4.30663e-08 180";scale = "0.125 0.166666 57.012";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "269.357 277.567 101";rotation = "0 0 1 3.89424";scale = "0.125 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "173.723 254.843 112.728";rotation = "0.0240341 0.706908 -0.706897 177.246";scale = "3.27655 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "120.137 202.111 128.756";rotation = "0.706904 -0.0240333 0.706901 182.753";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "120.138 202.111 127.048";rotation = "0.706904 -0.0240333 0.706901 182.753";scale = "0.729 0.166666 39";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "249.775 280.654 100.75";rotation = "-0.551195 0.590001 -0.589985 237.727";scale = "1.00006 0.166666 39.9924";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "309.937 288.337 100.598";rotation = "-0.706892 0.0240474 0.706912 182.752";scale = "0.125 6.50003 39.9986";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "134.343 -82.5477 112.753";rotation = "0.0240281 0.706904 -0.706901 177.246";scale = "4.9983 0.166666 320";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "119.888 202.128 113.006";rotation = "0 0 -1 86.1058";scale = "0.125 0.166666 32";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "93.128 40.785 105.007";rotation = "0.033952 0.998846 0.0339651 90.0661";scale = "2 0.166666 160";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "249.656 278.908 100.75";rotation = "-0.551199 0.589984 0.589998 122.274";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.629 40.8188 100.755";rotation = "0.603498 0.563819 -0.563825 117.776";scale = "0.125 0.166666 160";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "181.747 283.53 105.001";rotation = "0.706904 -0.0240342 0.706901 182.753";scale = "2 0.166666 175.118";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "94.524 68.6716 100.756";rotation = "0.603498 0.563819 -0.563825 117.776";scale = "0.125 0.166666 160";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "310.751 300.31 100.748";rotation = "-0.551182 0.589998 0.590001 122.272";scale = "1.12454 0.166666 39.9944";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "288.8 275.993 100.748";rotation = "0.0240432 0.706907 0.706898 182.753";scale = "0.125 0.166666 96.0016";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "310.886 302.304 104.998";rotation = "0.0339675 0.998846 0.0339673 90.067";scale = "2 0.166666 39.9984";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "110.393 -80.9186 112.751";rotation = "0.024028 0.706908 -0.706898 177.246";scale = "5.0003 0.166666 320";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.388 304.351 100.75";rotation = "-0.551191 0.590002 -0.589989 237.727";scale = "1.12533 0.166666 40.0006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "175.412 283.713 100.75";rotation = "-0.0188838 -0.555477 0.831318 183.238";scale = "3.415 0.166666 62.6";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-13.227 76.007 105.008";rotation = "0.706904 -0.0240376 0.706901 182.753";scale = "2 0.166666 217";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "292.061 323.883 104.997";rotation = "-0.563817 0.603508 -0.563816 117.778";scale = "1.99975 0.166666 40.9886";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "272.425 315.194 101";rotation = "0 0 -1 86.1052";scale = "5.00182 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "273.741 305.086 100.75";rotation = "0.998846 -0.0339638 0.0339576 90.0655";scale = "0.874525 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "271.745 305.221 100.75";rotation = "0.998846 -0.0339638 0.0339576 90.0655";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.524 306.347 100.75";rotation = "-0.551197 0.589985 0.59 122.274";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "184.855 310.884 105.001";rotation = "0.706904 -0.0240356 0.706901 182.753";scale = "2 0.166666 174.642";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "117.118 258.696 112.729";rotation = "0.0240341 0.706908 -0.706897 177.246";scale = "3.25977 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "249.796 280.905 100.751";rotation = "-0.551199 0.589984 0.589998 122.274";scale = "0.875285 0.166666 320.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "152.573 185.249 112.756";rotation = "0.0240386 0.7069 0.706905 182.753";scale = "4.99855 0.166666 400";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "90.944 303.245 100.602";rotation = "-0.0339679 -0.998846 0.0339498 90.0667";scale = "0.125 6.50037 359.994";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.08 46.4848 105.007";rotation = "0.589998 0.55119 -0.589994 237.726";scale = "2 0.166667 40.9998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "13.046 45.986 100.757";rotation = "0.0240238 0.706908 -0.706897 177.245";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.746 281.625 100.751";rotation = "-0.551197 0.589986 0.589998 122.274";scale = "0.125 0.166666 239.998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "9.443 26.185 100.757";rotation = "0.0240483 0.7069 0.706905 182.752";scale = "0.999807 0.166666 40.0002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "147.555 285.858 101.005";rotation = "0 0 1 183.895";scale = "10.8047 0.166666 24";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "133.192 -242.589 112.502";rotation = "-0.682674 0.730723 9.26257e-07 180";scale = "0.125 0.166666 25.004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "133.279 -243.077 112.502";rotation = "0.812111 -0.583503 -7.39643e-07 180";scale = "0.125 0.166666 25.004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "128.623 186.878 112.756";rotation = "0.0240383 0.706896 0.706908 182.753";scale = "5.0003 0.166666 400";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "1.451 26.7291 100.607";rotation = "0.563801 -0.603508 -0.563832 117.779";scale = "0.125 4.0069 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "119.513 287.518 100.751";rotation = "-0.0188838 -0.555477 0.831318 183.238";scale = "3.47452 0.166666 62.6";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "133.199 -242.84 112.752";rotation = "-0.115063 0.702411 -0.702409 193.127";scale = "0.125 0.166666 17.0005";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "251.37 304.102 100.751";rotation = "-0.551199 0.589983 0.59 122.274";scale = "1.00013 0.166666 320";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "12.814 46.2524 100.757";rotation = "0.6035 0.563817 -0.563824 117.776";scale = "0.125 0.166666 56.0014";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "14.709 74.105 100.758";rotation = "0.6035 0.563817 -0.563824 117.776";scale = "0.125 0.166666 56.0014";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "117.029 -250.458 112.753";rotation = "0.701435 -0.503982 0.503976 109.906";scale = "3.2411 0.166666 35.016";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "116.666 -241.788 112.753";rotation = "-0.115061 0.702411 -0.70241 193.127";scale = "1.2121 0.166667 3.70116";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-6.541 27.2732 100.758";rotation = "0.998846 -0.0339785 0.0339521 90.065";scale = "1.00006 0.166666 40.0006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.77 -241.267 112.503";rotation = "-0.682674 0.730723 9.26257e-07 180";scale = "0.125 0.166666 25.006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.833 -241.754 112.503";rotation = "0.812111 -0.583503 -7.39643e-07 180";scale = "0.125 0.166666 25.006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-8.782 27.4259 105.008";rotation = "0.589997 0.55119 0.589994 122.274";scale = "2 0.166666 41.0002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.428 47.3799 100.758";rotation = "0.0240274 0.706908 -0.706898 177.245";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "177.783 311.618 100.751";rotation = "0.0188859 0.55546 0.831329 183.238";scale = "3.785 0.166666 62.6";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "109.19 -240.957 112.499";rotation = "-0.682674 0.730723 9.26257e-07 180";scale = "0.125 0.166666 24.998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "109.333 -241.449 112.499";rotation = "0.812114 -0.583499 -7.39637e-07 180";scale = "0.125 0.166666 24.998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "113.753 -241.517 112.753";rotation = "-0.115063 0.702411 -0.702409 193.127";scale = "0.125 0.166666 31.9998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-7.647 47.6453 105.008";rotation = "0.0339625 0.998846 0.0339624 90.0661";scale = "2 0.166666 14.9846";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.617 309.064 100.751";rotation = "-0.551199 0.589983 0.59 122.274";scale = "0.125 0.166666 240";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.14 313.316 100.997";rotation = "0 0 1 183.895";scale = "10.8047 0.166666 24";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "109.253 -241.212 112.749";rotation = "-0.115069 0.702414 -0.702406 193.127";scale = "0.125 0.166666 36.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "-12.994 75.7404 105.009";rotation = "-0.563817 0.603508 -0.563816 117.778";scale = "2 0.166666 54.8342";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "93.805 -240.16 112.749";rotation = "0.115065 -0.70241 0.702411 166.873";scale = "1.73097 0.166667 5.73384";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "94.799 -253.962 112.749";rotation = "0.701438 -0.503984 0.50397 109.906";scale = "5.26498 0.166666 35.035";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "101.555 288.99 101.002";rotation = "0 0 1 183.895";scale = "5.77785 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.816 -239.638 112.499";rotation = "-0.682674 0.730723 9.26257e-07 180";scale = "0.125 0.166666 24.998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.877 -240.125 112.499";rotation = "0.812114 -0.583499 -7.39637e-07 180";scale = "0.125 0.166666 24.998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "89.797 -239.888 112.749";rotation = "-0.115069 0.702414 -0.702406 193.127";scale = "0.125 0.166666 51.0014";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "180.177 340.438 112.729";rotation = "0.0240343 0.706893 0.706912 182.753";scale = "3.56897 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.127 316.948 104.927";rotation = "-0.563817 0.603508 -0.563816 117.778";scale = "2.0375 0.166666 54.0068";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "121.403 315.455 100.752";rotation = "0.0188859 0.55546 0.831329 183.238";scale = "3.32267 0.166666 62.6";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "103.575 316.419 101.002";rotation = "0 0 1 183.895";scale = "5.85353 0.166666 16";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "127.386 -253.799 112.753";rotation = "-0.115063 0.702411 -0.702409 193.127";scale = "4.62692 0.166666 320";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "142.862 -334.83 128.498";rotation = "0.986846 0.161661 2.04921e-07 180";scale = "0.125 0.166666 56.996";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "123.107 344.323 112.731";rotation = "0.0240343 0.706893 0.706912 182.753";scale = "3.1924 0.166666 80";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.144 -341.132 128.748";rotation = "0.702411 0.115067 0.702409 166.872";scale = "0.125 0.166666 40";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.144 -341.132 126.883";rotation = "0.702411 0.115067 0.702409 166.872";scale = "0.8075 0.166666 39.0006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "106.465 -261.168 112.749";rotation = "-0.11507 0.702414 -0.702406 193.127";scale = "4.62962 0.166666 320";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "123.907 -341.212 112.998";rotation = "0 0 1 71.3934";scale = "0.125 0.166666 32";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.672 -402.399 112.502";rotation = "0.812111 -0.583503 -7.39643e-07 180";scale = "0.125 0.166666 25.004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "166.156 384.788 112.757";rotation = "0.0254601 0.74871 0.662409 182.58";scale = "4.99883 0.166666 210";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.822 -408.072 112.503";rotation = "0.812111 -0.583503 -7.39643e-07 180";scale = "0.125 0.166666 25.006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "142.205 386.414 112.759";rotation = "0.0254596 0.748706 0.662413 182.58";scale = "4.99985 0.166666 210.062";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.648 -409.708 112.497";rotation = "0.812117 -0.583494 -7.39632e-07 180";scale = "0.125 0.166666 24.994";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "148.897 -415.443 112.497";rotation = "0.812117 -0.583494 -7.39632e-07 180";scale = "0.125 0.166666 24.994";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "178.435 -405.436 112.752";rotation = "-0.121775 0.743381 -0.657689 192.298";scale = "4.62722 0.166666 209.936";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "157.518 -412.806 112.747";rotation = "-0.12178 0.743384 -0.657685 192.298";scale = "4.62902 0.166666 209.83";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "173.232 488.765 99.9617";rotation = "0.0240389 0.7069 0.706905 182.753";scale = "5.00023 0.166666 216";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "149.282 490.42 99.9612";rotation = "0.0240383 0.706897 0.706908 182.753";scale = "5.00007 0.166666 216";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "211.675 -504.173 99.9607";rotation = "-0.115064 0.702411 -0.702409 193.127";scale = "4.62778 0.166666 339.998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine2";position = "190.74 -511.498 99.9602";rotation = "-0.115069 0.702414 -0.702406 193.127";scale = "4.62862 0.166666 339.998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "267.307 -641.196 100.21";rotation = "0 0 1 71.394";scale = "0.125 0.166666 8";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "250.267 -646.95 100.21";rotation = "0 0 1 71.394";scale = "0.125 0.166666 8";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";nametoset = "I-39 South";};setTargetName(%building.getTarget(), addTaggedString(%building.nametoset));addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "246.274 -648.225 100.208";rotation = "0 0 1 71.394";scale = "0.125 0.166666 8";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "229.017 -653.425 100.208";rotation = "0 0 1 71.394";scale = "0.125 0.166666 8";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/3152732/Buildings/2.cs b/Univ/Data/3152732/Buildings/2.cs new file mode 100644 index 0000000..0430a4a --- /dev/null +++ b/Univ/Data/3152732/Buildings/2.cs @@ -0,0 +1,61 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "Drakolich" +// Created in mission "FlatlandBig" +// Construction v0.70 Development Version 1 + +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.4198 19.5791 100.963";rotation = "-0.973117 0.162854 0.162858 91.561";scale = "1.99077 0.333333 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "65.5736 20.6391 101.587";rotation = "-0.450329 0.631349 -0.631349 228.488";scale = "0.125 0.166666 15.7265";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "73.4208 18.2015 101.473";rotation = "0.117513 0.702206 0.702209 193.405";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "1";switchRadius = "50";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.103 18.0465 101.587";rotation = "0.702209 -0.117513 -0.702206 166.595";scale = "0.125 0.166666 0.2";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "73.3394 17.9651 104.074";rotation = "0.986284 -0.165055 -2.09222e-07 180";scale = "0.125 0.166666 7.148";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "73.258 17.7287 103.802";rotation = "-0.973118 0.162852 0.162851 91.5613";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "65.3374 20.7205 100.5";rotation = "0 0 1 109.001";scale = "0.125 0.166666 20";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "73.6445 18.1139 104.084";rotation = "-0.631347 -0.450331 0.63135 131.513";scale = "3.594 4.83654 0.48";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "75.2669 17.0369 104.324";rotation = "-0.973119 0.16285 0.16285 91.5614";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "76.383 16.6525 104.324";rotation = "-0.973119 0.16285 0.16285 91.5614";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "78.366 16.2341 104.074";rotation = "0.986284 -0.165055 -2.09222e-07 180";scale = "0.125 0.166666 7.1478";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSwitch";position = "78.2846 15.9977 101.636";rotation = "-0.973118 0.162852 0.162851 91.5615";scale = "0.5 0.5 0.5";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "1";isSwitchedOff = "1";switchRadius = "50";SwitchTimer = "5000";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[OFF]  Frequency" SPC %obj.powerFreq));setTargetSkin(%building.target,'base');%building.lastState = "";%building.getDataBlock().losePower(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "78.2846 15.9977 103.797";rotation = "-0.973118 0.162852 0.162851 91.5613";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "79.2021 15.6818 107.037";rotation = "0.117512 0.702206 0.702209 193.405";scale = "7.25007 1.97533 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "69.9035 34.7482 100.927";rotation = "-0.704029 -0.502168 -0.502166 109.707";scale = "7.25 0.333333 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "65.4186 20.9569 101.587";rotation = "0.11751 0.702206 0.702209 193.405";scale = "0.125 0.166666 57.9998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "70.3759 34.5855 107.037";rotation = "-0.450329 0.631347 0.631352 131.513";scale = "7.25 1.97533 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.994 11.1974 110.25";rotation = "0.16285 0.973119 0.162849 91.5616";scale = "0.125 0.166666 58.0006";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "74.86 48.3768 110.25";rotation = "-0.502171 0.704025 -0.502168 109.707";scale = "0.125 0.166666 58";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.086 29.8646 99";rotation = "-0 -0 1 109.001";scale = "7.525 10.0333 3.2";team = "1";ownerGUID = "3152732";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "86.52 25.2681 100.5";rotation = "0 0 1 142.806";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.7167 13.4388 100.926";rotation = "0.117516 0.702207 0.702208 193.405";scale = "3.8051 0.333333 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "2";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "92.9947 11.1971 101.587";rotation = "-0.450337 0.631352 0.631341 131.513";scale = "0.125 0.166666 30.4432";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "87.417 25.8863 100.5";rotation = "0 0 1 157.127";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "88.161 26.0605 100.5";rotation = "0 0 1 176.583";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "84.086 29.8648 110.5";rotation = "0.986285 -0.165053 -4.96697e-06 180";scale = "7.24985 9.66662 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "88.941 25.0117 100.5";rotation = "0 0 1 208.098";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "73.599 43.9457 104.324";rotation = "-0.704026 -0.502171 -0.502167 109.707";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "76.4833 45.3986 100.6";rotation = "0 0 -1 29.961";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "74.0962 46.9256 101.587";rotation = "-0.450333 0.63135 0.631346 131.513";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "93.23 11.116 100.5";rotation = "0 0 1 109.001";scale = "0.125 0.166666 20";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "74.3019 47.523 101.587";rotation = "-0.450333 0.63135 0.631346 131.513";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "78.9039 46.9846 104.324";rotation = "-0.973119 0.16285 0.16285 91.5616";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "74.5425 48.2218 101.587";rotation = "-0.450333 0.63135 0.631346 131.513";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "74.942 48.6132 100.5";rotation = "0 0 1 109.001";scale = "0.125 0.166666 20";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "76.5651 48.3187 101.587";rotation = "0.117512 0.702206 0.702209 193.404";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "76.0396 48.4996 101.587";rotation = "0.117512 0.702206 0.702209 193.404";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "75.4959 48.6869 101.587";rotation = "0.117512 0.702206 0.702209 193.404";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "98.2693 24.9809 101.164";rotation = "-0.450328 0.631347 0.631352 131.513";scale = "7.25007 0.376333 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "102.754 38.772 101.587";rotation = "-0.97312 0.162851 0.162841 91.561";scale = "0.125 0.166666 57.9998";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.7961 25.1437 107.037";rotation = "-0.704025 -0.50217 -0.502169 109.706";scale = "7.25005 1.97533 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "88.9696 44.0472 101.005";rotation = "-0.973117 0.162854 0.162858 91.561";scale = "7.24995 0.333333 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "102.599 39.0898 101.587";rotation = "0.162847 0.973119 0.16285 91.5615";scale = "0.125 0.166667 58.002";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "88.8066 43.5747 107.037";rotation = "0.117512 0.702206 0.702209 193.405";scale = "7.25017 1.97533 1";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "93.311 11.3524 110.25";rotation = "0.63135 0.450332 0.631347 131.513";scale = "0.125 0.166666 58.0004";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "75.178 48.5318 110.25";rotation = "0.702209 -0.117514 0.702206 193.405";scale = "0.125 0.166666 58.0016";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "98.7159 37.249 100.6";rotation = "0 0 1 72.0471";scale = "1 1 1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "101.23 35.1161 104.324";rotation = "-0.45033 0.631353 0.631345 131.514";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "SolarPanel";position = "98.6998 40.1681 104.341";rotation = "-0.973119 0.16285 0.16285 91.5616";scale = "0.1 0.1 0.1";team = "1";ownerGUID = "3152732";deployed = "1";powerFreq = "2";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "102.484 37.2198 101.587";rotation = "-0.70402 -0.502171 -0.502176 109.707";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "101.335 39.7894 101.587";rotation = "0.117512 0.702206 0.702209 193.404";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "102.697 37.8393 101.587";rotation = "-0.70402 -0.502171 -0.502176 109.707";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "101.912 39.5908 101.587";rotation = "0.117512 0.702206 0.702209 193.404";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "102.909 38.4542 101.587";rotation = "-0.70402 -0.502171 -0.502176 109.707";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (Turret) () {datablock = "TurretDeployedWallIndoor";position = "102.444 39.4076 101.587";rotation = "0.117512 0.702206 0.702209 193.404";scale = "1 1 1";team = "1";ownerGUID = "3152732";initialBarrel = "DeployableIndoorBarrel";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();%building.setSelfPowered();%building.setRechargeRate(%building.getDatablock().rechargeRate); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "102.835 39.0087 100.5";rotation = "0 0 1 109.001";scale = "0.125 0.166666 20";team = "1";ownerGUID = "3152732";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/3152732/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3152732/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..29e23a2 --- /dev/null +++ b/Univ/Data/3152732/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,73 @@ +//Ranks & Settings File For GUID 3152732 / Name: Drakolich +//Created On 2010-11-06, Total Warfare Mod 2 3.4 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3152732) { + + new ScriptObject(TWM2Client_3152732) { + + xpGaineda914a77e55aad7e7c12a57aa7f122fa43d085b = "2394"; + noMoreEXP9002e32633e00c82128b7d12c928b85d2b4d3d7c = "0"; + challengeCompleteAcceptance = "1"; + noMoreEXPafd65474d446a6dde699343e249c8305bb5c112c = "0"; + phrase = "You got PWN\'D"; + xpGain20101106 = "2"; + hasMedalHonorsB = "1"; + xpGaina551bd7c55ccc51f49b5a3863ebc0a96223288e4 = "67019"; + vehicleKillsCentaurVehicle = "1"; + hasMedalBurningNightmare = "1"; + weaponKillsM1700Image = "16"; + bossDefeatCountInsignia = "1"; + hasMedalHonorsA = "1"; + weaponKillsM4A1Image = "1"; + weaponKillsPg700Image = "4"; + hasMedalLordraniussFall = "1"; + rankNumber = "41"; + hasMedalTheUltimateHeadshot = "1"; + weaponKillsMp26Image = "1"; + weaponKillsSA2400Image = "3"; + noMoreEXPa551bd7c55ccc51f49b5a3863ebc0a96223288e4 = "0"; + weaponKillsG41RifleImage = "3"; + money = "5"; + rank = "Colonel Grade I"; + challengeCompleteS3RifleImage_2 = "1"; + xpGain91add7cf7886d77002ae84ea77fa577c0db892c1 = "5"; + bossDefeatCountGhostOfFire = "1"; + weaponKillsPulsePhaserImage = "28"; + challengeCompleteS3RifleImage_1 = "1"; + weaponKillsG17SniperRifleImage = "32"; + xpGainafd65474d446a6dde699343e249c8305bb5c112c = "66666"; + weaponKillsM1SniperRifleImage = "2"; + vehicleKillsScoutFlyer = "4"; + weaponKillsRP432Image = "1"; + xp = "136254"; + AirstrikeCalls = "10"; + xpGain9002e32633e00c82128b7d12c928b85d2b4d3d7c = "168"; + weaponKillsWp400Image = "11"; + noMoreEXPeda914a77e55aad7e7c12a57aa7f122fa43d085b = "0"; + millionxp = "0"; + weaponKillsMRXXImage = "1"; + name = "Drakolich"; + weaponKillsS3RifleImage = "314"; + weaponKillspistolImage = "1"; + officer = "0"; + hasMedalInsigniaDefeated = "1"; + challengeCompleteS3RifleImage_3 = "1"; + bossDefeatCountTrebor = "1"; + gameTime = "1144"; + UAVCalls = "7"; + noMoreEXP91add7cf7886d77002ae84ea77fa577c0db892c1 = "0"; + }; + new ScriptObject(CCD_3152732) { + + successiveStreak20101205_1 = "1"; + totalPlayerKillCount20101205 = "1"; + PlayerKillCount20101205_G17SniperRifleImage = "1"; + expireDate = "20101231"; + }; + new ScriptObject(ClientStore3152732) { + + nextLoto = "0"; + nextSlot = "0"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/3226760/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3226760/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..75bd749 --- /dev/null +++ b/Univ/Data/3226760/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,18 @@ +//Ranks & Settings File For GUID 3226760 / Name: J03 RUNZz XBL +//Created On 2010-11-20, Total Warfare Mod 2 3.4 +//--- OBJECT WRITE BEGIN --- +new ScriptObject(TWM2Client_3226760) { + + phrase = "None Set"; + name = "J03 RUNZz XBL"; + rank = "Corporal Grade IV"; + weaponKillsM1700Image = "2"; + xp = "938"; + xpGain20101120 = "938"; + rankNumber = "12"; + weaponKillsS3RifleImage = "19"; + gameTime = "127"; + weaponKillsRP432Image = "1"; + officer = "0"; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/3232740/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3232740/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..524c963 --- /dev/null +++ b/Univ/Data/3232740/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,48 @@ +//Ranks & Settings File For GUID 3232740 / Name: Death Ghost +//Created On 2010-11-24, Total Warfare Mod 2 3.5 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3232740) { + + new ScriptObject(TWM2Client_3232740) { + + xp = "51508"; + CGCalls = "0"; + millionxp = "0"; + HarrierCalls = "0"; + UAVCalls = "0"; + HWCalls = "0"; + ZBCalls = "0"; + hasMedalHonorsB = "1"; + gameTime = "47"; + rank = "Major Grade II"; + officer = "0"; + SlthAirstrikeCalls = "0"; + GMCalls = "0"; + hasMedalTheUltimateHeadshot = "1"; + NukeCalls = "0"; + noMoreEXP4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "0"; + hasMedalHonorsA = "1"; + weaponKillsR700SniperRifleImage = "3"; + xpGain4cd972c0b24dfb1cd782ebf2cec5b8e02036a7e0 = "51508"; + name = "Death Ghost"; + phrase = "None Set"; + noMoreEXP6a7c7eb2feb760bf98217eeee06e9b652947e70e = "0"; + HeliCalls = "0"; + ArtyCalls = "0"; + money = "51492"; + GunHeliCalls = "0"; + weaponKillsG17SniperRifleImage = "12"; + rankNumber = "34"; + AirstrikeCalls = "0"; + }; + new ScriptObject(CCD_3232740) { + + expireDate = "20101130"; + }; + new ScriptObject(ClientStore3232740) { + + nextLoto = "0"; + nextSlot = "0"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/3322673/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3322673/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..034961e --- /dev/null +++ b/Univ/Data/3322673/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,277 @@ +//Ranks & Settings File For GUID 3322673 / Name: zachkillsyouall +//Created On 2011-10-29, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3322673) { + + new ScriptObject(TWM2Client_3322673) { + + hasMedalSkyFront = "1"; + HeliCalls = "38"; + noMoreEXPdc7b9d125155cc301183ae093f3bfe9b8cc3a597 = "0"; + xpGainb6410fc738b5c91870eea4499330a95635d881b9 = "29046"; + challengeCompleteMiniChaingunImage_1 = "1"; + bossDefeatCountGhostOfLightning = "2"; + hasMedalHarbiend = "1"; + xpGain43be0ebaf6ea45eb749520ed7c615c00172b92a7 = "1638"; + noMoreEXP6c40a08c348816c726fb4502aefda7aaa3cbc5f8 = "0"; + challengeCompleteHelicopter1 = "1"; + gameTime = "8525"; + noMoreEXP11a735ced5bdeea30f9f7fea896b285185029d99 = "0"; + weaponKillsPulseSMGImage = "2"; + bossDefeatCountCnlWindshear = "1"; + noMoreEXP337bec3f1f831ddb8126d3e52f11698c5d168f67 = "0"; + hasMedalSurvivor = "1"; + hasMedalSrysly = "1"; + officer = "2"; + SatNukeCalls = "8"; + challengeCompleteGroupBuster = "1"; + hasMedalBurningNightmare = "1"; + noMoreEXP5810ab261901bdc66797a7083e12622e3ab85fe7 = "0"; + noMoreEXP3f728f31cd3c15f23ee0f30d832c2c46b47e9a06 = "0"; + weaponKillsAC130BigCannonImage = "2"; + ArtyCalls = "1"; + xpGain5810ab261901bdc66797a7083e12622e3ab85fe7 = "25056"; + challengeCompleteS3RifleImage_3 = "1"; + challengeComplete3For5Sabo = "1"; + weaponKillsJavelinImage = "1"; + hasMedalTheNewGeneral = "1"; + GunHeliCalls = "20"; + noMoreEXP3fff5581ed175894ba62b9644117f99dbb2df614 = "0"; + noMoreEXP24a5f5898db61153fd1ae9ccb7f3dd2b0429ed46 = "0"; + challengeCompleteSimonSays = "1"; + xpGaincd08e9e71107e267629680faf2b06f17de33d150 = "17580"; + challengeCompleteM1SniperRifleImage_1 = "1"; + hasMedalTheUltimateHeadshot = "1"; + challengeCompleteMilestone25 = "1"; + bossDefeatCountStormrider = "2"; + challengeCompleteYvex2 = "1"; + noMoreEXP232efdff56b108c368cbe587f5fd4eac010b95f4 = "0"; + xpGaindc7b9d125155cc301183ae093f3bfe9b8cc3a597 = "249984"; + noMoreEXP6015016d650338d6a3052cdb4df45ef6c43139ed = "0"; + noMoreEXP43be0ebaf6ea45eb749520ed7c615c00172b92a7 = "0"; + xpGainb1fd600680666b8dc4172c96cd10d65fa29106ac = "13085"; + hasMedalAboutDamnTime = "1"; + AirstrikeCalls = "58"; + challengeCompleteModel1887Image_1 = "1"; + noMoreEXPb1fd600680666b8dc4172c96cd10d65fa29106ac = "0"; + weaponKillsS3SRifleImage = "24"; + xpGain6c40a08c348816c726fb4502aefda7aaa3cbc5f8 = "41772"; + noMoreEXPe8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "0"; + challengeCompleteAirstrike1 = "1"; + weaponKillsM1700Image = "83"; + challengeCompleteTreb1 = "1"; + phrase = "None Set"; + noMoreEXPeeb6c2be70a59f303f0728bbe542e6b394262d7e = "0"; + xpGain24a5f5898db61153fd1ae9ccb7f3dd2b0429ed46 = "99720"; + challengeCompleteModel1887Image_2 = "1"; + challengeComplete15For15 = "1"; + challengeCompleteYvex1 = "1"; + xpGain56b8f856bcccc3c7bf6dda8db6c8020de1220d7a = "167988"; + challengeCompleteFromTheTop = "1"; + xpGainb47efe2379f1336e87dd71f87643bb12f14c6659 = "370530"; + xpGain6f71e92f874e8079dfff7b3288408ee33b904c97 = "18000"; + weaponKillsLD06SavagerImage = "18"; + weaponKillsRPGImage = "2"; + CGCalls = "2"; + hasMedalInsigniaDefeated = "1"; + hasMedalRevengeAvoidedAgain = "1"; + bossDefeatCountVardison3 = "1"; + noMoreEXPb47efe2379f1336e87dd71f87643bb12f14c6659 = "0"; + noMoreEXPbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "0"; + challengeCompleteBaseDestroyer = "1"; + weaponKillsR700SniperRifleImage = "90"; + weaponKillsS3RifleImage = "312"; + weaponKillsMRXXImage = "2"; + bossDefeatCountTrebor = "2"; + challengeCompletePulsePhaserImage_1 = "1"; + bossDefeatCountYvex = "5"; + xpGaina7f20487bdfe41fb720b741a3304cc0934243bcc = "123468"; + NapalmHarrierCalls = "16"; + bossDefeatCountInsignia = "1"; + noMoreEXP6f71e92f874e8079dfff7b3288408ee33b904c97 = "0"; + weaponKillsP90Image = "12"; + HarrierCalls = "9"; + xpGain297ae41cd0152faf18ea052f3b929f3dc948c294 = "76320"; + weaponKillsSA2400Image = "3"; + challengeCompleteBombDisarmed = "1"; + noMoreEXP297ae41cd0152faf18ea052f3b929f3dc948c294 = "0"; + rank = "Master Commander"; + noMoreEXP3168ab06a67b7ef06492b6f0c5af4a73283849ef = "0"; + hasMedalTheSourceOfAllEvil = "1"; + bossDefeatCountLordRog = "1"; + bossDefeatCountVengenor = "1"; + rankNumber = "61"; + challengeCompleteLifeGiver = "1"; + name = "zachkillsyouall"; + UAVCalls = "0"; + HWCalls = "0"; + xpGaind73b6ebb97084e82e20540a40eee3d52568a9077 = "14490"; + noMoreEXP89cdac08df21a5718f555304b1ff83706f567ff0 = "0"; + xpGainbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "1.42596e+06"; + challengeCompleteS3RifleImage_1 = "1"; + weaponKillsM1SniperRifleImage = "151"; + weaponKillspistolImage = "2"; + xpGain9d7a38ce97bd188d84124e78647e97cb64a096f6 = "535698"; + weaponKillsNapalmImage = "34"; + xpGainccdd06b5c5ef7d4dfaf1f621309802964e0178e1 = "414996"; + challengeCompleteArmyOf50Stopped = "1"; + ZBCalls = "0"; + challengeCompleteEpicFailure = "1"; + noMoreEXPa7f20487bdfe41fb720b741a3304cc0934243bcc = "0"; + vehicleKillsScoutFlyer = "16"; + noMoreEXPcd08e9e71107e267629680faf2b06f17de33d150 = "0"; + xpGain3fff5581ed175894ba62b9644117f99dbb2df614 = "64452"; + noMoreEXP4f91474409e3b72c7c5cf8b5e59406ea15a3d711 = "0"; + xpGain3168ab06a67b7ef06492b6f0c5af4a73283849ef = "15108"; + xpGain11a735ced5bdeea30f9f7fea896b285185029d99 = "56118"; + xpGaineeb6c2be70a59f303f0728bbe542e6b394262d7e = "123756"; + weaponKillsModel1887Image = "190"; + challengeCompleteDownBoy = "1"; + vehicleKillsHarbingerGunship = "120"; + xpGain337bec3f1f831ddb8126d3e52f11698c5d168f67 = "15000"; + money = "4.0217e+06"; + hasMedalThundaStruk = "1"; + GMCalls = "2"; + millionxp = "4"; + SlthAirstrikeCalls = "9"; + weaponKillsMp26CMDOImage = "27"; + hasMedalGamerExcuisite = "1"; + noMoreEXPd73b6ebb97084e82e20540a40eee3d52568a9077 = "0"; + noMoreEXPccdd06b5c5ef7d4dfaf1f621309802964e0178e1 = "0"; + challengeCompleteGoldStar = "1"; + NukeCalls = "0"; + weaponKillsPulsePhaserImage = "79"; + challengeCompleteNapalmImage_1 = "1"; + bossDefeatCountGhostOfFire = "3"; + challengeCompleteS3RifleImage_2 = "1"; + xpGain4f91474409e3b72c7c5cf8b5e59406ea15a3d711 = "692268"; + challengeCompleteBombDetonated = "1"; + weaponKillslasergunImage = "1"; + weaponKillsM4A1Image = "3"; + hasMedalHonorsC = "1"; + noMoreEXP9d7a38ce97bd188d84124e78647e97cb64a096f6 = "0"; + noMoreEXPb6410fc738b5c91870eea4499330a95635d881b9 = "0"; + noMoreEXP1996f02e5fea538fff5c6f0e4e7b286510065ade = "0"; + hasMedalLordraniussFall = "1"; + challengeCompleteM1700Image_1 = "1"; + hasMedalMySky = "1"; + noMoreEXPea38a86d2e527957532c2c93613cc9a5912a1014 = "0"; + weaponKillsRP432Image = "2"; + noMoreEXP56b8f856bcccc3c7bf6dda8db6c8020de1220d7a = "0"; + xp = "757626"; + challengeCompleteAngel = "1"; + xpGain89cdac08df21a5718f555304b1ff83706f567ff0 = "12780"; + challengeCompleteVard1 = "1"; + xpGaine8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "33228"; + challengeCompleteGunHeli1 = "1"; + weaponKillsMiniChaingunImage = "56"; + }; + new ScriptObject(ClientStore3322673) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(CCD_3322673) { + + totalZombieKillCount20130827 = "9"; + ZombieKillCount20130827_0_13 = "3"; + ZombieKillCount20130827_PulsePhaserImage_3 = "1"; + ZombieKillCount20130827_G17SniperRifleImage_3 = "2"; + ZombieKillCount20130827_Model1887Image_13 = "3"; + expireDate = "20130831"; + ZombieKillCount20130827_0_3 = "5"; + ZombieKillCount20130827_0_5 = "1"; + ZombieKillCount20130827_AcidCannonImage_3 = "2"; + ZombieKillCount20130827_Model1887Image_5 = "1"; + }; + new ScriptObject(CCD_3322673) { + + expireDate = "20130831"; + }; + new ScriptObject(CCD_3322673) { + + expireDate = "20130831"; + }; + new ScriptObject(CCD_3322673) { + + ZombieKillCount20130826_0_1 = "21"; + ZombieKillCount20130826_Wp400Image_1 = "1"; + ZombieKillCount20130826_Model1887Image_1 = "11"; + killstreakCalls20130826_2 = "1"; + expireDate = "20130831"; + ZombieKillCount20130826_P90Image_1 = "1"; + totalZombieKillCount20130826 = "21"; + ZombieKillCount20130826__1 = "8"; + }; + new ScriptObject(CCD_3322673) { + + totalZombieKillCount20130827 = "241"; + killstreakCalls20130827_6 = "5"; + ZombieKillCount20130827_G17SniperRifleImage_3 = "7"; + ZombieKillCount20130827_G17SniperRifleImage_4 = "1"; + killstreakCalls20130827_4 = "1"; + ZombieKillCount20130827_Wp400Image_2 = "2"; + ZombieKillCount20130827_R700SniperRifleImage_1 = "1"; + killstreakCalls20130827_2 = "6"; + killstreakCalls20130827_8 = "5"; + ZombieKillCount20130827_Model1887Image_1 = "24"; + ZombieKillCount20130827_PulsePhaserImage_4 = "1"; + ZombieKillCount20130827_Wp400Image_1 = "2"; + ZombieKillCount20130827_Model1887Image_2 = "13"; + expireDate = "20130831"; + killstreakCalls20130827_5 = "8"; + ZombieKillCount20130827_R700SniperRifleImage_2 = "1"; + ZombieKillCount20130827_0_3 = "13"; + ZombieKillCount20130827_0_4 = "2"; + ZombieKillCount20130827__1 = "42"; + ZombieKillCount20130827_0_2 = "56"; + ZombieKillCount20130827_G17SniperRifleImage_2 = "4"; + ZombieKillCount20130827__3 = "4"; + ZombieKillCount20130827_R700SniperRifleImage_3 = "1"; + ZombieKillCount20130827_PulsePhaserImage_2 = "1"; + ZombieKillCount20130827_0_1 = "171"; + ZombieKillCount20130827_AcidCannonImage_3 = "1"; + ZombieKillCount20130827_G17SniperRifleImage_1 = "102"; + ZombieKillCount20130827__2 = "34"; + ZombieKillCount20130827_flamerImage_2 = "1"; + }; + new ScriptObject(CCD_3322673) { + + totalZombieKillCount20130827 = "241"; + killstreakCalls20130827_6 = "5"; + ZombieKillCount20130827_G17SniperRifleImage_3 = "7"; + ZombieKillCount20130827_G17SniperRifleImage_4 = "1"; + killstreakCalls20130827_4 = "1"; + ZombieKillCount20130827_Wp400Image_2 = "2"; + ZombieKillCount20130827_R700SniperRifleImage_1 = "1"; + killstreakCalls20130827_2 = "6"; + killstreakCalls20130827_8 = "5"; + ZombieKillCount20130827_Model1887Image_1 = "24"; + ZombieKillCount20130827_PulsePhaserImage_4 = "1"; + ZombieKillCount20130827_Wp400Image_1 = "2"; + ZombieKillCount20130827_Model1887Image_2 = "13"; + expireDate = "20130831"; + killstreakCalls20130827_5 = "8"; + ZombieKillCount20130827_R700SniperRifleImage_2 = "1"; + ZombieKillCount20130827_0_3 = "13"; + ZombieKillCount20130827_0_4 = "2"; + ZombieKillCount20130827__1 = "42"; + ZombieKillCount20130827_0_2 = "56"; + ZombieKillCount20130827_G17SniperRifleImage_2 = "4"; + ZombieKillCount20130827__3 = "4"; + ZombieKillCount20130827_R700SniperRifleImage_3 = "1"; + ZombieKillCount20130827_PulsePhaserImage_2 = "1"; + ZombieKillCount20130827_0_1 = "171"; + ZombieKillCount20130827_AcidCannonImage_3 = "1"; + ZombieKillCount20130827_G17SniperRifleImage_1 = "102"; + ZombieKillCount20130827__2 = "34"; + ZombieKillCount20130827_flamerImage_2 = "1"; + }; + new ScriptObject(ClientSettings3322673) { + + savedstreak3 = "4"; + savedstreak1 = "1"; + savedstreak2 = "2"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/3332624/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3332624/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..00476fb --- /dev/null +++ b/Univ/Data/3332624/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,29 @@ + + +404 Not Found + +

Not Found

+

The requested URL /public/Univ/Data/3332624/Ranks/TWM2/Saved.TWMSave was not found on this server.

+

Additionally, a 404 Not Found +error was encountered while trying to use an ErrorDocument to handle the request.

+
+
Apache Server at www.phantomdev.net Port 80
+//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3332624) { + + new ScriptObject(CCD_3332624) { + + expireDate = "20140331"; + }; + new ScriptObject(ClientStore3332624) { + + nextSlot = "0"; + nextLoto = "0"; + }; + new ScriptObject(TWM2Client_3332624) { + + gameTime = "6"; + officer = "0"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/3336626/Buildings/5.cs b/Univ/Data/3336626/Buildings/5.cs new file mode 100644 index 0000000..2c09a2e --- /dev/null +++ b/Univ/Data/3336626/Buildings/5.cs @@ -0,0 +1,146 @@ +// C.S.S CONSTRUCTION MOD SAVE FILE +// Saved by "miguemely" +// Created in mission "FlatlandBigH" +// Construction v0.70 Development Version 1 + +%building = new (ForceFieldBare) () {datablock = "DeployedForceField1";position = "170.341 -6.56645 337.265";rotation = "0.906799 0.421564 -1.11318e-07 180";scale = "36.9688 36.6783 0.48";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "180.827 -16.1004 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "180.205 -15.5761 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "181.628 -16.7757 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "179.477 -14.9623 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "182.429 -17.451 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "178.893 -14.47 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.303 -18.1878 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "177.874 -13.6109 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "184.031 -18.8016 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "177.364 -13.1809 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "184.748 -19.4062 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "196.144 -4.1622 350";rotation = "0.906798 0.421566 4.9022e-07 180";scale = "9.75 13.0002 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "176.708 -12.6279 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "185.549 -20.0814 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "175.98 -12.0142 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "175.252 -11.4003 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "186.515 -20.8957 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.992";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "174.742 -10.9705 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9924";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.816 -6.8168 337.025";rotation = "0.671741 0.312286 0.671745 145.314";scale = "0.125 0.166666 75.978";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.323 -21.5771 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "174.232 -10.5404 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.649 -10.049 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.079 -22.2143 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.194 -6.75638 337.025";rotation = "-0.835587 -0.388453 -0.388457 100.237";scale = "0.125 0.166666 74.3156";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "173.213 -9.68124 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "176.292 1.71816 342.699";rotation = "-0.312288 0.671744 -0.671741 214.686";scale = "1 1 1";team = "1";ownerGUID = "3336626";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "188.843 -22.8585 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.629 -9.18905 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9924";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.298 -23.242 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.992";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "183.585 -19.0792 331.257";rotation = "0.671743 0.312285 0.671744 145.314";scale = "65.4717 75.9068 0.872";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.9 -8.57439 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "181.235 8.407 331.602";rotation = "-0.31229 0.67174 0.671744 145.314";scale = "9.74998 11.9323 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "189.929 -23.774 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.992";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "183.253 -19.4528 331.596";rotation = "0.250088 0.684636 0.684638 208.083";scale = "9.75015 11.936 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "190.51 -24.2638 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.992";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.151 -7.94304 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9924";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.013 -24.6879 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.992";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.372 -7.2861 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "191.587 -25.1719 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "178.311 4.31816 326.546";rotation = "-0.312287 0.67174 0.671745 145.314";scale = "1 1 1";team = "1";ownerGUID = "3336626";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "178.311 4.31816 326.546";rotation = "-0.312292 0.671743 -0.67174 214.686";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.986 -6.96085 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9924";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "208.628 -6.92352 349.25";rotation = "0.250092 0.684637 -0.684636 151.918";scale = "0.125 0.166666 49.872";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.204 -6.30146 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 77.0004";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.827 -6.3107 349.25";rotation = "-0.312288 0.671744 -0.671741 214.686";scale = "0.125 0.166666 78.0014";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.613 23.4768 349.75";rotation = "-0.388458 0.835585 -0.388456 100.237";scale = "0.125 0.166666 77.9998";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.884 2.35525 349.25";rotation = "0.250092 0.684637 -0.684636 151.918";scale = "0.125 0.166666 75.992";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "172.645 -10.1832 349.75";rotation = "0.684636 -0.250092 0.684637 208.082";scale = "0.125 0.166666 67.1712";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "189.683 16.9814 339.362";rotation = "-0.312287 0.671741 0.671744 145.314";scale = "1 1 1";team = "1";ownerGUID = "3336626";deployed = "1";powerFreq = "1";frequency = "2";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "189.683 16.9814 339.362";rotation = "-0.312292 0.671742 -0.671741 214.686";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.842 1.54754 349.25";rotation = "0.250092 0.684637 -0.684636 151.918";scale = "0.125 0.166666 75.9918";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "219.723 0.80487 349.25";rotation = "0.250092 0.684637 -0.684636 151.918";scale = "0.125 0.166666 75.992";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "222.359 -1.7537 337.025";rotation = "0.835584 0.388459 -0.388456 100.236";scale = "0.125 0.166666 73.3164";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.573 -30.3549 337.025";rotation = "0.88845 -0.324545 0.32454 96.7605";scale = "0.125 0.166666 74.8972";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "208.721 10.7397 331.257";rotation = "-0.388458 0.835584 -0.388459 100.237";scale = "65.4717 75.9142 0.872";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.47 0.17487 349.25";rotation = "0.250092 0.684637 -0.684636 151.918";scale = "0.125 0.166666 75.9918";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "211.053 -16.7316 331.257";rotation = "0.324541 0.888452 0.324541 96.7606";scale = "65.4717 77.999 0.872";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.314 -6.53175 310";rotation = "0 0 1 40.1332";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.505 -6.69289 349.75";rotation = "0.684637 -0.250091 0.684636 208.082";scale = "0.125 0.166666 10.8299";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "209.035 11.1286 331.568";rotation = "-0.888452 0.324539 0.324543 96.7612";scale = "9.75018 11.955 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.305 -0.529 349.25";rotation = "0.250092 0.684637 -0.684636 151.918";scale = "0.125 0.166666 75.992";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "211.435 -17.0534 331.62";rotation = "-0.31229 0.67174 0.671744 145.314";scale = "9.74995 11.92 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "197.511 -30.1662 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.046 3.06169 349.25";rotation = "0.250092 0.684637 -0.684636 151.918";scale = "0.125 0.166666 26.1206";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "222.688 -1.69469 349.25";rotation = "0.250092 0.684637 -0.684636 151.918";scale = "0.125 0.166666 75.9922";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.04 -1.6647 349.25";rotation = "0.835584 0.388461 -0.388454 100.237";scale = "0.125 0.166666 75.8432";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.579 -31.0666 349.25";rotation = "0.888452 -0.32454 0.324541 96.7605";scale = "0.125 0.166666 77.0002";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.783 -1.63137 349.75";rotation = "0.32454 0.888453 0.324539 96.7611";scale = "0.125 0.166666 78.0014";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.813 -1.98365 349.75";rotation = "-0.388458 0.835585 -0.388456 100.237";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.859 22.9426 349";rotation = "0.906798 0.421565 5.34372e-07 180";scale = "0.125 0.166666 78";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "196.144 -4.16213 308.5";rotation = "-0 -0 1 40.1332";scale = "10 13.3333 3";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.613 23.4768 313.453";rotation = "-0.388458 0.835585 -0.388456 100.237";scale = "0.125 0.166666 77.9998";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.263 -31.1267 313.264";rotation = "-0.31229 0.671739 0.671745 145.314";scale = "0.125 0.166666 75.9372";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "193.774 23.6679 310";rotation = "0 0 1 40.1332";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.323 -31.831 313.442";rotation = "0.32454 0.888453 0.324539 96.7611";scale = "0.125 0.166666 78.0012";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.514 -31.9921 310";rotation = "0 0 1 40.1332";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "194.05 22.7816 313.264";rotation = "-0.324541 -0.888453 0.324538 96.7611";scale = "0.125 0.166666 76.9366";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.109 -2.0437 313.264";rotation = "-0.888453 0.324538 0.324541 96.7611";scale = "0.125 0.166666 77.0004";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.783 -1.63137 313.385";rotation = "0.32454 0.888453 0.324539 96.7611";scale = "0.125 0.166666 78.0014";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "198.675 -31.801 313.494";rotation = "0.671744 0.312288 0.671741 145.314";scale = "0.125 0.166666 77.9996";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.974 -1.79251 310";rotation = "0 0 1 40.1332";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.765 -2.0503 309.74";rotation = "0.835585 0.388458 -0.388456 100.237";scale = "0.125 0.166666 12";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "168.256 -1.70829 309.49";rotation = "8.08579e-07 5.5044e-06 1 130.133";scale = "6.45828 11.6127 0.872";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "194.158 18.4445 310.4";rotation = "-0.0433078 0.999062 1.2664e-06 180";scale = "1 1 1";team = "1";ownerGUID = "3336626";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "194.158 18.4445 310.4";rotation = "1.21383e-06 1.92207e-12 1 175.036";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.179 -5.11766 309.75";rotation = "0.835585 0.388458 -0.388456 100.237";scale = "0.125 0.166666 12";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.944 -1.22027 309.75";rotation = "0.250086 0.68464 0.684635 208.082";scale = "0.125 0.166666 7.02434";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "155.88 8.7226 319.499";rotation = "-0.45866 0.888612 1.1264e-06 180";scale = "1 1 1";team = "1";ownerGUID = "3336626";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "91.1052 65.9514 319.739";rotation = "0.684637 -0.250091 0.684636 208.082";scale = "0.125 0.166666 211";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "130.168 30.3997 319.999";rotation = "0.939294 -0.343113 8.10155e-07 180";scale = "194.535 6.99436 0.872";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "88.5658 62.8447 319.748";rotation = "0.684637 -0.250091 0.684636 208.082";scale = "0.125 0.166666 210.878";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "131.274 31.7596 314.739";rotation = "0.388461 -0.835582 -0.388459 100.237";scale = "17.5275 210.998 0.872";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedWoodSpine";position = "128.711 28.6726 314.748";rotation = "0.388461 -0.835582 -0.388459 100.237";scale = "17.5256 210.878 0.872";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.178 1.81709 309.74";rotation = "0.835585 0.388458 -0.388457 100.237";scale = "0.125 0.166666 200";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "127.836 32.3614 309.499";rotation = "1.33608e-05 6.50502e-06 -1 49.8668";scale = "0.877998 33.1778 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.592 -1.25027 309.75";rotation = "0.835585 0.388458 -0.388457 100.237";scale = "0.125 0.166666 200";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.1987 73.5669 319.666";rotation = "-0.388458 0.835584 -0.388458 100.237";scale = "0.125 0.166666 19.0002";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "88.5358 63.1969 319.749";rotation = "0.671744 0.312288 0.671741 145.314";scale = "0.125 0.166666 7.02428";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.3598 73.758 309.989";rotation = "0 0 -1 49.8669";scale = "0.125 0.166666 20";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "94.3281 69.7741 314.703";rotation = "-0.31229 0.671741 0.671743 145.314";scale = "2.37502 3.14232 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "90.9141 66.1125 309.989";rotation = "0 0 1 220.133";scale = "0.125 0.166666 20";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.1045 55.6628 319.749";rotation = "0.671743 0.31229 0.671741 145.314";scale = "0.125 0.166666 18.8113";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "88.3747 63.0058 309.999";rotation = "0 0 1 220.133";scale = "0.125 0.166666 20";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "91.0753 66.3036 309.739";rotation = "0.250086 0.68464 0.684635 208.082";scale = "0.125 0.166666 20";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "85.3734 59.058 314.749";rotation = "-0.312285 0.671742 0.671745 145.314";scale = "2.35142 3.16666 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "88.4893 63.2362 309.749";rotation = "0.250086 0.68464 0.684635 208.082";scale = "0.125 0.166666 7.02398";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.9434 55.4717 309.999";rotation = "0 0 1 130.133";scale = "0.125 0.166666 20";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "88.167 62.8539 309.749";rotation = "-0.250091 -0.684633 0.68464 208.082";scale = "0.125 0.166666 20";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "66.9689 99.3794 319.739";rotation = "0.684637 -0.250091 0.684636 208.082";scale = "0.125 0.166666 79";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "74.3839 77.4866 319.489";rotation = "2.89391e-06 -4.14809e-06 1 130.133";scale = "5.85437 13.187 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "82.2299 86.8403 314.739";rotation = "-0.388456 0.835587 -0.388453 100.237";scale = "2.375 13.1666 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "97.1687 73.9191 309.739";rotation = "0.835584 0.388457 -0.388458 100.237";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.7523 55.6328 319.749";rotation = "0.324539 0.888453 0.324538 96.7611";scale = "0.125 0.166666 78.6666";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "74.3301 77.4701 309.989";rotation = "0.939295 -0.343111 -4.09361e-06 180";scale = "9.87502 7.83736 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "66.8163 68.4281 314.749";rotation = "-0.888452 0.324539 0.324543 96.7612";scale = "9.83333 3.16666 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "81.6914 55.5607 309.749";rotation = "-0.312288 0.671749 0.671736 145.314";scale = "0.125 0.166666 80";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "66.6167 99.3494 319.739";rotation = "-0.388457 0.835585 -0.388457 100.237";scale = "0.125 0.166666 47.0242";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "66.7778 99.5405 309.989";rotation = "0 0 1 220.133";scale = "0.125 0.166666 20";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "58.9755 90.4149 314.739";rotation = "-0.835586 -0.388457 -0.388455 100.236";scale = "5.87803 3.16666 1";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "66.6167 99.3494 309.739";rotation = "-0.250088 -0.684635 0.684639 208.082";scale = "0.125 0.166666 47.0242";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "51.428 81.0746 309.998";rotation = "0 0 1 220.133";scale = "0.125 0.166666 20";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "193.906 1.81292 109";rotation = "0 0 -1 34.7111";scale = "1 1 1";team = "1";ownerGUID = "3336626";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "StationInventory";position = "203.915 2.3013 109";rotation = "0 0 1 180.16";scale = "1 1 1";team = "1";ownerGUID = "3336626";deployed = "1";powerFreq = "1";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "TelePadDeployedBase";position = "197.106 6.37551 109.4";rotation = "0.98057 0.19617 2.48664e-07 180";scale = "1 1 1";team = "1";ownerGUID = "3336626";deployed = "1";powerFreq = "1";frequency = "1";teleMode = "0";};setTargetSensorGroup(%building.getTarget(),1);addToDeployGroup(%building);checkPowerObject(%building);%beam = new StaticShape() {datablock = "TelePadBeam";position = "197.106 6.37551 109.4";rotation = "-1.27978e-05 3.5461e-12 -1 22.6261";scale = "1 1 0.4";};%building.beam = %beam;%beam.playThread(0,"ambient");%beam.setThreadDir(0,true);%beam.flashThreadDir = true;setTargetName(%building.target,addTaggedString("Frequency" SPC %building.frequency)); +%building = new (StaticShape) () {datablock = "DeployedFloor";position = "195.69 -3.21 107.5";rotation = "-0 -0 1 102.585";scale = "10 13.3333 3";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.45 12.4243 107.75";rotation = "0.988058 -0.108954 0.108953 90.6883";scale = "0.125 0.166666 12";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.757 18.2801 106.372";rotation = "0.530206 -0.661633 -0.53021 113.02";scale = "0.125 0.166666 12";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.064 24.1359 105.816";rotation = "0.530206 -0.661633 -0.53021 113.02";scale = "0.125 0.166666 12";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "217.41 12.0168 107.5";rotation = "-0.625343 0.78035 9.89164e-07 180";scale = "0.125 0.166666 15";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "218.703 18.0361 107.5";rotation = "0.780351 0.625342 7.92678e-07 180";scale = "0.125 0.166666 15";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.358 29.9348 105.094";rotation = "0.530206 -0.661633 -0.53021 113.02";scale = "0.125 0.166666 12";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "220.01 23.8919 106.122";rotation = "0.780351 0.625342 7.92678e-07 180";scale = "0.125 0.166666 12.244";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "221.304 29.6908 105.566";rotation = "0.780351 0.625342 7.92678e-07 180";scale = "0.125 0.166666 11.132";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "222.635 35.657 104.362";rotation = "0.530206 -0.661633 -0.53021 113.02";scale = "0.125 0.166666 12";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "222.581 35.413 104.844";rotation = "0.780351 0.625342 7.92678e-07 180";scale = "0.125 0.166666 9.688";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.942 41.5128 103.716";rotation = "0.530206 -0.661633 -0.53021 113.02";scale = "0.125 0.166666 12";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "223.888 41.2688 104.112";rotation = "0.780351 0.625342 7.92678e-07 180";scale = "0.125 0.166666 8.224";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.174 47.0306 103.466";rotation = "0.780351 0.625342 7.92678e-07 180";scale = "0.125 0.166666 6.932";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "225.228 47.2746 102.549";rotation = "0.530206 -0.661633 -0.53021 113.02";scale = "0.125 0.166666 12";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "226.47 52.8376 102.299";rotation = "0.780351 0.625342 7.92678e-07 180";scale = "0.125 0.166666 4.598";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "226.524 53.0816 101.623";rotation = "0.530206 -0.661633 -0.53021 113.02";scale = "0.125 0.166666 9.01298";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "227.555 57.0943 100";rotation = "0 0 -1 27.658";scale = "0.125 0.166666 2.746";team = "1";ownerGUID = "3336626";needsfit = "1";grounded = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "227.439 57.3157 100.96";rotation = "0.459672 0.759873 0.459668 105.539";scale = "0.125 0.166666 12";team = "1";ownerGUID = "3336626";needsfit = "1";powerFreq = "1";};addToDeployGroup(%building);checkPowerObject(%building); \ No newline at end of file diff --git a/Univ/Data/3336626/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3336626/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..1bd7af8 --- /dev/null +++ b/Univ/Data/3336626/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,117 @@ +//Ranks & Settings File For GUID 3336626 / Name: Mainframe--- +//Created On 2011-03-15, Total Warfare Mod 2 3.6 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3336626) { + + new ScriptObject(TWM2Client_3336626) { + + noMoreEXPba937bb0ce80fc1d9d269b739df9ba36963f59ef = "0"; + xpGainc9b1c8e149a084575e67d1204b521967027eeac5 = "861344"; + challengeCompleteLRog1 = "1"; + CGCalls = "0"; + bossDefeatCountYvex = "2"; + weaponKillsMp26CMDOImage = "25"; + challengeCompleteS3RifleImage_1 = "1"; + weaponKillsMRXXImage = "6"; + noMoreEXP0f9225c945c00190a8d2c619e62f8700b9444d21 = "0"; + noMoreEXP12450b8e5194422786c5c4fe37d7568f39290898 = "0"; + hasMedalTheNewGeneral = "1"; + challengeCompleteMilestone25 = "1"; + HarrierCalls = "0"; + xpGain8ef7f28db8a7ff3196ad40b78d982f15117c9015 = "560444"; + bossDefeatCountGhostOfLightning = "1"; + hasMedalInsigniaDefeated = "1"; + noMoreEXPc99f0f968381c3efca4ec770550d3b9fa369c4e9 = "0"; + challengeCompleteArmyOf50Stopped = "1"; + rank = "Commander"; + HWCalls = "0"; + UAVCalls = "0"; + bossDefeatCountTrebor = "2"; + name = "Mainframe---"; + noMoreEXP0ac238afdd346e7b2e22a669d608862c217b87af = "0"; + challengeCompleteTreb1 = "1"; + ZBCalls = "0"; + officer = "0"; + hasMedalHonorsB = "1"; + noMoreEXPc9b1c8e149a084575e67d1204b521967027eeac5 = "0"; + xpGain1c97952230da7e336c4f52ada01d327642bb2bf9 = "70"; + noMoreEXP32e62694dd31776e24f357b4acc4e988e3e000d3 = "0"; + weaponKillsMiniColliderCannonImage = "24"; + money = "2.58988e+06"; + bossDefeatCountInsignia = "1"; + xpGainede11104d231d7649917ff6289def0f9287e6902 = "19908"; + noMoreEXPc8d602f0119c3e057f98db8a525ca495492398b4 = "0"; + weaponKillsLD06SavagerImage = "2"; + hasMedalLordraniussFall = "1"; + millionxp = "2"; + noMoreEXP1c97952230da7e336c4f52ada01d327642bb2bf9 = "0"; + SlthAirstrikeCalls = "0"; + GMCalls = "3"; + noMoreEXP1039f9bee04ef0fe706e8b49159ab9825bd08d7f = "0"; + weaponKillsPulsePhaserImage = "42"; + NukeCalls = "0"; + weaponKillsR700SniperRifleImage = "2"; + hasMedalHonorsC = "1"; + xpGain8fe73260320a28b967b224838a8d18e8b114b893 = "10104"; + noMoreEXP60139aabd4a586f03d899468251279e30e94c23e = "0"; + hasMedalSrysly = "1"; + xp = "766924"; + noMoreEXP8ef7f28db8a7ff3196ad40b78d982f15117c9015 = "0"; + weaponKillsRP432Image = "13"; + weaponKillsG17SniperRifleImage = "9"; + bossDefeatCountLordRog = "2"; + noMoreEXP61dc1bca329e4d265ee03f78391f8fd83d969dd4 = "0"; + weaponKillsWp400Image = "30"; + weaponKillsS3RifleImage = "85"; + HeliCalls = "0"; + noMoreEXP8fe73260320a28b967b224838a8d18e8b114b893 = "0"; + xpGain0f9225c945c00190a8d2c619e62f8700b9444d21 = "13040"; + xpGain61dc1bca329e4d265ee03f78391f8fd83d969dd4 = "1.11678e+06"; + gameTime = "3397"; + hasMedalRevengeAvoidedAgain = "1"; + challengeComplete15For15 = "1"; + SatNukeCalls = "2"; + ArtyCalls = "0"; + bossDefeatCountVengenor = "3"; + hasMedalThundaStruk = "1"; + noMoreEXP49106f22de9d150fbd5606af00eb16405f8f8184 = "0"; + weaponKillsMiniChaingunImage = "5"; + GunHeliCalls = "0"; + rankNumber = "60"; + hasMedalTheUltimateHeadshot = "1"; + noMoreEXPbfd3af5ac87c8ba425473a98c935ec3a04b4aa41 = "0"; + weaponKillsSuperChaingunImage = "269"; + weaponKillspistolImage = "13"; + xpGainba937bb0ce80fc1d9d269b739df9ba36963f59ef = "3792"; + weaponKillsDiscImage = "12"; + xpGain0ac238afdd346e7b2e22a669d608862c217b87af = "4116"; + hasMedalHonorsA = "1"; + AirstrikeCalls = "6"; + noMoreEXPede11104d231d7649917ff6289def0f9287e6902 = "0"; + phrase = "None Set"; + hasMedalGamerExcuisite = "1"; + }; + new ScriptObject(ClientSettings3336626) { + + savedstreak1 = "1"; + savedstreak3 = "4"; + savedperk1 = "AP Bullets"; + savedperk3 = "Clip Boxes"; + savedperk2 = "Head Guard"; + savedstreak2 = "2"; + }; + new ScriptObject(ClientStore3336626) { + + nextSlot = "0"; + nextLoto = "0"; + }; + new ScriptObject(CCD_3336626) { + + expireDate = "20120131"; + }; + new ScriptObject(CCD_3336626) { + + expireDate = "20140228"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/3392146/Ranks/Powers/Saved.Dat b/Univ/Data/3392146/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..ca4f79e --- /dev/null +++ b/Univ/Data/3392146/Ranks/Powers/Saved.Dat @@ -0,0 +1,17 @@ +$PowerSave::Level[3392146, 1] = 17; +$PowerSave::SpendPoints[3392146, 1] = 7; +$PowerSave::EXP[3392146, 1] = 4750; +$PowerSave::TopPlPosition[3392146, 1] = 1; +$PowerSave::Class[3392146, 1] = "Demon"; +$PowerSave::HasPower[3392146, 1, "FireBolt"] = 1; +$PowerSave::HasPower[3392146, 1, "EnergyBall1"] = 1; +$PowerSave::HasPower[3392146, 1, "FireBall1"] = 1; +$PowerSave::HasPower[3392146, 1, "BasicShock"] = 1; +$PowerSave::HasPower[3392146, 1, "EnergyDrainer"] = 1; +$PowerSave::Level[3392146, 2] = 1; +$PowerSave::SpendPoints[3392146, 2] = 0; +$PowerSave::EXP[3392146, 2] = 3; +$PowerSave::TopPlPosition[3392146, 2] = 1; +$PowerSave::Class[3392146, 2] = "Phantom"; +$PowerSave::HasPower[3392146, 2, "ShadowStrike"] = 1; +$PowerSave::HasPower[3392146, 1, "FireBall3"] = 1; \ No newline at end of file diff --git a/Univ/Data/3392146/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3392146/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..482e20b --- /dev/null +++ b/Univ/Data/3392146/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,139 @@ +//Ranks & Settings File For GUID 3392146 / Name: Animitation +//Created On 2011-06-22, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3392146) { + + new ScriptObject(TWM2Client_3392146) { + + xpGainb4b3b9bbb32de394f880cda62002aeb900c8e5f4 = "50934"; + xpGaindc639ae21874998a6e776e35d984558db2913f29 = "7446"; + weaponKillsPulseSMGImage = "3"; + NukeCalls = "0"; + noMoreEXP5fee0414a8d60335286629d7cd63255d472cda63 = "0"; + challengeCompletem93Image_3 = "1"; + noMoreEXPfa8db70e7f35c186327d98c2421d66a498b44bd6 = "0"; + noMoreEXP769f4d9d42aded83ce2518083610d5e5be9279c8 = "0"; + xpGain05fd5809259065bb6c5118b76aad3b24949c6dd3 = "14358"; + challengeCompletem93Image_2 = "1"; + noMoreEXPcf2c9dddda893c59031ef5ce5e5a8fff24281047 = "0"; + xpGain7b9b342e269d42c32cc36aa922ffa635971f26c6 = "200932"; + xp = "269458"; + xpGain88dfe234cf9bcb0f0b20f3c8b9ecd21aec9b2345 = "120"; + xpGainc709bed61d79462c4b5dbb6925539e9605f5832f = "2848"; + weaponKillsm93Image = "317"; + challengeCompleteMilestone25 = "1"; + noMoreEXP337bec3f1f831ddb8126d3e52f11698c5d168f67 = "0"; + noMoreEXP24a5f5898db61153fd1ae9ccb7f3dd2b0429ed46 = "0"; + noMoreEXPb47efe2379f1336e87dd71f87643bb12f14c6659 = "0"; + HeliCalls = "21"; + noMoreEXPf1b293c1d875dffcabcc1865ea74c06bd525614a = "0"; + name = "Animitation"; + noMoreEXPb4b3b9bbb32de394f880cda62002aeb900c8e5f4 = "0"; + bossDefeatCountGhostOfFire = "1"; + rankNumber = "54"; + gameTime = "20393"; + ArtyCalls = "0"; + hasMedalHonorsA = "1"; + noMoreEXP614508913f1350047f2036932b7b3febfa64320a = "0"; + noMoreEXPa434f8ec3f83ddad58d113e12223bf37481a2472 = "0"; + weaponKillsPulsePhaserImage = "514"; + noMoreEXP103e66039034f730769ef68347814cb14b19b24b = "0"; + NapalmHarrierCalls = "3"; + noMoreEXPdc7b9d125155cc301183ae093f3bfe9b8cc3a597 = "0"; + hasMedalInsigniaDefeated = "1"; + GunHeliCalls = "0"; + noMoreEXPe757d19354f8a1053d193a6261ad4617887c42fe = "0"; + noMoreEXP4d6541ad0d9b0d724d44a4da00f64be0f39ae07c = "0"; + challengeComplete3For5Sabo = "1"; + hasMedalRevengeAvoidedAgain = "1"; + noMoreEXP1129ddfb616f0cc506c8d30e305f9827645c1295 = "0"; + xpGaindc7b9d125155cc301183ae093f3bfe9b8cc3a597 = "15648"; + xpGain337bec3f1f831ddb8126d3e52f11698c5d168f67 = "984"; + noMoreEXPd9bb23d3e03df1cafd103245ce13b400611f264b = "0"; + noMoreEXPba128552ac345bae3a977f3de9cb3feddca537b3 = "0"; + noMoreEXPb1fd600680666b8dc4172c96cd10d65fa29106ac = "0"; + noMoreEXPbc92bde0fa78008460571f8238edd60056307e7b = "0"; + AirstrikeCalls = "28"; + noMoreEXPdc639ae21874998a6e776e35d984558db2913f29 = "0"; + noMoreEXP3f728f31cd3c15f23ee0f30d832c2c46b47e9a06 = "0"; + challengeCompletePulsePhaserImage_1 = "1"; + hasMedalHonorsB = "1"; + noMoreEXPd85dcaef9413c53e7bd62d650a982b31413801b2 = "0"; + phrase = "Insanity wins."; + challengeCompletePulsePhaserImage_4 = "1"; + noMoreEXP88dfe234cf9bcb0f0b20f3c8b9ecd21aec9b2345 = "0"; + noMoreEXP56b8f856bcccc3c7bf6dda8db6c8020de1220d7a = "0"; + CGCalls = "0"; + xpGain232efdff56b108c368cbe587f5fd4eac010b95f4 = "7758"; + challengeCompleteAcceptance = "1"; + bossDefeatCountLordRog = "1"; + noMoreEXP7b9b342e269d42c32cc36aa922ffa635971f26c6 = "0"; + noMoreEXPc709bed61d79462c4b5dbb6925539e9605f5832f = "0"; + noMoreEXPfa7b60f70e0bdb4f70083644e52bb33ce78820eb = "0"; + xpGain56b8f856bcccc3c7bf6dda8db6c8020de1220d7a = "356076"; + xpGainb47efe2379f1336e87dd71f87643bb12f14c6659 = "2184"; + noMoreEXP11a735ced5bdeea30f9f7fea896b285185029d99 = "0"; + HarrierCalls = "0"; + hasMedalMySky = "1"; + hasMedalHonorsC = "1"; + weaponKillsrapierShieldImage = "1"; + hasMedalGamerExcuisite = "1"; + noMoreEXP35f136884b65ba778bbcfa4ccd59bcefc1cf8258 = "0"; + weaponKillsSuperChaingunImage = "714"; + weaponKillsS3RifleImage = "8"; + officer = "5"; + bossDefeatCountInsignia = "1"; + noMoreEXP4ab044aba12120725c31fc423e983af15f0e9c2e = "0"; + rank = "Master General"; + challengeCompletePulsePhaserImage_2 = "1"; + xpGain4ab044aba12120725c31fc423e983af15f0e9c2e = "172"; + noMoreEXP93100e78a63d34f669ae1e90809d76e5cf5067a4 = "0"; + xpGain5fee0414a8d60335286629d7cd63255d472cda63 = "4024"; + UAVCalls = "9"; + HWCalls = "0"; + challengeCompletem93Image_4 = "1"; + hasMedalExpertSurvivor = "1"; + noMoreEXP232efdff56b108c368cbe587f5fd4eac010b95f4 = "0"; + weaponKillsM1SniperRifleImage = "9"; + noMoreEXPbd48c846517b4b75dc7cd1d86c0fafe33e62e6cb = "0"; + noMoreEXP2e05d1d1d2224290c739678bfbccdc90222cb405 = "0"; + ZBCalls = "0"; + challengeCompleteBombDetonated = "1"; + noMoreEXP9bb36e48ae146ab8e50eee42d43857bc81c3caca = "0"; + noMoreEXP0c8f78516eb5eb8e861c17cc2a17887330cc3d78 = "0"; + noMoreEXP05fd5809259065bb6c5118b76aad3b24949c6dd3 = "0"; + xpGainfa8db70e7f35c186327d98c2421d66a498b44bd6 = "596736"; + noMoreEXP07e0b2857f554d7fb175dae282e985129316b474 = "0"; + challengeCompletePulsePhaserImage_3 = "1"; + challengeComplete15For15 = "1"; + money = "1.40025e+07"; + hasMedalBurningNightmare = "1"; + challengeCompleteAirstrike1 = "1"; + xpGainb1fd600680666b8dc4172c96cd10d65fa29106ac = "7556"; + challengeCompletem93Image_1 = "1"; + noMoreEXP1607678153c617bff98aa1dbfed451779fd5084c = "0"; + SlthAirstrikeCalls = "0"; + GMCalls = "3"; + millionxp = "1"; + noMoreEXPa0655ad1e1b53b9428c8dd7910f46ec0dae117d8 = "0"; + }; + new ScriptObject(CCD_3392146) { + + bossSlayCountVardison2_20120804 = "1"; + ZombieKillCount20120804_0_1 = "1"; + expireDate = "20120831"; + ZombieKillCount20120804__1 = "1"; + totalZombieKillCount20120804 = "1"; + bossSlayCountVardison1_20120804 = "1"; + }; + new ScriptObject(ClientStore3392146) { + + nextSlot = "0"; + nextLoto = "0"; + }; + new ScriptObject(CCD_3392146) { + + expireDate = "20120831"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/3475269/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3475269/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..5aea709 --- /dev/null +++ b/Univ/Data/3475269/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,109 @@ +//Ranks & Settings File For GUID 3475269 / Name: Lileagle45 +//Created On 2011-06-23, Total Warfare Mod 2 3.6 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3475269) { + + new ScriptObject(TWM2Client_3475269) { + + weaponKillsWp400Image = "4"; + weaponKillsSuperChaingunImage = "489"; + bossDefeatCountYvex = "1"; + weaponKillsPg700Image = "1"; + noMoreEXPba937bb0ce80fc1d9d269b739df9ba36963f59ef = "0"; + noMoreEXPdc261c92caf1962d074cfc87463d79f4ad20341d = "0"; + xp = "184592"; + xpGainbdd827761f1ab2ee90be57d19b47d608dd78e2bc = "4256"; + noMoreEXPede11104d231d7649917ff6289def0f9287e6902 = "0"; + weaponKillsMRXXImage = "3"; + millionxp = "0"; + rankNumber = "43"; + xpGain0ac238afdd346e7b2e22a669d608862c217b87af = "21164"; + weaponKillsM1SniperRifleImage = "2"; + noMoreEXP61dc1bca329e4d265ee03f78391f8fd83d969dd4 = "0"; + xpGainede11104d231d7649917ff6289def0f9287e6902 = "44264"; + weaponKillsMp26Image = "2"; + noMoreEXPfbb5b6b4f8e8fb89a7827ea5778aa61bf1d4deba = "0"; + noMoreEXP0ac238afdd346e7b2e22a669d608862c217b87af = "0"; + bossDefeatCountCnlWindshear = "1"; + weaponKillsG17SniperRifleImage = "1"; + gameTime = "1204"; + AirstrikeCalls = "12"; + xpGainfbb5b6b4f8e8fb89a7827ea5778aa61bf1d4deba = "9584"; + hasMedalHonorsB = "1"; + weaponKillsS3RifleImage = "21"; + noMoreEXP8ef7f28db8a7ff3196ad40b78d982f15117c9015 = "0"; + noMoreEXPc9b1c8e149a084575e67d1204b521967027eeac5 = "0"; + weaponKillsMiniChaingunImage = "1"; + hasMedalHonorsA = "1"; + xpGain61dc1bca329e4d265ee03f78391f8fd83d969dd4 = "3676"; + name = "Lileagle45"; + phrase = "None Set"; + officer = "0"; + hasMedalSrysly = "1"; + weaponKillsPulsePhaserImage = "22"; + xpGainc9b1c8e149a084575e67d1204b521967027eeac5 = "43096"; + rank = "Brigadier"; + weaponKillsRP432Image = "2"; + noMoreEXPbdd827761f1ab2ee90be57d19b47d608dd78e2bc = "0"; + hasMedalHarbiend = "1"; + xpGaindc261c92caf1962d074cfc87463d79f4ad20341d = "58552"; + money = "184592"; + }; + new ScriptObject(CCD_3475269) { + + ZombieKillCount20110701_PulsePhaserImage_2 = "2"; + ZombieKillCount20110704__5 = "21"; + ZombieKillCount20110704_AcidCannonImage_6 = "2"; + successiveStreak20110701_1 = "1"; + PlayerKillCount20110701_MRXXImage = "1"; + ZombieKillCount20110701_PulsePhaserImage_1 = "8"; + ZombieKillCount20110702_0_4 = "3"; + totalPlayerKillCount20110701 = "1"; + ZombieKillCount20110704_0_4 = "4"; + ZombieKillCount20110704__6 = "37"; + ZombieKillCount20110702_AcidCannonImage_3 = "2"; + ZombieKillCount20110701_0_2 = "2"; + ZombieKillCount20110702_0_9 = "5"; + totalZombieKillCount20110702 = "24"; + ZombieKillCount20110704_0_10 = "1"; + ZombieKillCount20110702_PulsePhaserImage_5 = "1"; + ZombieKillCount20110701__1 = "33"; + ZombieKillCount20110702__2 = "1"; + ZombieKillCount20110701_MRXXImage_1 = "1"; + ZombieKillCount20110702_AcidCannonImage_2 = "1"; + ZombieKillCount20110702_PulsePhaserImage_3 = "1"; + ZombieKillCount20110704_0_9 = "2"; + ZombieKillCount20110702__9 = "1"; + ZombieKillCount20110702__4 = "1"; + ZombieKillCount20110702__3 = "3"; + ZombieKillCount20110702_PulsePhaserImage_2 = "2"; + ZombieKillCount20110704_0_1 = "5"; + totalZombieKillCount20110704 = "72"; + ZombieKillCount20110704_0_5 = "21"; + ZombieKillCount20110702__5 = "2"; + ZombieKillCount20110702__1 = "2"; + ZombieKillCount20110702_0_3 = "6"; + totalZombieKillCount20110701 = "44"; + ZombieKillCount20110702_0_5 = "4"; + killstreakCalls20110704_2 = "1"; + killstreakCalls20110701_2 = "1"; + ZombieKillCount20110701_0_1 = "42"; + ZombieKillCount20110704__10 = "1"; + ZombieKillCount20110702_PulsePhaserImage_9 = "4"; + ZombieKillCount20110702_0_1 = "2"; + ZombieKillCount20110702_MRXXImage_5 = "1"; + ZombieKillCount20110704__1 = "5"; + ZombieKillCount20110704_0_6 = "39"; + ZombieKillCount20110702_PulsePhaserImage_4 = "2"; + ZombieKillCount20110704__9 = "2"; + expireDate = "20110731"; + ZombieKillCount20110702_0_2 = "4"; + ZombieKillCount20110704__4 = "4"; + }; + new ScriptObject(ClientStore3475269) { + + nextLoto = "0"; + nextSlot = "0"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/3498885/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3498885/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..657928d --- /dev/null +++ b/Univ/Data/3498885/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,64 @@ +//Ranks & Settings File For GUID 3322673 / Name: zachkillsyouall +//Ranks & Settings File For GUID 3498885 / Name: GeEkOfWiReS1097 +//Created On 2011-11-09, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3498885) { + + new ScriptObject(TWM2Client_3498885) { + + AirstrikeCalls = "22"; + weaponKillsG17SniperRifleImage = "5"; + phrase = "None Set"; + CGCalls = "0"; + noMoreEXP44e360d06fb9bc433bfda3a64b4c2a1496c315bb = "0"; + hasMedalHonorsA = "1"; + xpGain43be0ebaf6ea45eb749520ed7c615c00172b92a7 = "9972"; + HarrierCalls = "0"; + rank = "Lieutenant Colonel Grade II"; + rankNumber = "38"; + xpGain8d0fc508615725718e009df09699c012d754ce7b = "42822"; + UAVCalls = "0"; + HWCalls = "0"; + noMoreEXP64b4c8be8f1c0f44fe5fa8ab9b591acf699a735c = "0"; + ZBCalls = "0"; + xpGain4572b1a2de4d331e9f84f96628eaa46971188607 = "582"; + money = "82776"; + noMoreEXPad3e10f8e35ce208284ad9df6080b560151ddba5 = "0"; + noMoreEXP8d0fc508615725718e009df09699c012d754ce7b = "0"; + name = "GeEkOfWiReS1097"; + millionxp = "0"; + GMCalls = "11"; + SlthAirstrikeCalls = "0"; + hasMedalHonorsB = "1"; + NukeCalls = "0"; + noMoreEXP43be0ebaf6ea45eb749520ed7c615c00172b92a7 = "0"; + noMoreEXP4572b1a2de4d331e9f84f96628eaa46971188607 = "0"; + xp = "82776"; + HeliCalls = "15"; + officer = "0"; + NapalmHarrierCalls = "1"; + gameTime = "1069"; + xpGain0eb529f6a90c7ec5b9c1dbe52ded5285d5aee89c = "23576"; + ArtyCalls = "1"; + hasMedalAGreatCommando = "1"; + GunHeliCalls = "0"; + xpGainad3e10f8e35ce208284ad9df6080b560151ddba5 = "5824"; + noMoreEXP0eb529f6a90c7ec5b9c1dbe52ded5285d5aee89c = "0"; + }; + new ScriptObject(CCD_3498885) { + + killstreakCalls20140216_2 = "1"; + totalZombieKillCount20140216 = "38"; + ZombieKillCount20140216__1 = "4"; + ZombieKillCount20140216_S3RifleImage_1 = "8"; + ZombieKillCount20140216_PulsePhaserImage_1 = "26"; + ZombieKillCount20140216_0_1 = "38"; + expireDate = "20140228"; + }; + new ScriptObject(ClientStore3498885) { + + nextSlot = "0"; + nextLoto = "0"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/3569784/Ranks/Powers/Saved.Dat b/Univ/Data/3569784/Ranks/Powers/Saved.Dat new file mode 100644 index 0000000..2eb1a89 --- /dev/null +++ b/Univ/Data/3569784/Ranks/Powers/Saved.Dat @@ -0,0 +1,7 @@ +$PowerSave::Level[3569784, 1] = 5; +$PowerSave::SpendPoints[3569784, 1] = 1; +$PowerSave::EXP[3569784, 1] = 126; +$PowerSave::TopPlPosition[3569784, 1] = 1; +$PowerSave::Class[3569784, 1] = "Witch"; +$PowerSave::HasPower[3569784, 1, "LightStrike"] = 1; +$PowerSave::HasPower[3569784, 1, "Dispell"] = 1; \ No newline at end of file diff --git a/Univ/Data/3569784/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3569784/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..3d8f8ca --- /dev/null +++ b/Univ/Data/3569784/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,155 @@ +//Ranks & Settings File For GUID 2000343 / Name: Phantom139 +//Ranks & Settings File For GUID 3569784 / Name: Cheeseman +//Created On 2011-09-14, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3569784) { + + new ScriptObject(TWM2Client_3569784) { + + xpGain5f1188775495558a565f7bda1a812d8c6fe6da41 = "1.06311e+06"; + NukeCalls = "20"; + xpGainaf662d077a2c8fc44786f68fdd5c1479b195a3cc = "14"; + weaponKillsPulsePhaserImage = "19"; + hasMedalSkyFront = "1"; + noMoreEXP24a5f5898db61153fd1ae9ccb7f3dd2b0429ed46 = "0"; + challengeCompleteNuke2 = "1"; + challengeCompleteTreb1 = "1"; + xpGain3371fd8fb5a4263eb0b693e3683150b8177f57f0 = "498556"; + hasMedalHonorsB = "1"; + xpGaine8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "246030"; + xpGain20721f5a2c9680e330b67d62bac22b18f43f273c = "503844"; + xpGain24a5f5898db61153fd1ae9ccb7f3dd2b0429ed46 = "48"; + challengeCompleteVard3 = "1"; + weaponKillsNapalmImage = "9"; + noMoreEXPc3ac0c579876ef5c463086e09c3dc237df9ce8b0 = "0"; + xpGain7157524394b5b23795f12ae582a4859a543a7db9 = "418464"; + NapalmHarrierCalls = "1"; + noMoreEXPe5bd4d1481c47eaa816988d443cfa217b1685764 = "0"; + GMCalls = "0"; + hasMedalTheNewGeneral = "1"; + xp = "919634"; + weaponKillsJavelinImage = "1"; + hasMedalNuclearDawn = "1"; + challengeCompleteZoneCapture = "1"; + challengeCompleteABC = "1"; + noMoreEXP0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "0"; + hasMedalBurningNightmare = "1"; + millionxp = "5"; + weaponKillsG17SniperRifleImage = "1"; + challengeCompleteLRog1 = "1"; + name = "Cheeseman"; + weaponKillsMRXXImage = "11"; + weaponKillsALSWPSniperRifleImage = "1"; + challengeCompleteMatchSet = "1"; + UAVCalls = "4"; + ZBCalls = "1"; + weaponKillsSA2400Image = "33"; + EMPCalls = "3"; + weaponKillsflamerImage = "47"; + officer = "0"; + hasMedalGamerExcuisite = "1"; + money = "5.71264e+06"; + bossDefeatCountStormrider = "2"; + hasMedalSrysly = "1"; + HarrierCalls = "0"; + HWCalls = "0"; + hasMedalHonorsC = "1"; + xpGain721fe14a28612ef62ec71af4fef3996e0c811647 = "385230"; + challengeCompleteFission1 = "1"; + xpGain2133a288a74c089b4f8ec5d7a85eae04149afeaf = "380400"; + challengeCompleteGOL1 = "1"; + bossDefeatCountGhostOfFire = "3"; + bossDefeatCountInsignia = "2"; + hasMedalLordraniussFall = "1"; + bossDefeatCountGhostOfLightning = "4"; + challengeCompleteFission3 = "1"; + challengeCompleteFission2 = "1"; + noMoreEXPbc39284a1aa14327b7c30710854ab02d70934cb4 = "0"; + challengeCompleteVard2 = "1"; + challengeCompleteVard1 = "1"; + xpGain5810ab261901bdc66797a7083e12622e3ab85fe7 = "168000"; + challengeCompleteLRog2 = "1"; + noMoreEXP7157524394b5b23795f12ae582a4859a543a7db9 = "0"; + challengeCompleteGunHeli3 = "1"; + rank = "Master Commander"; + challengeCompleteWaveDefeater = "1"; + hasMedalThundaStruk = "1"; + noMoreEXP0c8f78516eb5eb8e861c17cc2a17887330cc3d78 = "0"; + CGCalls = "2"; + weaponKillsSCD343Image = "1"; + hasMedalRevengeAvoidedAgain = "1"; + hasMedalInsigniaDefeated = "1"; + AirstrikeCalls = "6"; + bossDefeatCountShadeLord = "4"; + challengeCompleteGunHeli2 = "1"; + challengeCompleteTreb2 = "1"; + xpGainbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "288"; + noMoreEXP5f1188775495558a565f7bda1a812d8c6fe6da41 = "0"; + SatNukeCalls = "1"; + ACCalls = "2"; + challengeCompleteGunHeli1 = "1"; + noMoreEXP20721f5a2c9680e330b67d62bac22b18f43f273c = "0"; + GunHeliCalls = "110"; + noMoreEXP5810ab261901bdc66797a7083e12622e3ab85fe7 = "0"; + challengeComplete3For5 = "1"; + phrase = "None Set"; + bossDefeatCountTrebor = "6"; + weaponKillsMiniColliderCannonImage = "3"; + weaponKillsSuperChaingunImage = "654"; + weaponKillsMG42Image = "8"; + challengeCompleteIns1 = "1"; + noMoreEXP2133a288a74c089b4f8ec5d7a85eae04149afeaf = "0"; + xpGaine5bd4d1481c47eaa816988d443cfa217b1685764 = "1.13287e+06"; + hasMedalHarbiend = "1"; + ArtyCalls = "1"; + challengeCompleteEpicFailure = "1"; + noMoreEXPaf662d077a2c8fc44786f68fdd5c1479b195a3cc = "0"; + bossDefeatCountYvex = "2"; + HindCalls = "2"; + noMoreEXPd19410caba8981d853e95f180aee12d56c1d76e6 = "0"; + noMoreEXPbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "0"; + bossDefeatCountVardison3 = "6"; + hasMedalTheLight = "1"; + noMoreEXP3371fd8fb5a4263eb0b693e3683150b8177f57f0 = "0"; + noMoreEXP680e7deda563526e500f58036b6375a82134c2b0 = "0"; + rankNumber = "61"; + xpGaind19410caba8981d853e95f180aee12d56c1d76e6 = "6060"; + xpGain0acf1e7c29cf0d7a46aa6c098fef9f65ecee36ee = "173586"; + hasMedalTheSourceOfAllEvil = "1"; + HeliCalls = "5"; + FissionCalls = "10"; + weaponKillsRPGImage = "2"; + noMoreEXP721fe14a28612ef62ec71af4fef3996e0c811647 = "0"; + bossDefeatCountLordRog = "5"; + bossDefeatCountCnlWindshear = "1"; + xpGainc3ac0c579876ef5c463086e09c3dc237df9ce8b0 = "659780"; + weaponKillsMiniChaingunImage = "1"; + noMoreEXPe8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "0"; + xpGain680e7deda563526e500f58036b6375a82134c2b0 = "75000"; + challengeCompleteNuke1 = "1"; + bossDefeatCountVengenor = "1"; + gameTime = "1910"; + xpGain0c8f78516eb5eb8e861c17cc2a17887330cc3d78 = "144"; + challengeCompleteFromTheTop = "1"; + SlthAirstrikeCalls = "2"; + challengeCompleteGroupBuster = "1"; + hasMedalAboutDamnTime = "1"; + weaponKillsM4A1Image = "9"; + }; + new ScriptObject(CCD_3569784) { + + expireDate = "20120229"; + }; + new ScriptObject(ClientStore3569784) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(CCD_3569784) { + + expireDate = "20120229"; + totalPlayerKillCount20120210 = "2"; + PlayerKillCount20120210_Wp400Image = "1"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/3584821/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3584821/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..023e320 --- /dev/null +++ b/Univ/Data/3584821/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,45 @@ +//Ranks & Settings File For GUID 3584821 / Name: roach45636 +//Created On 2011-09-19, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3584821) { + + new ScriptObject(TWM2Client_3584821) { + + hasMedalTheUltimateHeadshot = "1"; + money = "350040"; + weaponKillsWp400Image = "2"; + noMoreEXP8ee84d4400fdb15487f29f332777c6fb40cbdb93 = "0"; + millionxp = "0"; + officer = "0"; + weaponKillspistolImage = "1"; + name = "roach45636"; + xp = "350040"; + weaponKillsR700SniperRifleImage = "3"; + noMoreEXPa0655ad1e1b53b9428c8dd7910f46ec0dae117d8 = "0"; + xpGainb1060db2b42a2ee310834657d37cdd12a3c641f4 = "265056"; + gameTime = "120"; + noMoreEXPf1b293c1d875dffcabcc1865ea74c06bd525614a = "0"; + rankNumber = "47"; + hasMedalHonorsB = "1"; + weaponKillslasergunImage = "4"; + weaponKillsS3RifleImage = "27"; + weaponKillsMissileLauncherImage = "1"; + hasMedalHonorsA = "1"; + rank = "Brigadier General I"; + hasMedalHonorsC = "1"; + xpGain8ee84d4400fdb15487f29f332777c6fb40cbdb93 = "84984"; + noMoreEXPb1060db2b42a2ee310834657d37cdd12a3c641f4 = "0"; + weaponKillsspikerImage = "2"; + ZBCalls = "2"; + }; + new ScriptObject(ClientStore3584821) { + + nextSlot = "0"; + nextLoto = "0"; + }; + new ScriptObject(CCD_3584821) { + + expireDate = "20120331"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/3632676/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3632676/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..4437514 --- /dev/null +++ b/Univ/Data/3632676/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,170 @@ +//Ranks & Settings File For GUID 3632676 / Name: Bloodshreder +//Created On 2011-11-10, Total Warfare Mod 2 3.7 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3632676) { + + new ScriptObject(TWM2Client_3632676) { + + ZBCalls = "0"; + weaponKillsRPGImage = "4"; + hasMedalBurningNightmare = "1"; + challengeCompleteModel1887Image_1 = "1"; + noMoreEXPeeb6c2be70a59f303f0728bbe542e6b394262d7e = "0"; + weaponKillsMp26Image = "1"; + challengeCompleteS3RifleImage_1 = "1"; + rankNumber = "60"; + challengeCompleteGroupBuster = "1"; + GMCalls = "2"; + SlthAirstrikeCalls = "0"; + SatNukeCalls = "4"; + rank = "Commander"; + hasMedalHarbiend = "1"; + name = "Bloodshreder"; + NukeCalls = "0"; + bossDefeatCountYvex = "1"; + weaponKillspistolImage = "12"; + noMoreEXPf6f045c371147768a1944f1b771a0256db259806 = "0"; + bossDefeatCountGhostOfFire = "1"; + weaponKillsS3RifleImage = "70"; + challengeCompleteModel1887Image_2 = "1"; + noMoreEXPe8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "0"; + weaponKillsPulsePhaserImage = "41"; + weaponKillsM1SniperRifleImage = "242"; + hasMedalGamerExcuisite = "1"; + challengeCompleteDeagleImage_2 = "1"; + bossDefeatCountInsignia = "1"; + weaponKillsNapalmImage = "3"; + HeliCalls = "5"; + challengeCompleteM1SniperRifleImage_1 = "1"; + weaponKillsS3SRifleImage = "4"; + hasMedalAGreatCommando = "1"; + money = "2.25008e+06"; + xpGain9d7a38ce97bd188d84124e78647e97cb64a096f6 = "296880"; + xpGainf6f045c371147768a1944f1b771a0256db259806 = "1032"; + millionxp = "2"; + challengeCompleteM1SniperRifleImage_2 = "1"; + vehicleKillsScoutFlyer = "2"; + bossDefeatCountShadeLord = "1"; + hasMedalHonorsC = "1"; + challengeCompleteVard1 = "1"; + ArtyCalls = "3"; + challengeCompleteDownBoy = "1"; + noMoreEXP9d7a38ce97bd188d84124e78647e97cb64a096f6 = "0"; + hasMedalInsigniaDefeated = "1"; + weaponKillsLD06SavagerImage = "11"; + noMoreEXP5f1188775495558a565f7bda1a812d8c6fe6da41 = "0"; + weaponKillsModel1887Image = "157"; + weaponKillslasergunImage = "24"; + GunHeliCalls = "4"; + NapalmHarrierCalls = "5"; + xp = "806508"; + xpGaineeb6c2be70a59f303f0728bbe542e6b394262d7e = "207252"; + hasMedalSrysly = "1"; + weaponKillsJavelinImage = "1"; + challengeCompleteMilestone25 = "1"; + AirstrikeCalls = "10"; + challengeCompleteTreb1 = "1"; + hasMedalLordraniussFall = "1"; + xpGaine8f4aaf1f8d465c5d336e38587aae9bf6e3c06ba = "1.12989e+06"; + officer = "2"; + weaponKillsM1700Image = "1"; + weaponKillsDeagleImage = "84"; + gameTime = "4549"; + hasMedalThundaStruk = "1"; + bossDefeatCountTrebor = "2"; + bossDefeatCountVardison3 = "2"; + CGCalls = "0"; + challengeComplete15For15 = "1"; + xpGain5f1188775495558a565f7bda1a812d8c6fe6da41 = "1.00543e+06"; + challengeCompleteLifeGiver = "1"; + challengeCompleteOneK = "1"; + HarrierCalls = "0"; + hasMedalTheSourceOfAllEvil = "1"; + challengeCompleteDEagleImage_1 = "1"; + hasMedalTheLight = "1"; + hasMedalTheUltimateHeadshot = "1"; + bossDefeatCountCnlWindshear = "2"; + weaponKillsPulseRifleImage = "55"; + UAVCalls = "0"; + HWCalls = "0"; + bossDefeatCountGhostOfLightning = "1"; + phrase = "None Set"; + }; + new ScriptObject(CCD_3632676) { + + ZombieKillCount20111212_PulsePhaserImage_14 = "5"; + expireDate = "20111231"; + ZombieKillCount20111212_0_1 = "18"; + ZombieKillCount20111213_0_1 = "10"; + ZombieKillCount20111211_M1SniperRifleImage_15 = "1"; + ZombieKillCount20111211_S3SRifleImage_1 = "3"; + ZombieKillCount20111213__1 = "4"; + zombieHeadshots20111211 = "4"; + ZombieKillCount20111212_PulsePhaserImage_1 = "6"; + ZombieKillCount20111212_DeagleImage_1 = "1"; + totalZombieKillCount20111212 = "23"; + ZombieKillCount20111212_0_14 = "5"; + ZombieKillCount20111212_Wp400Image_1 = "11"; + totalZombieKillCount20111213 = "21"; + ZombieKillCount20111213_PulsePhaserImage_1 = "5"; + ZombieKillCount20111211_0_15 = "1"; + ZombieKillCount20111213_PulseRifleImage_2 = "2"; + ZombieKillCount20111213_PulsePhaserImage_2 = "9"; + ZombieKillCount20111211_0_1 = "3"; + ZombieKillCount20111213_0_2 = "11"; + totalZombieKillCount20111211 = "3"; + ZombieKillCount20111213_PulseRifleImage_1 = "1"; + }; + new ScriptObject(ClientSettings3632676) { + + savedperk3 = "Clip Boxes"; + savedstreak5 = "17"; + savedstreak2 = "10"; + savedperk1 = "AP Bullets"; + savedstreak3 = "12"; + savedperk2 = "No-Infect Armor"; + savedstreak4 = "14"; + savedstreak1 = "7"; + }; + new ScriptObject(ClientStore3632676) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(CCD_3632676) { + + ZombieKillCount20111212_Model1887Image_12 = "2"; + expireDate = "20111231"; + ZombieKillCount20111212_0_1 = "81"; + killstreakCalls20111212_6 = "2"; + ZombieKillCount20111212__1 = "11"; + ZombieKillCount20111212_MeleeImage_2 = "1"; + ZombieKillCount20111212_PulseRifleImage_1 = "17"; + ZombieKillCount20111212_0_3 = "37"; + ZombieKillCount20111212_PulsePhaserImage_9 = "7"; + ZombieKillCount20111212__2 = "2"; + killstreakCalls20111212_7 = "3"; + ZombieKillCount20111212_0_4 = "26"; + ZombieKillCount20111212_M1SniperRifleImage_3 = "37"; + killstreakCalls20111212_12 = "3"; + killstreakCalls20111212_5 = "2"; + ZombieKillCount20111212_M1SniperRifleImage_2 = "9"; + ZombieKillCount20111212_Model1887Image_9 = "16"; + ZombieKillCount20111212_Model1887Image_5 = "11"; + ZombieKillCount20111212_M1SniperRifleImage_1 = "51"; + totalZombieKillCount20111212 = "213"; + ZombieKillCount20111212_PulsePhaserImage_5 = "4"; + ZombieKillCount20111212_Model1887Image_2 = "3"; + ZombieKillCount20111212_0_12 = "2"; + ZombieKillCount20111212_M1SniperRifleImage_4 = "26"; + zombieHeadshots20111212 = "121"; + ZombieKillCount20111212_AcidCannonImage_2 = "2"; + ZombieKillCount20111212_PulsePhaserImage_2 = "2"; + ZombieKillCount20111212_0_9 = "23"; + ZombieKillCount20111212_PulseRifleImage_2 = "11"; + ZombieKillCount20111212_0_2 = "30"; + ZombieKillCount20111212_0_5 = "15"; + ZombieKillCount20111212_Model1887Image_1 = "2"; + }; +}; +//--- OBJECT WRITE END --- \ No newline at end of file diff --git a/Univ/Data/3659303/Ranks/TWM2/Saved.TWMSave b/Univ/Data/3659303/Ranks/TWM2/Saved.TWMSave new file mode 100644 index 0000000..5f77f76 --- /dev/null +++ b/Univ/Data/3659303/Ranks/TWM2/Saved.TWMSave @@ -0,0 +1,114 @@ +//Ranks & Settings File For GUID 3659303 / Name: jacevedo1 +//Created On 2011-12-17, Total Warfare Mod 2 3.8 +//--- OBJECT WRITE BEGIN --- +new SimSet(Container_3659303) { + + new ScriptObject(TWM2Client_3659303) { + + AirstrikeCalls = "10"; + hasMedalHonorsB = "1"; + challengeCompleteMilestone25 = "1"; + noMoreEXP48cce26a6ba48a39bf292fd0e6d5a0e3055da921 = "0"; + challengeCompletePulsePhaserImage_1 = "1"; + challengeCompletePulsePhaserImage_3 = "1"; + noMoreEXPfa8db70e7f35c186327d98c2421d66a498b44bd6 = "0"; + phrase = "hi"; + noMoreEXPdd1e0860ea3c34e2286b79986ae4f9363fb4b259 = "0"; + xpGainbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "212836"; + noMoreEXP337bec3f1f831ddb8126d3e52f11698c5d168f67 = "0"; + challengeCompletePulsePhaserImage_2 = "1"; + weaponKillsflamerImage = "4"; + challengeComplete15For15 = "1"; + weaponKillsPulsePhaserImage = "281"; + noMoreEXP89cdac08df21a5718f555304b1ff83706f567ff0 = "0"; + noMoreEXPb47efe2379f1336e87dd71f87643bb12f14c6659 = "0"; + bossDefeatCountVengenor = "1"; + name = "jacevedo1"; + xpGainfa8db70e7f35c186327d98c2421d66a498b44bd6 = "534"; + noMoreEXP1cebdd03e0d549faba0c1d80c580b3052ed55331 = "0"; + officer = "0"; + rank = "5 Star General"; + noMoreEXP07e0b2857f554d7fb175dae282e985129316b474 = "0"; + noMoreEXP4f91474409e3b72c7c5cf8b5e59406ea15a3d711 = "0"; + weaponKillsM1700Image = "6"; + noMoreEXP1dac9c2af38530e88096416147123a851ae76e40 = "0"; + hasMedalHonorsC = "1"; + noMoreEXPdc639ae21874998a6e776e35d984558db2913f29 = "0"; + xpGaindd1e0860ea3c34e2286b79986ae4f9363fb4b259 = "40"; + xpGain07e0b2857f554d7fb175dae282e985129316b474 = "550"; + noMoreEXP9bb36e48ae146ab8e50eee42d43857bc81c3caca = "0"; + weaponKillsMiniChaingunImage = "1"; + hasMedalHonorsA = "1"; + xpGain48cce26a6ba48a39bf292fd0e6d5a0e3055da921 = "552"; + noMoreEXP29cdbe94c8a3c228b2460e13c7dc6fc367ec7e72 = "0"; + xpGain24a5f5898db61153fd1ae9ccb7f3dd2b0429ed46 = "9810"; + noMoreEXP56b8f856bcccc3c7bf6dda8db6c8020de1220d7a = "0"; + money = "1.04625e+06"; + noMoreEXPbcdd6fa6c8dd3867bbf28038c3e891ed3f9b0659 = "0"; + millionxp = "1"; + noMoreEXPdc7b9d125155cc301183ae093f3bfe9b8cc3a597 = "0"; + GMCalls = "4"; + xpGaindc7b9d125155cc301183ae093f3bfe9b8cc3a597 = "288"; + hasMedalTheNewGeneral = "1"; + noMoreEXP6aaa0ca8e763bdd196b7c334547e0d67d2df789e = "0"; + xpGain6aaa0ca8e763bdd196b7c334547e0d67d2df789e = "6642"; + xpGain9bb36e48ae146ab8e50eee42d43857bc81c3caca = "2892"; + noMoreEXP680e7deda563526e500f58036b6375a82134c2b0 = "0"; + challengeCompleteGOL1 = "1"; + bossDefeatCountGhostOfLightning = "9"; + xpGaindc639ae21874998a6e776e35d984558db2913f29 = "166149"; + weaponKillsS3RifleImage = "4"; + xpGain89cdac08df21a5718f555304b1ff83706f567ff0 = "12"; + xp = "47426"; + challengeCompleteGOL2 = "1"; + weaponKillsG17SniperRifleImage = "3"; + xpGain337bec3f1f831ddb8126d3e52f11698c5d168f67 = "355092"; + HeliCalls = "6"; + rankNumber = "53"; + weaponKillsALSWPSniperRifleImage = "8"; + gameTime = "2924"; + noMoreEXP3168ab06a67b7ef06492b6f0c5af4a73283849ef = "0"; + xpGainb47efe2379f1336e87dd71f87643bb12f14c6659 = "290994"; + bossDefeatCountLordRog = "1"; + hasMedalGamerExcuisite = "1"; + noMoreEXP24a5f5898db61153fd1ae9ccb7f3dd2b0429ed46 = "0"; + hasMedalThundaStruk = "1"; + hasMedalRevengeAvoidedAgain = "1"; + weaponKillsConcussionGunImage = "4"; + }; + new ScriptObject(CCD_3659303) { + + bossSlayCountVardison1_20130330 = "1"; + expireDate = "20130331"; + bossSlayCountVardison2_20130330 = "1"; + }; + new ScriptObject(ClientStore3659303) { + + nextLoto = "0"; + nextSlot = "0"; + }; + new ScriptObject(CCD_3659303) { + + expireDate = "20120131"; + }; + new ScriptObject(CCD_3659303) { + + expireDate = "20120131"; + }; + new ScriptObject(CCD_3659303) { + + expireDate = "20130331"; + }; + new ScriptObject(CCD_3659303) { + + ZombieKillCount20130329_R700SniperRifleImage_2 = "1"; + ZombieKillCount20130329__1 = "1"; + ZombieKillCount20130329_SA2400Image_1 = "2"; + totalZombieKillCount20130329 = "8"; + ZombieKillCount20130329_0_2 = "1"; + expireDate = "20130331"; + ZombieKillCount20130329_R700SniperRifleImage_1 = "5"; + ZombieKillCount20130329_0_1 = "8"; + }; +}; +//--- OBJECT WRITE END --- diff --git a/Univ/Data/dumpDirs.php b/Univ/Data/dumpDirs.php new file mode 100644 index 0000000..f654839 --- /dev/null +++ b/Univ/Data/dumpDirs.php @@ -0,0 +1,13 @@ +"; + } + closedir($dh); + } +} +?> \ No newline at end of file diff --git a/Univ/IsAuth.php b/Univ/IsAuth.php new file mode 100644 index 0000000..c9cd9c9 --- /dev/null +++ b/Univ/IsAuth.php @@ -0,0 +1,25 @@ + diff --git a/Univ/IsConnected.php b/Univ/IsConnected.php new file mode 100644 index 0000000..b1aa7ed --- /dev/null +++ b/Univ/IsConnected.php @@ -0,0 +1,16 @@ + + + + + + + \ No newline at end of file diff --git a/Univ/IsFile.php b/Univ/IsFile.php new file mode 100644 index 0000000..dd9c918 --- /dev/null +++ b/Univ/IsFile.php @@ -0,0 +1,10 @@ + \ No newline at end of file diff --git a/Univ/PGDConn.html b/Univ/PGDConn.html new file mode 100644 index 0000000..a1fc6e7 --- /dev/null +++ b/Univ/PGDConn.html @@ -0,0 +1,27 @@ + + + +PGD Connect (VERSION 1.8) + + +

Welcome to PGD Connect, Enhancing the gameplay of Phantom Games Development Projects and other Tribes 2 Projects

+

Current Version: 1.8

+

OPTIONS:

+
+

Link an account - Login to your account

+
+
SUPPORTED MODS
+

TWM2

+

Powers Mod

+

C&C Tiberium Uprising

+
+
+

Developed By:

+

Phantom139, Signal360

+

 

+

Problems? Contact Phantom139 at phantom139@phantomdev.net

+

 

+

+

 

+ + \ No newline at end of file diff --git a/Univ/PasswordSend.php b/Univ/PasswordSend.php new file mode 100644 index 0000000..7179f56 --- /dev/null +++ b/Univ/PasswordSend.php @@ -0,0 +1,37 @@ +Message successfully sent!

"); +} +else { + echo("

Message delivery failed...

"); +} +?> diff --git a/Univ/Ranks/CnC4/GDI/CrystalShield.jpg b/Univ/Ranks/CnC4/GDI/CrystalShield.jpg new file mode 100644 index 0000000..1064c63 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/CrystalShield.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/FalconMRLS.jpg b/Univ/Ranks/CnC4/GDI/FalconMRLS.jpg new file mode 100644 index 0000000..f9a329e Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/FalconMRLS.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/Firehawk.jpg b/Univ/Ranks/CnC4/GDI/Firehawk.jpg new file mode 100644 index 0000000..7541283 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/Firehawk.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/FocusBeam.jpg b/Univ/Ranks/CnC4/GDI/FocusBeam.jpg new file mode 100644 index 0000000..716fbd4 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/FocusBeam.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/GDIBunker.jpg b/Univ/Ranks/CnC4/GDI/GDIBunker.jpg new file mode 100644 index 0000000..6b85180 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/GDIBunker.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/GDIEngineer.jpg b/Univ/Ranks/CnC4/GDI/GDIEngineer.jpg new file mode 100644 index 0000000..0f03fba Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/GDIEngineer.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/GDIGunTurret.jpg b/Univ/Ranks/CnC4/GDI/GDIGunTurret.jpg new file mode 100644 index 0000000..23d54d4 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/GDIGunTurret.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/GDIMissileTurret.jpg b/Univ/Ranks/CnC4/GDI/GDIMissileTurret.jpg new file mode 100644 index 0000000..1b8801f Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/GDIMissileTurret.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/GDIOutpost.jpg b/Univ/Ranks/CnC4/GDI/GDIOutpost.jpg new file mode 100644 index 0000000..33f9e64 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/GDIOutpost.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/GDIPowerPlant.jpg b/Univ/Ranks/CnC4/GDI/GDIPowerPlant.jpg new file mode 100644 index 0000000..3446444 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/GDIPowerPlant.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/Hammerhead.jpg b/Univ/Ranks/CnC4/GDI/Hammerhead.jpg new file mode 100644 index 0000000..178f275 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/Hammerhead.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/IonCannonControl.jpg b/Univ/Ranks/CnC4/GDI/IonCannonControl.jpg new file mode 100644 index 0000000..8dfcef4 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/IonCannonControl.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/MammothTank.jpg b/Univ/Ranks/CnC4/GDI/MammothTank.jpg new file mode 100644 index 0000000..5026e9f Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/MammothTank.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/Orca.jpg b/Univ/Ranks/CnC4/GDI/Orca.jpg new file mode 100644 index 0000000..936822d Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/Orca.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/Sandstorm.jpg b/Univ/Ranks/CnC4/GDI/Sandstorm.jpg new file mode 100644 index 0000000..21ae210 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/Sandstorm.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/SkystrikeArtillery.jpg b/Univ/Ranks/CnC4/GDI/SkystrikeArtillery.jpg new file mode 100644 index 0000000..384e51b Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/SkystrikeArtillery.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/ZoneCaptain.jpg b/Univ/Ranks/CnC4/GDI/ZoneCaptain.jpg new file mode 100644 index 0000000..cba7eec Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/ZoneCaptain.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/CrystalShield.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/CrystalShield.jpg new file mode 100644 index 0000000..df1528f Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/CrystalShield.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/FalconMRLS.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/FalconMRLS.jpg new file mode 100644 index 0000000..aa0799a Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/FalconMRLS.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/Firehawk.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/Firehawk.jpg new file mode 100644 index 0000000..7061ee4 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/Firehawk.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/FocusBeam.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/FocusBeam.jpg new file mode 100644 index 0000000..6b6c65c Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/FocusBeam.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIBunker.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIBunker.jpg new file mode 100644 index 0000000..85dc4b7 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIBunker.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIEngineer.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIEngineer.jpg new file mode 100644 index 0000000..eb1af05 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIEngineer.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIGunTurret.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIGunTurret.jpg new file mode 100644 index 0000000..e178c75 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIGunTurret.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIMissileTurret.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIMissileTurret.jpg new file mode 100644 index 0000000..c6d64ab Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIMissileTurret.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIOutpost.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIOutpost.jpg new file mode 100644 index 0000000..e6ab702 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIOutpost.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIPowerPlant.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIPowerPlant.jpg new file mode 100644 index 0000000..61638fa Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/GDIPowerPlant.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/Hammerhead.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/Hammerhead.jpg new file mode 100644 index 0000000..9bddba9 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/Hammerhead.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/IonCannonControl.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/IonCannonControl.jpg new file mode 100644 index 0000000..520e8fb Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/IonCannonControl.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/MammothTank.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/MammothTank.jpg new file mode 100644 index 0000000..81eb9c0 Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/MammothTank.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/Orca.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/Orca.jpg new file mode 100644 index 0000000..10b109e Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/Orca.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/Sandstorm.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/Sandstorm.jpg new file mode 100644 index 0000000..c68f0fa Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/Sandstorm.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/SkystrikeArtillery.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/SkystrikeArtillery.jpg new file mode 100644 index 0000000..4ef537b Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/SkystrikeArtillery.jpg differ diff --git a/Univ/Ranks/CnC4/GDI/wpThumbnails/ZoneCaptain.jpg b/Univ/Ranks/CnC4/GDI/wpThumbnails/ZoneCaptain.jpg new file mode 100644 index 0000000..958bb8b Binary files /dev/null and b/Univ/Ranks/CnC4/GDI/wpThumbnails/ZoneCaptain.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/BlackHand.jpg b/Univ/Ranks/CnC4/NOD/BlackHand.jpg new file mode 100644 index 0000000..2acf638 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/BlackHand.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/Cobra.jpg b/Univ/Ranks/CnC4/NOD/Cobra.jpg new file mode 100644 index 0000000..58b5cd1 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/Cobra.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/DisruptionTower.jpg b/Univ/Ranks/CnC4/NOD/DisruptionTower.jpg new file mode 100644 index 0000000..59b6969 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/DisruptionTower.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/FlameColumn.jpg b/Univ/Ranks/CnC4/NOD/FlameColumn.jpg new file mode 100644 index 0000000..a667c1f Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/FlameColumn.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/FlameTank.jpg b/Univ/Ranks/CnC4/NOD/FlameTank.jpg new file mode 100644 index 0000000..7c2c017 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/FlameTank.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/NODEngineer.jpg b/Univ/Ranks/CnC4/NOD/NODEngineer.jpg new file mode 100644 index 0000000..5c4e34f Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/NODEngineer.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/NodBunker.jpg b/Univ/Ranks/CnC4/NOD/NodBunker.jpg new file mode 100644 index 0000000..32369db Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/NodBunker.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/NodGunTurret.jpg b/Univ/Ranks/CnC4/NOD/NodGunTurret.jpg new file mode 100644 index 0000000..ecf24d2 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/NodGunTurret.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/NodMissileTurret.jpg b/Univ/Ranks/CnC4/NOD/NodMissileTurret.jpg new file mode 100644 index 0000000..660e81e Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/NodMissileTurret.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/NodPowerPlant.jpg b/Univ/Ranks/CnC4/NOD/NodPowerPlant.jpg new file mode 100644 index 0000000..737c8ea Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/NodPowerPlant.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/Obelisk.jpg b/Univ/Ranks/CnC4/NOD/Obelisk.jpg new file mode 100644 index 0000000..c19a64d Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/Obelisk.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/Salamander.jpg b/Univ/Ranks/CnC4/NOD/Salamander.jpg new file mode 100644 index 0000000..bf34551 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/Salamander.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/Spectre.jpg b/Univ/Ranks/CnC4/NOD/Spectre.jpg new file mode 100644 index 0000000..0c88da5 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/Spectre.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/StealthTank.jpg b/Univ/Ranks/CnC4/NOD/StealthTank.jpg new file mode 100644 index 0000000..57b486d Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/StealthTank.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/TempleOfNod.jpg b/Univ/Ranks/CnC4/NOD/TempleOfNod.jpg new file mode 100644 index 0000000..678c9f5 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/TempleOfNod.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/TiberiumArtillery.jpg b/Univ/Ranks/CnC4/NOD/TiberiumArtillery.jpg new file mode 100644 index 0000000..d3b25b0 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/TiberiumArtillery.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/Venom.jpg b/Univ/Ranks/CnC4/NOD/Venom.jpg new file mode 100644 index 0000000..809b2eb Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/Venom.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/Vertigo.jpg b/Univ/Ranks/CnC4/NOD/Vertigo.jpg new file mode 100644 index 0000000..071f183 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/Vertigo.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/BlackHand.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/BlackHand.jpg new file mode 100644 index 0000000..e8eb93d Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/BlackHand.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/Cobra.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/Cobra.jpg new file mode 100644 index 0000000..a36029f Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/Cobra.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/DisruptionTower.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/DisruptionTower.jpg new file mode 100644 index 0000000..3ff6ca7 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/DisruptionTower.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/FlameColumn.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/FlameColumn.jpg new file mode 100644 index 0000000..88c256a Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/FlameColumn.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/FlameTank.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/FlameTank.jpg new file mode 100644 index 0000000..f03b727 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/FlameTank.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/NODEngineer.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/NODEngineer.jpg new file mode 100644 index 0000000..43b516d Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/NODEngineer.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/NodBunker.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/NodBunker.jpg new file mode 100644 index 0000000..ce32806 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/NodBunker.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/NodGunTurret.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/NodGunTurret.jpg new file mode 100644 index 0000000..c46b7c5 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/NodGunTurret.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/NodMissileTurret.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/NodMissileTurret.jpg new file mode 100644 index 0000000..f36aa13 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/NodMissileTurret.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/NodPowerPlant.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/NodPowerPlant.jpg new file mode 100644 index 0000000..1d45d4f Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/NodPowerPlant.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/Obelisk.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/Obelisk.jpg new file mode 100644 index 0000000..2e516bd Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/Obelisk.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/Salamander.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/Salamander.jpg new file mode 100644 index 0000000..6cf2b98 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/Salamander.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/Spectre.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/Spectre.jpg new file mode 100644 index 0000000..d73975e Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/Spectre.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/StealthTank.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/StealthTank.jpg new file mode 100644 index 0000000..1836fbc Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/StealthTank.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/TempleOfNod.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/TempleOfNod.jpg new file mode 100644 index 0000000..0a3574e Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/TempleOfNod.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/TiberiumArtillery.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/TiberiumArtillery.jpg new file mode 100644 index 0000000..11c949d Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/TiberiumArtillery.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/Venom.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/Venom.jpg new file mode 100644 index 0000000..754a021 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/Venom.jpg differ diff --git a/Univ/Ranks/CnC4/NOD/wpThumbnails/Vertigo.jpg b/Univ/Ranks/CnC4/NOD/wpThumbnails/Vertigo.jpg new file mode 100644 index 0000000..9127958 Binary files /dev/null and b/Univ/Ranks/CnC4/NOD/wpThumbnails/Vertigo.jpg differ diff --git a/Univ/Ranks/CnC4/PGDRank.css b/Univ/Ranks/CnC4/PGDRank.css new file mode 100644 index 0000000..fdec9d5 --- /dev/null +++ b/Univ/Ranks/CnC4/PGDRank.css @@ -0,0 +1,40 @@ +body{font:small "Myriad Pro", sans-serif; font-size:1.5em; background-color:#cd4a11;} +h1{font-size:1.5em;} +h2{color:#666;font-size:1em;font-weight:normal;} + +/*= Core CSS progress bar code */ +.progressbar1 { + width: 300px; + background: url(progressbar1.png) no-repeat 0 -40px; +} +.progressbar1-completed { + height: 20px; + margin-left: -1px; + background: url(progressbar1.png) no-repeat 1px 0; +} +.progressbar1-completed div { + float: right; + width: 50%; + height: 20px; + margin-right: -1px; + background: url(progressbar1.png) no-repeat 100% 0; + display: inline; +} + +.progressbar2 { + width: 300px; + background: url(progressbar2.png) no-repeat 0 -40px; +} +.progressbar2-completed { + height: 20px; + margin-left: -1px; + background: url(progressbar2.png) no-repeat 1px 0; +} +.progressbar2-completed div { + float: right; + width: 50%; + height: 20px; + margin-right: -1px; + background: url(progressbar2.png) no-repeat 100% 0; + display: inline; +} \ No newline at end of file diff --git a/Univ/Ranks/CnC4/RankList.php b/Univ/Ranks/CnC4/RankList.php new file mode 100644 index 0000000..218f476 --- /dev/null +++ b/Univ/Ranks/CnC4/RankList.php @@ -0,0 +1,104 @@ + \ No newline at end of file diff --git a/Univ/Ranks/CnC4/RankPage.php b/Univ/Ranks/CnC4/RankPage.php new file mode 100644 index 0000000..c8a9236 --- /dev/null +++ b/Univ/Ranks/CnC4/RankPage.php @@ -0,0 +1,183 @@ + + +C&C Tiberium Uprising: Online Rank Info + + + + + +".$namef."'s Data

"; + if($guid == 2000343) { + echo "

C&C Tiberium Uprising - LEAD DEVELOPER

"; + } + // + if($guid == 2001729) { + echo "

C&C Tiberium Uprising - CO-DEVELOPER

"; + } + //stuff + echo "
"; + echo ""; + echo ""; + echo ""; + echo ""; + echo "
"; + //exp + $exp1Start = strpos($theData, "XP[".$guid.", 1] =") + 17; + $exp1End = strpos($theData,";",$exp1Start); + $exp1Len = $exp1End - $exp1Start; + $exp1 = substr($theData, $exp1Start, $exp1Len); + + //rank + $rank1Start = strpos($theData, "Rank[".$guid.", 1] =") + 19; + $rank1End = strpos($theData,";",$rank1Start); + $rank1Len = $rank1End - $rank1Start; + $rank1 = substr($theData, $rank1Start, $rank1Len); + $rankf1 = str_replace("\"","",$rank1); + //Global arrays + global $RanksMinPointsGDI; + global $RanksNewRankGDI; + global $RanksMinPointsNOD; + global $RanksNewRankNOD; + global $RankRankCount; + // + $NextRankFound = 0; + //GDI + if($rankf1 != "General") { + for($rnk = 0; $rnk < $RankRankCount; $rnk = $rnk + 1) { + if($NextRankFound == 0) { + if($exp1 >= $RanksMinPointsGDI[$rnk+1]) { + $rname = $RanksNewRankGDI[$rnk+1]; + } + else { + //ladies and gentlemen, we have reached our next rank + $NextRankFound = 1; + $NextRank = $RanksNewRankGDI[$rnk +1]; + $rexp = $RanksMinPointsGDI[$rnk+1]; + $pexp = $RanksMinPointsGDI[$rnk]; + $NextEXP = $rexp - $exp1; + } + } + } + } + else { + $rexp = $exp1; + $NextRank = "No Further Progression"; + $NextEXP = 0; + } + echo "Current GDI Rank: ".$rankf1.""; + echo "

GDI EXP: ".number_format($exp1).""; + echo "

(".$exp1."/".$rexp."(".number_format((($exp1-$pexp)/($rexp-$pexp))*100)."%))"; + echo "
"; + echo "

Next GDI Rank: ".$NextRank."

"; + echo "EXP Needed: ".$NextEXP."

"; + echo "


"; + //Player Stats + $TkillsStart = strpos($theData, "TotalKills[".$guid."] =") + 22; + $TkillsEnd = strpos($theData,";",$TkillsStart); + $TKillsLen = $TkillsEnd - $TkillsStart; + if($TKillsLen > 10) { //lets be realistic now... + $kills1 = 0; + } + else { + $kills1 = substr($theData, $TkillsStart, $TKillsLen); + } + // + $UkillsStart = strpos($theData, "UKills[".$guid."] =") + 18; + $UkillsEnd = strpos($theData,";",$UkillsStart); + $UkillsLen = $UkillsEnd - $UkillsStart; + if($UkillsLen > 10) { //lets be realistic now... + $Ukills1 = 0; + } + else { + $Ukills1 = substr($theData, $UkillsStart, $UkillsLen); + } + // + echo "Kills: ".$kills1."

Units Killed: ".$Ukills1."

Players Killed: ".($kills1-$Ukills1)."

"; + // + $deathsstrt = strpos($theData, "Deaths[".$guid."] =") + 18; + $deathsend = strpos($theData,";",$deathsstrt); + $deathslen = $deathsend - $deathsstrt; + $deaths = substr($theData, $deathsstrt, $deathslen); + echo "Deaths: ".$deaths."

"; + // + echo "K:D Ratio: ".number_format($kills1/$deaths, 2)."

"; + //NOD + echo "

"; + //exp + $exp1Start = strpos($theData, "XP[".$guid.", 2] =") + 17; + $exp1End = strpos($theData,";",$exp1Start); + $exp1Len = $exp1End - $exp1Start; + $exp1 = substr($theData, $exp1Start, $exp1Len); + //rank + $rank1Start = strpos($theData, "Rank[".$guid.", 2] =") + 19; + $rank1End = strpos($theData,";",$rank1Start); + $rank1Len = $rank1End - $rank1Start; + $rank1 = substr($theData, $rank1Start, $rank1Len); + $rankf1 = str_replace("\"","",$rank1); + $NextRankFound = 0; + //GDI + if($rankf1 != "Hand Of Kane") { + for($rnk = 0; $rnk < $RankRankCount; $rnk = $rnk + 1) { + if($NextRankFound == 0) { + if($exp1 >= $RanksMinPointsNOD[$rnk+1]) { + $rname = $RanksNewRankNOD[$rnk+1]; + } + else { + //ladies and gentlemen, we have reached our next rank + $NextRankFound = 1; + $NextRank = $RanksNewRankNOD[$rnk +1]; + $rexp = $RanksMinPointsNOD[$rnk+1]; + $pexp = $RanksMinPointsNOD[$rnk]; + $NextEXP = $rexp - $exp1; + } + } + } + } + else { + $rexp = $exp1; + $NextRank = "No Further Progression"; + $NextEXP = 0; + } + echo "Current NOD Rank: ".$rankf1.""; + echo "

NOD EXP: ".number_format($exp1).""; + echo "

(".$exp1."/".$rexp."(".number_format((($exp1-$pexp)/($rexp-$pexp))*100)."%))"; + echo "
"; + echo "

Next NOD Rank: ".$NextRank."

"; + echo "EXP Needed: ".$NextEXP."

"; + echo "


"; + //Building stats + $bldstrt = strpos($theData, "TotalBuilds[".$guid."] =") + 22; + $bldend = strpos($theData,";",$bldstrt); + $bldlen = $bldend - $bldstrt; + $blds = substr($theData, $bldstrt, $bldlen); + echo "Buildings Constructed: ".$blds."

"; + // + $bldlstrt = strpos($theData, "TotalBuildingLosses[".$guid."] =") + 30; + $bldlend = strpos($theData,";",$bldlstrt); + $bldllen = $bldlend - $bldlstrt; + $bldl = substr($theData, $bldlstrt, $bldllen); + echo "Buildings Lost: ".$bldl."

"; + // + echo "

"; + } + else { + echo "GUID: ".$guid." Does not have any universally saved data.

"; + } +?> + + \ No newline at end of file diff --git a/Univ/Ranks/CnC4/Unlocks.html b/Univ/Ranks/CnC4/Unlocks.html new file mode 100644 index 0000000..b0fbab5 --- /dev/null +++ b/Univ/Ranks/CnC4/Unlocks.html @@ -0,0 +1,79 @@ + + + +C&C 4 Mod: Unit/Building Unlock List + + +

+

C&C Tiberium Uprising Mod For Tribes 2

+

This mod features a similar system to the actual game, units, buildings, and more are unlocked via rank, this is the unlock list for the mod:
+

+ + + + +
+

GDI

+
+ + + + +
+

Rank 1:

+

Rank 2: Disable Help Displays

+

Rank 3: N/A

+

Rank 4:

+

Rank 5:

+

Rank 6:

+

Rank 7: Tiberium Harvester

+

Rank 8:

+

Rank 10:

+

Rank 11:

+

 

+

Rank 13:

+

Rank 14:

+

Rank 15:

+

Rank 16:

+

Rank 18:

+

Rank 19:

+

Rank 20:

+

NOD

+
+ + + + +
+

Rank 1:

+

Rank + 2: Disable Help Displays

+

Rank 3:N/A

+

Rank + 4:

+

Rank 5:

+

Rank 6:

+

Rank 7: Tiberium Harvester

+

Rank + 8:

+

Rank + 10:

+

Rank + 11:

+

 

+

Rank 13:

+

Rank + 14:

+

Rank + 15:

+

Rank + 16:

+

Rank + 18:

+

Rank + 19:

+

Rank 20:

+

 

+ + \ No newline at end of file diff --git a/Univ/Ranks/CnC4/error_log b/Univ/Ranks/CnC4/error_log new file mode 100644 index 0000000..bda505b --- /dev/null +++ b/Univ/Ranks/CnC4/error_log @@ -0,0 +1,133 @@ +[09-Apr-2010 20:12:30] PHP Parse error: syntax error, unexpected ',', expecting ']' in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 56 +[09-Apr-2010 20:13:12] PHP Parse error: syntax error, unexpected ',', expecting ']' in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 56 +[09-Apr-2010 20:13:34] PHP Parse error: syntax error, unexpected ',', expecting ']' in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 56 +[11-Apr-2010 10:11:51] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 90 +[11-Apr-2010 10:12:42] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 90 +[11-Apr-2010 10:14:17] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 91 +[11-Apr-2010 10:38:29] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 77 +[12-Apr-2010 22:27:46] PHP Warning: require(expScripts.php) [function.require]: failed to open stream: No such file or directory in /home/phantom7/public_html/public/Univ/Ranks/CnC4/top.php on line 7 +[12-Apr-2010 22:27:46] PHP Warning: require(expScripts.php) [function.require]: failed to open stream: No such file or directory in /home/phantom7/public_html/public/Univ/Ranks/CnC4/top.php on line 7 +[12-Apr-2010 22:27:46] PHP Fatal error: require() [function.require]: Failed opening required 'expScripts.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/phantom7/public_html/public/Univ/Ranks/CnC4/top.php on line 7 +[15-Apr-2010 10:45:34] PHP Warning: require(expScripts.php) [function.require]: failed to open stream: No such file or directory in /home/phantom7/public_html/public/Univ/Ranks/CnC4/top.php on line 7 +[15-Apr-2010 10:45:34] PHP Warning: require(expScripts.php) [function.require]: failed to open stream: No such file or directory in /home/phantom7/public_html/public/Univ/Ranks/CnC4/top.php on line 7 +[15-Apr-2010 10:45:34] PHP Fatal error: require() [function.require]: Failed opening required 'expScripts.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/phantom7/public_html/public/Univ/Ranks/CnC4/top.php on line 7 +[15-Apr-2010 11:54:03] PHP Parse error: syntax error, unexpected '"', expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/CnC4/expScripts.php on line 44 +[15-Apr-2010 12:20:38] PHP Parse error: syntax error, unexpected '.' in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 104 +[01-May-2010 06:18:51] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[15-May-2010 19:02:22] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[19-May-2010 04:43:22] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[21-May-2010 13:31:31] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[23-May-2010 02:02:51] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[24-May-2010 05:03:08] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[27-May-2010 06:30:40] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[27-May-2010 19:29:04] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[28-May-2010 08:20:43] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[31-May-2010 20:04:42] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[04-Jun-2010 02:48:29] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[05-Jun-2010 10:39:41] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[11-Jun-2010 05:47:49] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[11-Jun-2010 14:14:20] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[14-Jun-2010 02:01:49] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[14-Jun-2010 17:58:36] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[14-Jun-2010 17:58:40] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[25-Jun-2010 12:35:51] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[01-Jul-2010 05:31:10] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[04-Jul-2010 01:19:24] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[05-Aug-2010 07:48:06] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[09-Aug-2010 12:38:31] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[09-Aug-2010 12:38:33] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[10-Aug-2010 14:46:41] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[13-Aug-2010 04:07:05] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[14-Aug-2010 02:48:41] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[28-Aug-2010 07:31:21] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[28-Aug-2010 07:31:35] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[30-Aug-2010 17:49:14] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[22-Sep-2010 03:31:08] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[22-Sep-2010 03:42:09] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[12-Oct-2010 01:53:15] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[12-Oct-2010 03:00:47] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[20-Oct-2010 05:00:07] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[20-Oct-2010 05:00:34] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[25-Oct-2010 13:17:33] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[25-Oct-2010 22:27:56] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[31-Oct-2010 19:10:32] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[11-Nov-2010 00:01:53] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[17-Nov-2010 05:45:39] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[30-Nov-2010 04:47:10] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[30-Nov-2010 16:05:03] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[18-Dec-2010 05:23:20] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[19-Dec-2010 22:02:13] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[24-Dec-2010 18:50:12] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[26-Dec-2010 06:02:38] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[01-Jan-2011 12:27:13] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[15-Jan-2011 10:11:25] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[16-Jan-2011 23:21:39] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[17-Jan-2011 20:37:19] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[14-Apr-2011 00:15:52] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[21-Apr-2011 20:48:36] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[26-Apr-2011 20:09:02] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[25-May-2011 14:11:57] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[14-Jul-2011 20:43:03] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[25-Sep-2011 03:18:43] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[01-Oct-2011 23:25:05] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[14-Oct-2011 22:36:19] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[16-Oct-2011 09:15:11] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[30-Oct-2011 12:16:30] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[03-Nov-2011 17:45:41] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[07-Nov-2011 15:19:58] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[07-Nov-2011 23:36:35] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[12-Nov-2011 08:55:17] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[15-Nov-2011 09:56:50] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[18-Dec-2011 11:07:26] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[20-Jan-2012 07:24:34] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[04-Feb-2012 14:12:48] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[31-Mar-2012 09:46:34] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[31-May-2012 04:01:55] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[13-Jun-2012 14:42:10] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[15-Jul-2012 13:25:51] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[04-Sep-2012 09:38:01] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[19-Sep-2012 17:26:37] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[17-Oct-2012 18:25:07] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[18-Oct-2012 04:20:53] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[29-Dec-2012 22:15:25] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[15-Jan-2013 21:05:57] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[26-Feb-2013 19:44:56] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[28-Feb-2013 21:20:59] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[01-Mar-2013 23:51:32] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[13-Mar-2013 06:06:21] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[22-Mar-2013 13:16:34] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[08-May-2013 02:26:16] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[09-May-2013 00:17:56] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[22-May-2013 00:08:57] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[02-Jun-2013 11:41:15] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[06-Jun-2013 05:19:58] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[13-Jul-2013 23:38:16] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[15-Jul-2013 11:07:54] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[24-Jul-2013 02:49:00] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[10-Aug-2013 15:21:25] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[21-Aug-2013 02:47:27] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[31-Aug-2013 22:28:20] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[22-Oct-2013 09:09:01] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[19-Nov-2013 20:54:17] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[01-Dec-2013 01:19:27] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[01-Dec-2013 10:04:44] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[26-Jan-2014 21:29:42] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[30-Jan-2014 02:43:30] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[04-Feb-2014 15:51:58 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 12 +[09-Feb-2014 14:54:02 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 12 +[16-Feb-2014 15:47:01 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 12 +[19-Feb-2014 09:45:41 America/Denver] PHP Notice: Undefined variable: pexp in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 83 +[20-Feb-2014 08:16:30 America/Denver] PHP Notice: Undefined variable: pexp in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 83 +[21-Feb-2014 13:09:10 America/Denver] PHP Notice: Undefined variable: pexp in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 83 +[22-Feb-2014 23:48:21 America/Denver] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[23-Feb-2014 11:59:15 America/Denver] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[23-Feb-2014 15:25:16 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 12 +[24-Feb-2014 07:47:17 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 12 +[24-Feb-2014 07:49:00 America/Denver] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[24-Feb-2014 14:38:10 America/Denver] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[24-Feb-2014 15:07:17 America/Denver] PHP Notice: Undefined variable: pexp in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 83 +[25-Feb-2014 14:58:23 America/Denver] PHP Warning: Division by zero in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 117 +[26-Feb-2014 14:31:20 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 12 +[05-Mar-2014 20:48:03 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 12 +[07-Mar-2014 22:14:16 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 12 +[11-Mar-2014 05:11:01 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/CnC4/RankPage.php on line 12 diff --git a/Univ/Ranks/CnC4/expScripts.php b/Univ/Ranks/CnC4/expScripts.php new file mode 100644 index 0000000..ad84ebe --- /dev/null +++ b/Univ/Ranks/CnC4/expScripts.php @@ -0,0 +1,207 @@ +\n"; + //do eet + for($i = 1; $i <= $doCount-1; $i++){ + for($j = 1; $j <= $count-1; $j++) { + $XPA = $exp1[$guid[$j]]; + if(($XPA >= $highest) && ($XPA < $noabove)){ + $highest = $XPA; + $player = $guid[$j]; + //echo "DEBUG XPA NEW ".$player.": P".$highestPres." E".$highest."

"; + } + } + $Top[$i] = GetNameFromFile("".$dir."/".$player."/Ranks/CnC4/Saved.Rank", $player); + if($Top[$i] == "") { + $Top[$i] = "NNF - ".$player.""; + } + $TopXP[$i] = $exp1[$player]; + $noabove = $highest; + //echo "No Above: ".$noAboveP."

"; + $highest = 0; + if($withlink) { + echo "".$i.". ".$Top[$i].": ".GetRankImage("".$dir."/".$player."/Ranks/CnC4/Saved.Rank", $player, 1).", ".number_format($TopXP[$i])." EXP

\n"; + } + else { + echo "".$i.". ".$Top[$i].": ".GetRankImage("".$dir."/".$player."/Ranks/CnC4/Saved.Rank", $player, 1).", ".number_format($TopXP[$i])." EXP

\n"; + } + } + } + } + } + + //NOD + function GatherTopNODRanks($doCount, $withlink) { + $dir = "/home/phantom7/public_html/public/Univ/Data/"; + + $count = 1; + $highest = 0; + $noabove = 100000000000; //Highest Rank Level XP + + // Open a known directory, and proceed to read its contents + if (is_dir($dir)) { + if ($dh = opendir($dir)) { + while (($file = readdir($dh)) !== false) { + if(is_file("".$dir."/".$file."/Ranks/CnC4/Saved.Rank")) { + $exp1[$file] = ReadEXPFor15("".$dir."/".$file."/Ranks/CnC4/Saved.Rank", $file, 2); + $guid[$count] = $file; + $count++; + } + } + closedir($dh); + if($doCount == -1) { + $doCount = $count; + } + echo "*TOP NOD RANKS*

\n"; + //do eet + for($i = 1; $i <= $doCount-1; $i++){ + for($j = 1; $j <= $count-1; $j++) { + $XPA = $exp1[$guid[$j]]; + if(($XPA >= $highest) && ($XPA < $noabove)){ + $highest = $XPA; + $player = $guid[$j]; + //echo "DEBUG XPA NEW ".$player.": P".$highestPres." E".$highest."

"; + } + } + $Top[$i] = GetNameFromFile("".$dir."/".$player."/Ranks/CnC4/Saved.Rank", $player); + if($Top[$i] == "") { + $Top[$i] = "NNF - ".$player.""; + } + $TopXP[$i] = $exp1[$player]; + $noabove = $highest; + //echo "No Above: ".$noAboveP."

"; + $highest = 0; + if($withlink) { + echo "".$i.". ".$Top[$i].": ".GetRankImage("".$dir."/".$player."/Ranks/CnC4/Saved.Rank", $player, 2).", ".number_format($TopXP[$i])." EXP

\n"; + } + else { + echo "".$i.". ".$Top[$i].": ".GetRankImage("".$dir."/".$player."/Ranks/CnC4/Saved.Rank", $player, 2).", ".number_format($TopXP[$i])." EXP

\n"; + } + } + } + } + } + + //All + function GatherTopRanks($doCount, $withlink) { + $dir = "/home/phantom7/public_html/public/Univ/Data/"; + + $count = 1; + $highest = 0; + $noabove = 100000000000; //Highest Rank Level XP + + // Open a known directory, and proceed to read its contents + if (is_dir($dir)) { + if ($dh = opendir($dir)) { + while (($file = readdir($dh)) !== false) { + if(is_file("".$dir."/".$file."/Ranks/CnC4/Saved.Rank")) { + $exp1[$file] = ReadEXPFor15("".$dir."/".$file."/Ranks/CnC4/Saved.Rank", $file, 1); + $exp2[$file] = ReadEXPFor15("".$dir."/".$file."/Ranks/CnC4/Saved.Rank", $file, 2); + $guid[$count] = $file; + $count++; + } + } + closedir($dh); + if($doCount == -1) { + $doCount = $count; + } + echo "*".($doCount-1)." Registered Players*

\n"; + //do eet + for($i = 1; $i <= $doCount-1; $i++){ + for($j = 1; $j <= $count-1; $j++) { + $XPA = $exp1[$guid[$j]] + $exp2[$guid[$j]]; + if(($XPA >= $highest) && ($XPA < $noabove)){ + $highest = $XPA; + $player = $guid[$j]; + //echo "DEBUG XPA NEW ".$player.": P".$highestPres." E".$highest."

"; + } + } + $Top[$i] = GetNameFromFile("".$dir."/".$player."/Ranks/CnC4/Saved.Rank", $player); + if($Top[$i] == "") { + $Top[$i] = "NNF - ".$player.""; + } + $TopXP[$i] = $exp1[$player] + $exp2[$player]; + $noabove = $highest; + //echo "No Above: ".$noAboveP."

"; + $highest = 0; + if($withlink) { + echo "".$i.". ".$Top[$i].": GDI: ".GetRankImage("".$dir."/".$player."/Ranks/CnC4/Saved.Rank", $player, 1)." | NOD: ".GetRankImage("".$dir."/".$player."/Ranks/CnC4/Saved.Rank", $player, 2)." | ".number_format($TopXP[$i])." Total EXP

\n"; + } + else { + echo "".$i.". ".$Top[$i].": GDI: ".GetRankImage("".$dir."/".$player."/Ranks/CnC4/Saved.Rank", $player, 1)." | NOD: ".GetRankImage("".$dir."/".$player."/Ranks/CnC4/Saved.Rank", $player, 2)." | Total EXP ".number_format($TopXP[$i])."

\n"; + } + } + } + } + } + + function DisplayTop15($link) { + GatherTopRanks(15, $link); + } + + function DisplayAll($link) { + GatherTopRanks(-1, $link); + } + + function GetNameFromFile($loc, $guid) { + $fh = fopen($loc, 'r'); + $theData = fread($fh, filesize($loc)); + fclose($fh); + //exp + $nameStart = strpos($theData, "Name[".$guid."] =") + 16; + $nameEnd = strpos($theData,";",$nameStart); + $nameLen = $nameEnd - $nameStart; + $name = substr($theData, $nameStart, $nameLen); + $namef = str_replace("\"","",$name); + return $namef; + } + + function ReadEXPFor15($loc, $guid, $t) { + $fh = fopen($loc, 'r'); + $theData = fread($fh, filesize($loc)); + fclose($fh); + //exp + $expStart = strpos($theData, "XP[".$guid.", ".$t."] =") + 17; + $expEnd = strpos($theData,";",$expStart); + $expLen = $expEnd - $expStart; + $exp = substr($theData, $expStart, $expLen); + return $exp; + } + + function GetRankImage($loc, $guid, $t) { + $fh = fopen($loc, 'r'); + $theData = fread($fh, filesize($loc)); + fclose($fh); + //rank + $rankStart = strpos($theData, "Rank[".$guid.", ".$t."] =") + 19; + $rankEnd = strpos($theData,";",$rankStart); + $rankLen = $rankEnd - $rankStart; + $rank = substr($theData, $rankStart, $rankLen); + $rankf = str_replace("\"","",$rank); + // + // + return $rankf; + } +?> \ No newline at end of file diff --git a/Univ/Ranks/CnC4/progressbar1.png b/Univ/Ranks/CnC4/progressbar1.png new file mode 100644 index 0000000..f47942b Binary files /dev/null and b/Univ/Ranks/CnC4/progressbar1.png differ diff --git a/Univ/Ranks/CnC4/progressbar2.png b/Univ/Ranks/CnC4/progressbar2.png new file mode 100644 index 0000000..4bd9537 Binary files /dev/null and b/Univ/Ranks/CnC4/progressbar2.png differ diff --git a/Univ/Ranks/CnC4/rankForm.html b/Univ/Ranks/CnC4/rankForm.html new file mode 100644 index 0000000..a2938da --- /dev/null +++ b/Univ/Ranks/CnC4/rankForm.html @@ -0,0 +1,6 @@ +

C&C 4 Rank Display

+

Enter The Player's GUID Number

+
+

GUID:
+

+

\ No newline at end of file diff --git a/Univ/Ranks/CnC4/top.php b/Univ/Ranks/CnC4/top.php new file mode 100644 index 0000000..891ea8f --- /dev/null +++ b/Univ/Ranks/CnC4/top.php @@ -0,0 +1,21 @@ + + +CnC Tiberium Uprising : Official Top Ranks + + +CnC Tiberium Uprising : Official Universal Ranks

\n"; + + DisplayAll(1); + + echo "***************"; + echo "

"; + GatherTopGDIRanks(-1, 1); + echo "***************"; + echo "

"; + GatherTopNODRanks(-1, 1); + echo "***************"; +?> + + \ No newline at end of file diff --git a/Univ/Ranks/CnC4/wpThumbnails/progressbar1.png b/Univ/Ranks/CnC4/wpThumbnails/progressbar1.png new file mode 100644 index 0000000..e05ecc1 Binary files /dev/null and b/Univ/Ranks/CnC4/wpThumbnails/progressbar1.png differ diff --git a/Univ/Ranks/CnC4/wpThumbnails/progressbar2.png b/Univ/Ranks/CnC4/wpThumbnails/progressbar2.png new file mode 100644 index 0000000..da83fc9 Binary files /dev/null and b/Univ/Ranks/CnC4/wpThumbnails/progressbar2.png differ diff --git a/Univ/Ranks/TWM2/.htaccess b/Univ/Ranks/TWM2/.htaccess new file mode 100644 index 0000000..28082c2 --- /dev/null +++ b/Univ/Ranks/TWM2/.htaccess @@ -0,0 +1 @@ +AuthUserFile "/home/phantom7/.htpasswds/public_html/public/Univ/Ranks/TWM2/passwd" diff --git a/Univ/Ranks/TWM2/2StarGeneral.png b/Univ/Ranks/TWM2/2StarGeneral.png new file mode 100644 index 0000000..7b89453 Binary files /dev/null and b/Univ/Ranks/TWM2/2StarGeneral.png differ diff --git a/Univ/Ranks/TWM2/3StarGeneral.png b/Univ/Ranks/TWM2/3StarGeneral.png new file mode 100644 index 0000000..e0584ed Binary files /dev/null and b/Univ/Ranks/TWM2/3StarGeneral.png differ diff --git a/Univ/Ranks/TWM2/4StarGeneral.png b/Univ/Ranks/TWM2/4StarGeneral.png new file mode 100644 index 0000000..5007938 Binary files /dev/null and b/Univ/Ranks/TWM2/4StarGeneral.png differ diff --git a/Univ/Ranks/TWM2/5StarGeneral.png b/Univ/Ranks/TWM2/5StarGeneral.png new file mode 100644 index 0000000..fc94ebc Binary files /dev/null and b/Univ/Ranks/TWM2/5StarGeneral.png differ diff --git a/Univ/Ranks/TWM2/Brigadier.png b/Univ/Ranks/TWM2/Brigadier.png new file mode 100644 index 0000000..20e026a Binary files /dev/null and b/Univ/Ranks/TWM2/Brigadier.png differ diff --git a/Univ/Ranks/TWM2/Brigadier1.png b/Univ/Ranks/TWM2/Brigadier1.png new file mode 100644 index 0000000..b26f0cf Binary files /dev/null and b/Univ/Ranks/TWM2/Brigadier1.png differ diff --git a/Univ/Ranks/TWM2/Brigadier2.png b/Univ/Ranks/TWM2/Brigadier2.png new file mode 100644 index 0000000..fb39003 Binary files /dev/null and b/Univ/Ranks/TWM2/Brigadier2.png differ diff --git a/Univ/Ranks/TWM2/BrigadierGeneral.png b/Univ/Ranks/TWM2/BrigadierGeneral.png new file mode 100644 index 0000000..14242b4 Binary files /dev/null and b/Univ/Ranks/TWM2/BrigadierGeneral.png differ diff --git a/Univ/Ranks/TWM2/BrigadierGeneral1.png b/Univ/Ranks/TWM2/BrigadierGeneral1.png new file mode 100644 index 0000000..2f74e94 Binary files /dev/null and b/Univ/Ranks/TWM2/BrigadierGeneral1.png differ diff --git a/Univ/Ranks/TWM2/BrigadierGeneral2.png b/Univ/Ranks/TWM2/BrigadierGeneral2.png new file mode 100644 index 0000000..2a13868 Binary files /dev/null and b/Univ/Ranks/TWM2/BrigadierGeneral2.png differ diff --git a/Univ/Ranks/TWM2/Captain.png b/Univ/Ranks/TWM2/Captain.png new file mode 100644 index 0000000..ab603c8 Binary files /dev/null and b/Univ/Ranks/TWM2/Captain.png differ diff --git a/Univ/Ranks/TWM2/Captain1.png b/Univ/Ranks/TWM2/Captain1.png new file mode 100644 index 0000000..622ad04 Binary files /dev/null and b/Univ/Ranks/TWM2/Captain1.png differ diff --git a/Univ/Ranks/TWM2/Captain2.png b/Univ/Ranks/TWM2/Captain2.png new file mode 100644 index 0000000..99d56cd Binary files /dev/null and b/Univ/Ranks/TWM2/Captain2.png differ diff --git a/Univ/Ranks/TWM2/Captain3.png b/Univ/Ranks/TWM2/Captain3.png new file mode 100644 index 0000000..816d0d7 Binary files /dev/null and b/Univ/Ranks/TWM2/Captain3.png differ diff --git a/Univ/Ranks/TWM2/Clock.png b/Univ/Ranks/TWM2/Clock.png new file mode 100644 index 0000000..b92d2de Binary files /dev/null and b/Univ/Ranks/TWM2/Clock.png differ diff --git a/Univ/Ranks/TWM2/Colonel.png b/Univ/Ranks/TWM2/Colonel.png new file mode 100644 index 0000000..4d2fe78 Binary files /dev/null and b/Univ/Ranks/TWM2/Colonel.png differ diff --git a/Univ/Ranks/TWM2/Colonel1.png b/Univ/Ranks/TWM2/Colonel1.png new file mode 100644 index 0000000..8fd97d7 Binary files /dev/null and b/Univ/Ranks/TWM2/Colonel1.png differ diff --git a/Univ/Ranks/TWM2/Colonel2.png b/Univ/Ranks/TWM2/Colonel2.png new file mode 100644 index 0000000..b1fcc29 Binary files /dev/null and b/Univ/Ranks/TWM2/Colonel2.png differ diff --git a/Univ/Ranks/TWM2/Commander.png b/Univ/Ranks/TWM2/Commander.png new file mode 100644 index 0000000..9b3c0b7 Binary files /dev/null and b/Univ/Ranks/TWM2/Commander.png differ diff --git a/Univ/Ranks/TWM2/CommandingGeneral.png b/Univ/Ranks/TWM2/CommandingGeneral.png new file mode 100644 index 0000000..575157c Binary files /dev/null and b/Univ/Ranks/TWM2/CommandingGeneral.png differ diff --git a/Univ/Ranks/TWM2/CommandingOfficer.png b/Univ/Ranks/TWM2/CommandingOfficer.png new file mode 100644 index 0000000..3354e35 Binary files /dev/null and b/Univ/Ranks/TWM2/CommandingOfficer.png differ diff --git a/Univ/Ranks/TWM2/Corporal.png b/Univ/Ranks/TWM2/Corporal.png new file mode 100644 index 0000000..681c304 Binary files /dev/null and b/Univ/Ranks/TWM2/Corporal.png differ diff --git a/Univ/Ranks/TWM2/Corporal1.png b/Univ/Ranks/TWM2/Corporal1.png new file mode 100644 index 0000000..7fd8c54 Binary files /dev/null and b/Univ/Ranks/TWM2/Corporal1.png differ diff --git a/Univ/Ranks/TWM2/Corporal2.png b/Univ/Ranks/TWM2/Corporal2.png new file mode 100644 index 0000000..ebb4440 Binary files /dev/null and b/Univ/Ranks/TWM2/Corporal2.png differ diff --git a/Univ/Ranks/TWM2/Corporal3.png b/Univ/Ranks/TWM2/Corporal3.png new file mode 100644 index 0000000..3f14684 Binary files /dev/null and b/Univ/Ranks/TWM2/Corporal3.png differ diff --git a/Univ/Ranks/TWM2/Corporal4.png b/Univ/Ranks/TWM2/Corporal4.png new file mode 100644 index 0000000..dfcf3e3 Binary files /dev/null and b/Univ/Ranks/TWM2/Corporal4.png differ diff --git a/Univ/Ranks/TWM2/FleetCommander.png b/Univ/Ranks/TWM2/FleetCommander.png new file mode 100644 index 0000000..3df6e90 Binary files /dev/null and b/Univ/Ranks/TWM2/FleetCommander.png differ diff --git a/Univ/Ranks/TWM2/General.png b/Univ/Ranks/TWM2/General.png new file mode 100644 index 0000000..5fc01d8 Binary files /dev/null and b/Univ/Ranks/TWM2/General.png differ diff --git a/Univ/Ranks/TWM2/GoF.png b/Univ/Ranks/TWM2/GoF.png new file mode 100644 index 0000000..46b385b Binary files /dev/null and b/Univ/Ranks/TWM2/GoF.png differ diff --git a/Univ/Ranks/TWM2/GoL.png b/Univ/Ranks/TWM2/GoL.png new file mode 100644 index 0000000..60aeb0d Binary files /dev/null and b/Univ/Ranks/TWM2/GoL.png differ diff --git a/Univ/Ranks/TWM2/GunnaryPrivate.png b/Univ/Ranks/TWM2/GunnaryPrivate.png new file mode 100644 index 0000000..26299e2 Binary files /dev/null and b/Univ/Ranks/TWM2/GunnaryPrivate.png differ diff --git a/Univ/Ranks/TWM2/GunnaryPrivate1.png b/Univ/Ranks/TWM2/GunnaryPrivate1.png new file mode 100644 index 0000000..1a43851 Binary files /dev/null and b/Univ/Ranks/TWM2/GunnaryPrivate1.png differ diff --git a/Univ/Ranks/TWM2/GunnaryPrivate2.png b/Univ/Ranks/TWM2/GunnaryPrivate2.png new file mode 100644 index 0000000..bf8424c Binary files /dev/null and b/Univ/Ranks/TWM2/GunnaryPrivate2.png differ diff --git a/Univ/Ranks/TWM2/GunnaryPrivate3.png b/Univ/Ranks/TWM2/GunnaryPrivate3.png new file mode 100644 index 0000000..b324c9b Binary files /dev/null and b/Univ/Ranks/TWM2/GunnaryPrivate3.png differ diff --git a/Univ/Ranks/TWM2/GunnarySergeant.png b/Univ/Ranks/TWM2/GunnarySergeant.png new file mode 100644 index 0000000..6f22c33 Binary files /dev/null and b/Univ/Ranks/TWM2/GunnarySergeant.png differ diff --git a/Univ/Ranks/TWM2/GunnarySergeant1.png b/Univ/Ranks/TWM2/GunnarySergeant1.png new file mode 100644 index 0000000..ff153fd Binary files /dev/null and b/Univ/Ranks/TWM2/GunnarySergeant1.png differ diff --git a/Univ/Ranks/TWM2/GunnarySergeant2.png b/Univ/Ranks/TWM2/GunnarySergeant2.png new file mode 100644 index 0000000..9ea0e7d Binary files /dev/null and b/Univ/Ranks/TWM2/GunnarySergeant2.png differ diff --git a/Univ/Ranks/TWM2/GunnarySergeant3.png b/Univ/Ranks/TWM2/GunnarySergeant3.png new file mode 100644 index 0000000..60ffd19 Binary files /dev/null and b/Univ/Ranks/TWM2/GunnarySergeant3.png differ diff --git a/Univ/Ranks/TWM2/GunnarySergeant4.png b/Univ/Ranks/TWM2/GunnarySergeant4.png new file mode 100644 index 0000000..f29bc5b Binary files /dev/null and b/Univ/Ranks/TWM2/GunnarySergeant4.png differ diff --git a/Univ/Ranks/TWM2/Insignia.png b/Univ/Ranks/TWM2/Insignia.png new file mode 100644 index 0000000..201b107 Binary files /dev/null and b/Univ/Ranks/TWM2/Insignia.png differ diff --git a/Univ/Ranks/TWM2/Lieutenant.png b/Univ/Ranks/TWM2/Lieutenant.png new file mode 100644 index 0000000..b59c09d Binary files /dev/null and b/Univ/Ranks/TWM2/Lieutenant.png differ diff --git a/Univ/Ranks/TWM2/Lieutenant1.png b/Univ/Ranks/TWM2/Lieutenant1.png new file mode 100644 index 0000000..e5b41cf Binary files /dev/null and b/Univ/Ranks/TWM2/Lieutenant1.png differ diff --git a/Univ/Ranks/TWM2/Lieutenant2.png b/Univ/Ranks/TWM2/Lieutenant2.png new file mode 100644 index 0000000..b778ef9 Binary files /dev/null and b/Univ/Ranks/TWM2/Lieutenant2.png differ diff --git a/Univ/Ranks/TWM2/Lieutenant3.png b/Univ/Ranks/TWM2/Lieutenant3.png new file mode 100644 index 0000000..80069e8 Binary files /dev/null and b/Univ/Ranks/TWM2/Lieutenant3.png differ diff --git a/Univ/Ranks/TWM2/Lieutenant4.png b/Univ/Ranks/TWM2/Lieutenant4.png new file mode 100644 index 0000000..dc69696 Binary files /dev/null and b/Univ/Ranks/TWM2/Lieutenant4.png differ diff --git a/Univ/Ranks/TWM2/LieutenantColonel.png b/Univ/Ranks/TWM2/LieutenantColonel.png new file mode 100644 index 0000000..770c8ee Binary files /dev/null and b/Univ/Ranks/TWM2/LieutenantColonel.png differ diff --git a/Univ/Ranks/TWM2/LieutenantColonel1.png b/Univ/Ranks/TWM2/LieutenantColonel1.png new file mode 100644 index 0000000..3380f00 Binary files /dev/null and b/Univ/Ranks/TWM2/LieutenantColonel1.png differ diff --git a/Univ/Ranks/TWM2/LieutenantColonel2.png b/Univ/Ranks/TWM2/LieutenantColonel2.png new file mode 100644 index 0000000..9d88b7c Binary files /dev/null and b/Univ/Ranks/TWM2/LieutenantColonel2.png differ diff --git a/Univ/Ranks/TWM2/LieutenantColonel3.png b/Univ/Ranks/TWM2/LieutenantColonel3.png new file mode 100644 index 0000000..ef3e8b4 Binary files /dev/null and b/Univ/Ranks/TWM2/LieutenantColonel3.png differ diff --git a/Univ/Ranks/TWM2/LordRog.png b/Univ/Ranks/TWM2/LordRog.png new file mode 100644 index 0000000..613a6c2 Binary files /dev/null and b/Univ/Ranks/TWM2/LordRog.png differ diff --git a/Univ/Ranks/TWM2/Major.png b/Univ/Ranks/TWM2/Major.png new file mode 100644 index 0000000..941a9e1 Binary files /dev/null and b/Univ/Ranks/TWM2/Major.png differ diff --git a/Univ/Ranks/TWM2/Major1.png b/Univ/Ranks/TWM2/Major1.png new file mode 100644 index 0000000..a9bb586 Binary files /dev/null and b/Univ/Ranks/TWM2/Major1.png differ diff --git a/Univ/Ranks/TWM2/Major2.png b/Univ/Ranks/TWM2/Major2.png new file mode 100644 index 0000000..fb320ce Binary files /dev/null and b/Univ/Ranks/TWM2/Major2.png differ diff --git a/Univ/Ranks/TWM2/Major3.png b/Univ/Ranks/TWM2/Major3.png new file mode 100644 index 0000000..91ef32f Binary files /dev/null and b/Univ/Ranks/TWM2/Major3.png differ diff --git a/Univ/Ranks/TWM2/MasterCommander.png b/Univ/Ranks/TWM2/MasterCommander.png new file mode 100644 index 0000000..efc64d9 Binary files /dev/null and b/Univ/Ranks/TWM2/MasterCommander.png differ diff --git a/Univ/Ranks/TWM2/MasterGeneral.png b/Univ/Ranks/TWM2/MasterGeneral.png new file mode 100644 index 0000000..0e78e3a Binary files /dev/null and b/Univ/Ranks/TWM2/MasterGeneral.png differ diff --git a/Univ/Ranks/TWM2/MasterGeneral1.png b/Univ/Ranks/TWM2/MasterGeneral1.png new file mode 100644 index 0000000..5682eec Binary files /dev/null and b/Univ/Ranks/TWM2/MasterGeneral1.png differ diff --git a/Univ/Ranks/TWM2/MasterGeneral2.png b/Univ/Ranks/TWM2/MasterGeneral2.png new file mode 100644 index 0000000..4c5d331 Binary files /dev/null and b/Univ/Ranks/TWM2/MasterGeneral2.png differ diff --git a/Univ/Ranks/TWM2/Officer1.png b/Univ/Ranks/TWM2/Officer1.png new file mode 100644 index 0000000..872dfdb Binary files /dev/null and b/Univ/Ranks/TWM2/Officer1.png differ diff --git a/Univ/Ranks/TWM2/Officer10.png b/Univ/Ranks/TWM2/Officer10.png new file mode 100644 index 0000000..fc7de81 Binary files /dev/null and b/Univ/Ranks/TWM2/Officer10.png differ diff --git a/Univ/Ranks/TWM2/Officer2.png b/Univ/Ranks/TWM2/Officer2.png new file mode 100644 index 0000000..e0b54d7 Binary files /dev/null and b/Univ/Ranks/TWM2/Officer2.png differ diff --git a/Univ/Ranks/TWM2/Officer3.png b/Univ/Ranks/TWM2/Officer3.png new file mode 100644 index 0000000..4daad22 Binary files /dev/null and b/Univ/Ranks/TWM2/Officer3.png differ diff --git a/Univ/Ranks/TWM2/Officer4.png b/Univ/Ranks/TWM2/Officer4.png new file mode 100644 index 0000000..97c48b8 Binary files /dev/null and b/Univ/Ranks/TWM2/Officer4.png differ diff --git a/Univ/Ranks/TWM2/Officer5.png b/Univ/Ranks/TWM2/Officer5.png new file mode 100644 index 0000000..5306e82 Binary files /dev/null and b/Univ/Ranks/TWM2/Officer5.png differ diff --git a/Univ/Ranks/TWM2/Officer6.png b/Univ/Ranks/TWM2/Officer6.png new file mode 100644 index 0000000..f0d7234 Binary files /dev/null and b/Univ/Ranks/TWM2/Officer6.png differ diff --git a/Univ/Ranks/TWM2/Officer7.png b/Univ/Ranks/TWM2/Officer7.png new file mode 100644 index 0000000..4811841 Binary files /dev/null and b/Univ/Ranks/TWM2/Officer7.png differ diff --git a/Univ/Ranks/TWM2/Officer8.png b/Univ/Ranks/TWM2/Officer8.png new file mode 100644 index 0000000..0afe352 Binary files /dev/null and b/Univ/Ranks/TWM2/Officer8.png differ diff --git a/Univ/Ranks/TWM2/Officer9.png b/Univ/Ranks/TWM2/Officer9.png new file mode 100644 index 0000000..64d6075 Binary files /dev/null and b/Univ/Ranks/TWM2/Officer9.png differ diff --git a/Univ/Ranks/TWM2/Private.png b/Univ/Ranks/TWM2/Private.png new file mode 100644 index 0000000..2f33680 Binary files /dev/null and b/Univ/Ranks/TWM2/Private.png differ diff --git a/Univ/Ranks/TWM2/Private1.png b/Univ/Ranks/TWM2/Private1.png new file mode 100644 index 0000000..66dd97b Binary files /dev/null and b/Univ/Ranks/TWM2/Private1.png differ diff --git a/Univ/Ranks/TWM2/Private2.png b/Univ/Ranks/TWM2/Private2.png new file mode 100644 index 0000000..f6799a5 Binary files /dev/null and b/Univ/Ranks/TWM2/Private2.png differ diff --git a/Univ/Ranks/TWM2/Private3.png b/Univ/Ranks/TWM2/Private3.png new file mode 100644 index 0000000..d3f1a51 Binary files /dev/null and b/Univ/Ranks/TWM2/Private3.png differ diff --git a/Univ/Ranks/TWM2/RankList.php b/Univ/Ranks/TWM2/RankList.php new file mode 100644 index 0000000..001b38a --- /dev/null +++ b/Univ/Ranks/TWM2/RankList.php @@ -0,0 +1,447 @@ + 0) { + return $prestige; + } + else { + return 0; + } + } + } + + function GetCompletedPrestige($GUID) { + $Prestige = getPrestige($GUID); + + global $PrestigeName; + + for($prst = 1; $prst <= 10; $prst++) { + if($Prestige >= $prst) { + echo "\"Officer "; + } + else { + if($prst < 10) { + echo "\"Rank "; + } + } + } + } + + function GetCompletedRanks($GUID) { + $EXP = getEXP($GUID); + // + global $RanksMinPoints; + global $RanksNewRank; + global $RankRankCount; + for($rnk = 0; $rnk < $RankRankCount; $rnk = $rnk + 1) { + if($rnk == 31) { + echo "
"; + } + if($EXP > $RanksMinPoints[$rnk +1]) { + $rname = $RanksNewRank[$rnk +1]; + //image output for each rank + $output = "".str_Replace("Grade", "", $rname).".png"; + $output2 = "".str_Replace("IV", "4", $output).".png"; + $output3 = "".str_Replace("III", "3", $output2).".png"; + $output4 = "".str_Replace("II", "2", $output3).".png"; + $output5 = "".str_Replace("I", "1", $output4).".png"; + $output6 = "".str_Replace(" ", "", $output5).".png"; + $output7 = "".str_Replace(".png", "", $output6).".png"; + echo "\"Image "; + } + else { + echo "\"Rank "; + } + } + } + + function getFileField($guid, $field) { + $myFile = "/home/phantom7/public_html/public/Univ/Data/".$guid."/Ranks/TWM2/Saved.TWMSave"; //sweet jesus :D + if(is_file($myFile)) { + $fh = fopen($myFile, 'r'); + $theData = fread($fh, filesize($myFile)); + fclose($fh); + // + $fieldStart = strpos($theData, "".$field." = \"") + (strlen($field)+4); + $fieldEnd = strpos($theData,"\";",$fieldStart); + $fieldLen = $fieldEnd - $fieldStart; + $fieldValue = substr($theData, $fieldStart, $fieldLen); + if($fieldStart <= (strlen($field)+4)) { + return 0; + } + else { + return $fieldValue; + } + } + else { + return 0; + } + } + + function GetOtherIcons($guid) { + //do time... + echo "

"; + $myFile = "/home/phantom7/public_html/public/Univ/Data/".$guid."/Ranks/TWM2/Saved.TWMSave"; //sweet jesus :D + if(is_file($myFile)) { + $fh = fopen($myFile, 'r'); + $theData = fread($fh, filesize($myFile)); + fclose($fh); + //exp + // + $totalTime = getFileField($guid, "gameTime"); + //get formatted + if($totalTime <= 0) { + echo "\"This "; + } + else { + $hour = floor($totalTime / 60); + $min = $totalTime % 60; + $title = "User has played TWM2 for ".$hour." hours and ".$min." minutes"; + echo "\"".$title."\" "; + } + // + $yvex = getFileField($guid, "bossDefeatCountYvex"); + if($yvex <= 0) { + echo "\"This "; + } + else { + $title = "Lord Yvex Defeat Count: ".$yvex.""; + echo "\"".$title."\" "; + } + $ws = getFileField($guid, "bossDefeatCountCnlWindshear"); + if($ws <= 0) { + echo "\"This "; + } + else { + $title = "Colonel Windshear Defeat Count: ".$ws.""; + echo "\"".$title."\" "; + } + // + $gol = getFileField($guid, "bossDefeatCountGhostOfLightning"); + if($gol <= 0) { + echo "\"This "; + } + else { + $title = "Ghost Of Lightning Defeat Count: ".$gol.""; + echo "\"".$title."\" "; + } + // + $vegenor = getFileField($guid, "bossDefeatCountVengenor"); + if($vegenor <= 0) { + echo "\"This "; + } + else { + $title = "General Vegenor Defeat Count: ".$vegenor.""; + echo "\"".$title."\" "; + } + // + $lordrog = getFileField($guid, "bossDefeatCountLordRog"); + if($lordrog <= 0) { + echo "\"This "; + } + else { + $title = "Lord Rog Defeat Count: ".$lordrog.""; + echo "\"".$title."\" "; + } + // + $insignia = getFileField($guid, "bossDefeatCountInsignia"); + if($insignia <= 0) { + echo "\"This "; + } + else { + $title = "Major Insignia Defeat Count: ".$insignia.""; + echo "\"".$title."\" "; + } + // + $vardison = getFileField($guid, "bossDefeatCountVardison3"); + if($vardison <= 0) { + echo "\"This "; + } + else { + $title = "Lord Vardison Defeat Count: ".$vardison.""; + echo "\"".$title."\" "; + } + // + $trevor = getFileField($guid, "bossDefeatCountTrebor"); + if($trevor <= 0) { + echo "\"This "; + } + else { + $title = "Lordranius Trevor Defeat Count: ".$trevor.""; + echo "\"".$title."\" "; + } + // + $stormrider = getFileField($guid, "bossDefeatCountStormrider"); + if($stormrider <= 0) { + echo "\"This "; + } + else { + $title = "Commander Stormrider Defeat Count: ".$stormrider.""; + echo "\"".$title."\" "; + } + // + $gof = getFileField($guid, "bossDefeatCountGhostOfFire"); + if($gof <= 0) { + echo "\"This "; + } + else { + $title = "Ghost Of Fire Defeat Count: ".$gof.""; + echo "\"".$title."\" "; + } + } + echo "
"; + } +?> \ No newline at end of file diff --git a/Univ/Ranks/TWM2/RankPage.php b/Univ/Ranks/TWM2/RankPage.php new file mode 100644 index 0000000..4774f17 --- /dev/null +++ b/Univ/Ranks/TWM2/RankPage.php @@ -0,0 +1,232 @@ + + +TWM2: Online Rank Info + + + +".$namef."'s Data

"; + if($guid == 2000343) { + echo "

TWM2 LEAD DEVELOPER

"; + } + else if($guid == 2130825 || $guid == 2001245) { + echo "

TWM2 CO-DEVELOPER

"; + } + //stuff + echo "
"; + echo "
"; + echo ""; + echo ""; + echo ""; + // + echo "
"; + //exp + // + $mEXPStart = strpos($theData, "millionxp = \"") + 13; + $mexpEnd = strpos($theData,"\";",$mEXPStart); + $mexpLen = $mexpEnd - $mEXPStart; + $mexp = substr($theData, $mEXPStart, $mexpLen); + if($mEXPStart <= 13) { + $mexp = 0; + } + //exp + $expStart = strpos($theData, "xp = \"", $mexpEnd) + 6; + $expEnd = strpos($theData,"\";",$expStart); + $expLen = $expEnd - $expStart; + if($expStart == false || $expLen <= 0) { + $exp = 0; + } + else { + $exp = substr($theData, $expStart, $expLen); + if($exp <= 0) { + $expStart = strpos($theData, "xp = \"") + 6; + $expEnd = strpos($theData,"\";",$expStart); + $expLen = $expEnd - $expStart; + $exp = substr($theData, $expStart, $expLen); + } + } + // + $f = $exp + (1000000*$mexp); + // + $exp += ($mexp*1000000); + // + $pStart = strpos($theData, "officer = \""); + if($pStart <= 0) { + $prestige = 0; + } + else { + $pStart += 11; + $pEnd = strpos($theData,"\";",$pStart); + $pLen = $pEnd - $pStart; + $prest = substr($theData, $pStart, $pLen); + $prestige = $prest; + } + // + echo "

EXP: ".number_format($exp)."

"; + echo "

Lifetime EXP: ".number_format($exp + ($prestige * 3000000))."

"; + //rank + $rankStart = strpos($theData, "rank = \"") + 8; + $rankEnd = strpos($theData,"\";",$rankStart); + $rankLen = $rankEnd - $rankStart; + $rank = substr($theData, $rankStart, $rankLen); + $rankf = str_replace("\"","",$rank); + // + $output = "".str_Replace("Grade", "", $rankf).".png"; + $output2 = "".str_Replace("IV", "4", $output).".png"; + $output3 = "".str_Replace("III", "3", $output2).".png"; + $output4 = "".str_Replace("II", "2", $output3).".png"; + $output5 = "".str_Replace("I", "1", $output4).".png"; + $output6 = "".str_Replace(" ", "", $output5).".png"; + $output7 = "".str_Replace(".png", "", $output6).".png"; + // + if($prestige > 0) { + echo "

Officer Level: ".$prestige."

"; + $output7 = "Officer".$prestige.".png"; + switch($prestige) { + case 1: + $rankf = "Instructive ".$rankf.""; + break; + case 2: + $rankf = "Excelling ".$rankf.""; + break; + case 3: + $rankf = "Champion ".$rankf.""; + break; + case 4: + $rankf = "Prestigious ".$rankf.""; + break; + case 5: + $rankf = "Supreme ".$rankf.""; + break; + case 6: + $rankf = "Glorious ".$rankf.""; + break; + case 7: + $rankf = "Ultimate ".$rankf.""; + break; + case 8: + $rankf = "Shadowing ".$rankf.""; + break; + case 9: + $rankf = "Phantom ".$rankf.""; + break; + case 10: + $rankf = "(*) Phantom ".$rankf.""; + break; + } + } + // + echo "

Current Rank:

"; + echo "\"Image

"; + //Global arrays + global $RanksMinPoints; + global $RanksNewRank; + global $RankRankCount; + global $PrestigeName; + // + $NextRankFound = 0; + // + if($rankf != "Master Commander" && ($exp < 3000000)) { + for($rnk = 0; $rnk < $RankRankCount; $rnk = $rnk + 1) { + if($NextRankFound == 0) { + if($exp >= $RanksMinPoints[$rnk +1]) { + $rname = $RanksNewRank[$rnk +1]; + } + else { + //ladies and gentlemen, we have reached our next rank + $NextRankFound = 1; + $NextRank = $PrestigeName[$prestige].$RanksNewRank[$rnk +1]; + $rexp = $RanksMinPoints[$rnk+1]; + $pexp = $RanksMinPoints[$rnk]; + $NextEXP = $rexp - $exp; + $next = ($exp - $pexp) / ($rexp - $pexp); + $perc = $next * 100; + } + } + } + } + else { + if($rankf != "Phantom Master Commander" && $rankf != "(*) Phantom Master Commander") { + $NextRank = "Officer Promotion"; + $NextEXP = 0; + $rexp = $exp; + $pexp = $RanksMinPoints[$rnk]; + $next = 1; + $perc = 100; + } + else { + //$NextRank = ""; + $NextEXP = 0; + $rexp = $exp; + $pexp = $RanksMinPoints[$rnk]; + $next = 1; + $perc = 100; + } + } + //$exp = current, $rexp = next rank, $pexp = previous rank + if(isSet($NextRank)) { + echo "Next Rank: ".$NextRank."

"; + } + echo "

"; + echo "
"; + echo "
"; + echo "(".number_format($exp)."/".number_format($rexp)."(".number_format($perc)."%)

"; + echo "EXP Needed: ".$NextEXP."

"; + //name + $phraseStart = strpos($theData, "phrase = \"") + 10; + if($phraseStart <= 0) { + echo "Phrase: None Set.

"; + } + else { + $phraseEnd = strpos($theData,"\";",$phraseStart); + $phraseLen = $phraseEnd - $phraseStart; + $phrase = substr($theData, $phraseStart , $phraseLen); + $phrasef = str_replace("\"","",$phrase); + if($phrasef != "") { + echo "Phrase: ".$phrasef."

"; + } + else { + echo "Phrase: None Set.

"; + } + } + // + echo "

"; + echo "

Current Rank Progression

"; + echo "
"; + echo "

"; + GetCompletedRanks($guid); + echo "

"; + echo "
"; + echo "

Current Officer Ranks Progression

"; + echo "
"; + echo "

"; + GetCompletedPrestige($guid); + echo "

"; + echo "
"; + echo "

Other

"; + echo "
"; + echo "

"; + //handle other icons here :P + GetOtherIcons($guid); + echo "
"; + } + else { + echo "GUID: ".$guid." Does not have any universally saved data.

"; + } +?> + + diff --git a/Univ/Ranks/TWM2/Sergeant.png b/Univ/Ranks/TWM2/Sergeant.png new file mode 100644 index 0000000..25b6640 Binary files /dev/null and b/Univ/Ranks/TWM2/Sergeant.png differ diff --git a/Univ/Ranks/TWM2/Sergeant1.png b/Univ/Ranks/TWM2/Sergeant1.png new file mode 100644 index 0000000..d3fbab1 Binary files /dev/null and b/Univ/Ranks/TWM2/Sergeant1.png differ diff --git a/Univ/Ranks/TWM2/Sergeant2.png b/Univ/Ranks/TWM2/Sergeant2.png new file mode 100644 index 0000000..9a57939 Binary files /dev/null and b/Univ/Ranks/TWM2/Sergeant2.png differ diff --git a/Univ/Ranks/TWM2/Sergeant3.png b/Univ/Ranks/TWM2/Sergeant3.png new file mode 100644 index 0000000..e8969be Binary files /dev/null and b/Univ/Ranks/TWM2/Sergeant3.png differ diff --git a/Univ/Ranks/TWM2/Sergeant4.png b/Univ/Ranks/TWM2/Sergeant4.png new file mode 100644 index 0000000..6d3d372 Binary files /dev/null and b/Univ/Ranks/TWM2/Sergeant4.png differ diff --git a/Univ/Ranks/TWM2/Stormrider.png b/Univ/Ranks/TWM2/Stormrider.png new file mode 100644 index 0000000..ea49009 Binary files /dev/null and b/Univ/Ranks/TWM2/Stormrider.png differ diff --git a/Univ/Ranks/TWM2/Trevor.png b/Univ/Ranks/TWM2/Trevor.png new file mode 100644 index 0000000..8b4145d Binary files /dev/null and b/Univ/Ranks/TWM2/Trevor.png differ diff --git a/Univ/Ranks/TWM2/Vardison.png b/Univ/Ranks/TWM2/Vardison.png new file mode 100644 index 0000000..e40ac42 Binary files /dev/null and b/Univ/Ranks/TWM2/Vardison.png differ diff --git a/Univ/Ranks/TWM2/Vegenor.png b/Univ/Ranks/TWM2/Vegenor.png new file mode 100644 index 0000000..ab82997 Binary files /dev/null and b/Univ/Ranks/TWM2/Vegenor.png differ diff --git a/Univ/Ranks/TWM2/Windshear.png b/Univ/Ranks/TWM2/Windshear.png new file mode 100644 index 0000000..9cf6219 Binary files /dev/null and b/Univ/Ranks/TWM2/Windshear.png differ diff --git a/Univ/Ranks/TWM2/Yvex.png b/Univ/Ranks/TWM2/Yvex.png new file mode 100644 index 0000000..48b6b4c Binary files /dev/null and b/Univ/Ranks/TWM2/Yvex.png differ diff --git a/Univ/Ranks/TWM2/error_log b/Univ/Ranks/TWM2/error_log new file mode 100644 index 0000000..b1ee5f6 --- /dev/null +++ b/Univ/Ranks/TWM2/error_log @@ -0,0 +1,241 @@ +[04-Jan-2010 17:35:29] PHP Parse error: syntax error, unexpected '}', expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 18 +[04-Jan-2010 18:24:53] PHP Parse error: syntax error, unexpected T_VARIABLE, expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 35 +[04-Jan-2010 19:07:49] PHP Parse error: syntax error, unexpected T_CASE in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 146 +[04-Jan-2010 19:16:47] PHP Fatal error: Call to undefined function strreplace() in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 28 +[05-Jan-2010 13:57:12] PHP Parse error: syntax error, unexpected '$' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 23 +[05-Jan-2010 13:57:33] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 52 +[05-Jan-2010 13:57:33] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 56 +[05-Jan-2010 13:57:33] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 52 +[05-Jan-2010 13:57:33] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 56 +[05-Jan-2010 13:57:33] PHP Warning: fopen(/home/phantom7/public_html/public/Univ/Data///Ranks/TWM2/Saved.TWMSave) [function.fopen]: failed to open stream: No such file or directory in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 38 +[05-Jan-2010 13:57:33] PHP Warning: fread(): supplied argument is not a valid stream resource in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 39 +[05-Jan-2010 13:57:33] PHP Warning: fclose(): supplied argument is not a valid stream resource in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 40 +[05-Jan-2010 13:57:33] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 43 +[05-Jan-2010 13:57:33] PHP Warning: fopen(/home/phantom7/public_html/public/Univ/Data///Ranks/TWM2/Saved.TWMSave) [function.fopen]: failed to open stream: No such file or directory in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 38 +[05-Jan-2010 13:57:33] PHP Warning: fread(): supplied argument is not a valid stream resource in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 39 +[05-Jan-2010 13:57:33] PHP Warning: fclose(): supplied argument is not a valid stream resource in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 40 +[05-Jan-2010 13:57:33] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 43 +[05-Jan-2010 13:59:22] PHP Parse error: syntax error, unexpected T_IF, expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 24 +[05-Jan-2010 14:01:09] PHP Parse error: syntax error, unexpected '}', expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top15.php on line 15 +[14-Jan-2010 11:10:28] PHP Parse error: syntax error, unexpected T_VARIABLE, expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top.php on line 49 +[14-Jan-2010 11:21:49] PHP Parse error: syntax error, unexpected '}' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top.php on line 123 +[14-Jan-2010 20:42:45] PHP Warning: Missing argument 1 for GatherTopRanks(), called in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top.php on line 58 and defined in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top.php on line 9 +[14-Jan-2010 20:51:43] PHP Warning: Missing argument 1 for DisplayAll(), called in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top.php on line 10 and defined in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 55 +[22-Jan-2010 11:08:10] PHP Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 229 +[22-Jan-2010 11:08:10] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 229 +[22-Jan-2010 11:08:44] PHP Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 229 +[22-Jan-2010 11:08:44] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 229 +[22-Jan-2010 11:08:46] PHP Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 229 +[22-Jan-2010 11:08:46] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 229 +[22-Jan-2010 11:08:46] PHP Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 229 +[22-Jan-2010 11:08:46] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 229 +[26-Jan-2010 12:33:29] PHP Parse error: syntax error, unexpected '<' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 11 +[12-Feb-2010 15:39:47] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 24 +[02-Nov-2010 21:53:27] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 140 +[02-Nov-2010 21:53:27] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 140 +[05-Nov-2010 23:29:16] PHP Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/top.php on line 9 +[08-Nov-2010 19:56:14] PHP Parse error: syntax error, unexpected '"', expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 18 +[21-Jan-2011 19:04:06] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 164 +[21-Jan-2011 19:04:06] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 164 +[21-Jan-2011 19:04:44] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 164 +[21-Jan-2011 19:04:44] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 164 +[21-Jan-2011 19:06:37] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 164 +[21-Jan-2011 19:06:37] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 164 +[21-Jan-2011 19:08:02] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 168 +[21-Jan-2011 19:08:02] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 168 +[21-Jan-2011 19:10:14] PHP Parse error: syntax error, unexpected ')', expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 169 +[21-Jan-2011 19:10:49] PHP Parse error: syntax error, unexpected ')', expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 169 +[21-Jan-2011 19:11:18] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 169 +[21-Jan-2011 19:12:40] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 171 +[21-Jan-2011 19:13:41] PHP Warning: Division by zero in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 167 +[21-Jan-2011 19:38:09] PHP Parse error: syntax error, unexpected ';' in /home/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 175 +[19-Jan-2012 15:04:23] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[19-Jan-2012 15:04:23] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 98 +[19-Jan-2012 15:04:23] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 106 +[19-Jan-2012 15:04:23] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 133 +[20-Jan-2012 20:37:49] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[20-Jan-2012 20:37:49] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 98 +[20-Jan-2012 20:37:49] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 106 +[20-Jan-2012 20:37:49] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 133 +[20-Jan-2012 20:40:01] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[20-Jan-2012 20:40:01] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 98 +[20-Jan-2012 20:40:01] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 106 +[20-Jan-2012 20:40:01] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 133 +[20-Jan-2012 20:40:51] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[20-Jan-2012 20:40:51] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 98 +[20-Jan-2012 20:40:51] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 106 +[20-Jan-2012 20:40:51] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 133 +[20-Jan-2012 20:41:59] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[20-Jan-2012 20:41:59] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 98 +[20-Jan-2012 20:41:59] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 106 +[20-Jan-2012 20:41:59] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 133 +[22-Jan-2012 03:30:22] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[22-Jan-2012 03:30:22] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 98 +[22-Jan-2012 03:30:22] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 106 +[22-Jan-2012 03:30:22] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 133 +[22-Jan-2012 03:58:22] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[22-Jan-2012 03:58:22] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 98 +[22-Jan-2012 03:58:22] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 106 +[22-Jan-2012 03:58:22] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 133 +[22-Jan-2012 07:30:16] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[22-Jan-2012 07:30:16] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 98 +[22-Jan-2012 07:30:16] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 106 +[22-Jan-2012 07:30:16] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 133 +[22-Jan-2012 17:25:26] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[22-Jan-2012 17:25:26] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 98 +[22-Jan-2012 17:25:26] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 106 +[22-Jan-2012 17:25:26] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 133 +[23-Jan-2012 08:33:58] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[23-Jan-2012 08:33:58] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 98 +[23-Jan-2012 08:33:58] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 106 +[23-Jan-2012 08:33:58] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 133 +[25-Jan-2012 14:54:54] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[25-Jan-2012 14:54:54] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 98 +[25-Jan-2012 14:54:54] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 106 +[25-Jan-2012 14:54:54] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 133 +[25-Jan-2012 14:55:14] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[25-Jan-2012 14:55:14] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 98 +[25-Jan-2012 14:55:14] PHP Warning: strpos() [function.strpos]: Offset not contained in string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 106 +[25-Jan-2012 14:55:14] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 133 +[25-Jan-2012 14:57:41] PHP Fatal error: Function name must be a string in /home/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 94 +[01-Feb-2014 10:31:55 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[01-Feb-2014 10:31:55 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[01-Feb-2014 10:31:55 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[03-Feb-2014 21:12:52 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[03-Feb-2014 21:12:52 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[03-Feb-2014 21:12:52 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[04-Feb-2014 13:47:32 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[04-Feb-2014 14:27:56 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[04-Feb-2014 15:43:40 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[04-Feb-2014 15:43:40 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[04-Feb-2014 15:43:40 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[04-Feb-2014 15:52:43 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 10 +[04-Feb-2014 22:25:46 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[05-Feb-2014 02:47:24 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[05-Feb-2014 08:37:23 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[05-Feb-2014 13:16:55 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[05-Feb-2014 13:22:59 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[05-Feb-2014 21:25:33 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[07-Feb-2014 20:03:52 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[07-Feb-2014 20:03:52 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[07-Feb-2014 20:03:52 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[08-Feb-2014 08:20:29 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[08-Feb-2014 08:20:29 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[08-Feb-2014 08:20:29 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[09-Feb-2014 07:44:25 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[09-Feb-2014 07:44:26 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[09-Feb-2014 07:44:26 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[09-Feb-2014 11:10:01 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[09-Feb-2014 11:10:01 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[09-Feb-2014 11:10:01 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[09-Feb-2014 12:25:17 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[10-Feb-2014 08:49:34 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[11-Feb-2014 01:54:09 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[11-Feb-2014 08:44:49 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[11-Feb-2014 22:11:06 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[11-Feb-2014 22:11:06 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[11-Feb-2014 22:11:06 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[13-Feb-2014 03:46:12 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[13-Feb-2014 03:47:33 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[13-Feb-2014 09:31:27 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[13-Feb-2014 22:57:32 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 165 +[13-Feb-2014 22:57:32 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 165 +[13-Feb-2014 22:57:32 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[13-Feb-2014 23:25:18 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[14-Feb-2014 02:19:05 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[14-Feb-2014 04:06:25 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[14-Feb-2014 05:04:30 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[14-Feb-2014 06:38:14 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[15-Feb-2014 00:44:07 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[16-Feb-2014 04:05:45 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[16-Feb-2014 05:44:38 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[16-Feb-2014 05:44:38 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[16-Feb-2014 05:44:38 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[16-Feb-2014 06:02:12 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[16-Feb-2014 06:09:25 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[16-Feb-2014 06:09:25 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[16-Feb-2014 06:09:25 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[16-Feb-2014 06:53:24 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[16-Feb-2014 13:38:00 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[16-Feb-2014 14:06:18 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[16-Feb-2014 14:10:28 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[16-Feb-2014 14:32:11 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[16-Feb-2014 14:48:12 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[16-Feb-2014 15:38:56 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[16-Feb-2014 15:47:17 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 10 +[17-Feb-2014 00:54:45 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 165 +[17-Feb-2014 00:54:45 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 165 +[17-Feb-2014 00:54:45 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[18-Feb-2014 02:45:00 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 165 +[18-Feb-2014 02:45:00 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 165 +[18-Feb-2014 02:45:00 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[18-Feb-2014 13:44:36 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[18-Feb-2014 18:28:33 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[18-Feb-2014 21:04:15 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[18-Feb-2014 22:10:19 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[19-Feb-2014 11:05:31 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[19-Feb-2014 11:05:31 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[19-Feb-2014 11:05:31 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[23-Feb-2014 23:42:23 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[23-Feb-2014 23:42:23 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[23-Feb-2014 23:42:23 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[24-Feb-2014 07:37:14 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[24-Feb-2014 07:40:59 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[24-Feb-2014 07:40:59 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[24-Feb-2014 07:40:59 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[24-Feb-2014 07:49:43 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 10 +[24-Feb-2014 15:59:47 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[24-Feb-2014 15:59:47 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[24-Feb-2014 15:59:47 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[25-Feb-2014 14:59:46 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[25-Feb-2014 15:22:28 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[25-Feb-2014 15:22:28 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[25-Feb-2014 15:22:28 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[25-Feb-2014 15:37:18 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[25-Feb-2014 16:06:57 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[25-Feb-2014 16:50:06 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[25-Feb-2014 17:19:12 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[25-Feb-2014 21:49:18 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 10 +[26-Feb-2014 06:56:18 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[26-Feb-2014 12:43:27 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[26-Feb-2014 14:22:55 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[26-Feb-2014 14:31:10 America/Denver] PHP Notice: Undefined index: guid in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 10 +[26-Feb-2014 19:06:28 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[27-Feb-2014 17:14:30 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[28-Feb-2014 00:55:46 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[28-Feb-2014 22:40:32 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[01-Mar-2014 12:04:52 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[01-Mar-2014 12:07:32 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[01-Mar-2014 12:07:32 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[01-Mar-2014 12:07:32 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[02-Mar-2014 09:46:26 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[02-Mar-2014 11:19:10 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[02-Mar-2014 14:31:46 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[02-Mar-2014 15:06:44 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[02-Mar-2014 16:49:30 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[02-Mar-2014 21:06:38 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[03-Mar-2014 20:15:34 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[04-Mar-2014 02:44:56 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[05-Mar-2014 02:41:33 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 165 +[05-Mar-2014 02:41:33 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 165 +[05-Mar-2014 02:41:33 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[05-Mar-2014 21:47:31 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[05-Mar-2014 22:00:37 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[05-Mar-2014 22:00:37 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[05-Mar-2014 22:00:37 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[06-Mar-2014 18:25:25 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 165 +[06-Mar-2014 18:25:25 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 165 +[06-Mar-2014 18:25:25 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[06-Mar-2014 20:54:38 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 165 +[06-Mar-2014 20:54:38 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 165 +[06-Mar-2014 20:54:38 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[08-Mar-2014 21:43:59 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[10-Mar-2014 00:28:59 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[10-Mar-2014 01:39:09 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[10-Mar-2014 01:39:09 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[10-Mar-2014 01:39:09 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[10-Mar-2014 04:40:19 America/Denver] PHP Notice: Undefined variable: TotalEXP in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/expScripts.php on line 50 +[11-Mar-2014 04:48:00 America/Denver] PHP Notice: Undefined variable: rnk in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[11-Mar-2014 04:48:00 America/Denver] PHP Notice: Undefined index: in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankPage.php on line 173 +[11-Mar-2014 04:48:00 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 +[11-Mar-2014 08:27:37 America/Denver] PHP Notice: Undefined variable: rankf in /home3/phantom7/public_html/public/Univ/Ranks/TWM2/RankList.php on line 303 diff --git a/Univ/Ranks/TWM2/expScripts.php b/Univ/Ranks/TWM2/expScripts.php new file mode 100644 index 0000000..2fc2486 --- /dev/null +++ b/Univ/Ranks/TWM2/expScripts.php @@ -0,0 +1,228 @@ +DEBUG MODE IS ON
"; + } + + // Open a known directory, and proceed to read its contents + if (is_dir($dir)) { + if ($dh = opendir($dir)) { + while (($file = readdir($dh)) !== false) { + if(is_file("".$dir."/".$file."/Ranks/TWM2/Saved.TWMSave")) { + $exp[$file] = ReadEXPFor15("".$dir."/".$file."/Ranks/TWM2/Saved.TWMSave", $file); + $pres[$file] = ReadPresFor15("".$dir."/".$file."/Ranks/TWM2/Saved.TWMSave", $file); + // + if($debugMode) { + echo $file ." - ". $exp[$file] ." - ". $pres[$file] ."
"; + } + $guid[$count] = $file; + $count++; + } + } + closedir($dh); + if($doCount == -1) { + $doCount = $count; + } + echo "*".($doCount-1)." Registered Players*

\n"; + //do eet + for($i = 1; $i <= $doCount-1; $i++){ + for($j = 1; $j <= $count-1; $j++) { + $Prest = $pres[$guid[$j]]; + $XPA = $exp[$guid[$j]] + (10000000*$Prest); + if(($XPA >= $highest) && ($XPA < $noabove)){ + $highest = $XPA; + $player = $guid[$j]; + } + } + $Top[$i] = GetNameFromFile("".$dir."/".$player."/Ranks/TWM2/Saved.TWMSave", $player); + if($Top[$i] == "") { + $Top[$i] = "NNF - ".$player.""; + } + $TopXP[$i] = $exp[$player]; + $TotalEXP += ($TopXP[$i] + $pres[$guid[$i]]*3000000); + $noabove = $highest; + //echo "No Above: ".$noAboveP."

"; + $highest = 0; + if($withlink) { + echo "".$i.". ".GetRankImage("".$dir."/".$player."/Ranks/TWM2/Saved.TWMSave", $player)."".$Top[$i].": ".number_format($TopXP[$i])." EXP

\n"; + } + else { + echo "".$i.". ".GetRankImage("".$dir."/".$player."/Ranks/TWM2/Saved.TWMSave", $player)."".$Top[$i].": ".number_format($TopXP[$i])." EXP

\n"; + } + } + } + echo "

"; + echo "TOTAL EXP BY ALL PLAYERS: ".number_format($TotalEXP).""; + } + } + + function DisplayTop15($link) { + GatherTopRanks(15, $link); + } + + function DisplayAll($link) { + GatherTopRanks(-1, $link); + } + + function GetNameFromFile($loc, $guid) { + $fh = fopen($loc, 'r'); + $theData = fread($fh, filesize($loc)); + fclose($fh); + //exp + $nameStart = strpos($theData, "name = \"") + 8; + $nameEnd = strpos($theData,"\";",$nameStart); + $nameLen = $nameEnd - $nameStart; + $name = substr($theData, $nameStart, $nameLen); + $namef = str_replace("\"","",$name); + return $namef; + } + + function ReadEXPFor15($loc, $guid) { + global $debugMode; + if($debugMode == 1) { + echo "Opening: ". $loc ." for ".$guid."
"; + } + $fh = fopen($loc, 'r'); + if(filesize($loc) <= 0) { + //corrupt? + fclose($fh); + return 0; + } + $theXPData = fread($fh, filesize($loc)); + fclose($fh); + // + $mEXPStart = strpos($theXPData , "millionxp = \"") + 13; + $mexpEnd = strpos($theXPData ,"\";",$mEXPStart); + $mexpLen = $mexpEnd - $mEXPStart; + $mexp = substr($theXPData, $mEXPStart, $mexpLen); + if($mEXPStart <= 13) { + $mexp = 0; + } + //exp + $expStart = strpos($theXPData, "xp = \"", $mexpEnd) + 6; + $expEnd = strpos($theXPData ,"\";",$expStart); + $expLen = $expEnd - $expStart; + if($expStart == false || $expLen <= 0) { + if($debugMode == 1) { + echo $guid ." 0 EXP by boolean
"; + } + $exp = 0; + } + else { + $exp = substr($theXPData , $expStart, $expLen); + if($exp <= 0) { + $expStart = strpos($theXPData, "xp = \"") + 6; + $expEnd = strpos($theXPData ,"\";",$expStart); + $expLen = $expEnd - $expStart; + $exp = substr($theXPData , $expStart, $expLen); + } + if($debugMode == 1) { + echo $guid ." -> ". $exp ." | ".substr($theXPData , $expStart, $expLen)." from ". $expStart ." to ". $expLen ."
0) { + $output7 = "Officer".$prestige.".png"; + switch($prestige) { + case 1: + $rankf = "Instructive ".$rankf.""; + break; + case 2: + $rankf = "Excelling ".$rankf.""; + break; + case 3: + $rankf = "Champion ".$rankf.""; + break; + case 4: + $rankf = "Prestigious ".$rankf.""; + break; + case 5: + $rankf = "Supreme ".$rankf.""; + break; + case 6: + $rankf = "Glorious ".$rankf.""; + break; + case 7: + $rankf = "Ultimate ".$rankf.""; + break; + case 8: + $rankf = "Shadowing ".$rankf.""; + break; + case 9: + $rankf = "Phantom ".$rankf.""; + break; + case 10: + $rankf = "(*) Phantom ".$rankf.""; + break; + } + } + // + return "\"Image"; + } +?> \ No newline at end of file diff --git a/Univ/Ranks/TWM2/locked.png b/Univ/Ranks/TWM2/locked.png new file mode 100644 index 0000000..c7ab68b Binary files /dev/null and b/Univ/Ranks/TWM2/locked.png differ diff --git a/Univ/Ranks/TWM2/progressbar2.png b/Univ/Ranks/TWM2/progressbar2.png new file mode 100644 index 0000000..4bd9537 Binary files /dev/null and b/Univ/Ranks/TWM2/progressbar2.png differ diff --git a/Univ/Ranks/TWM2/rank.css b/Univ/Ranks/TWM2/rank.css new file mode 100644 index 0000000..06502f3 --- /dev/null +++ b/Univ/Ranks/TWM2/rank.css @@ -0,0 +1,46 @@ +body +{ +font:small "Myriad Pro", sans-serif; font-size:1.5em; +background-image:url('screen_rank.png'); +background-repeat:no-repeat; +background-position:center center; +} +h1{font-size:1.5em;} +h2{color:#666;font-size:1em;font-weight:normal;} + +/*= Core CSS progress bar code */ +.progressbar1 { + width: 300px; + background: url(progressbar1.png) no-repeat 0 -40px; +} +.progressbar1-completed { + height: 20px; + margin-left: -1px; + background: url(progressbar1.png) no-repeat 1px 0; +} +.progressbar1-completed div { + float: right; + width: 50%; + height: 20px; + margin-right: -1px; + background: url(progressbar1.png) no-repeat 100% 0; + display: inline; +} + +.progressbar2 { + width: 300px; + background: url(progressbar2.png) no-repeat 0 -40px; +} +.progressbar2-completed { + height: 20px; + margin-left: -1px; + background: url(progressbar2.png) no-repeat 1px 0; +} +.progressbar2-completed div { + float: right; + width: 50%; + height: 20px; + margin-right: -1px; + background: url(progressbar2.png) no-repeat 100% 0; + display: inline; +} \ No newline at end of file diff --git a/Univ/Ranks/TWM2/rankForm.html b/Univ/Ranks/TWM2/rankForm.html new file mode 100644 index 0000000..bbd2574 --- /dev/null +++ b/Univ/Ranks/TWM2/rankForm.html @@ -0,0 +1,6 @@ +TWM2 Rank Display +

+

+

GUID:
+

+

\ No newline at end of file diff --git a/Univ/Ranks/TWM2/screen_rank.png b/Univ/Ranks/TWM2/screen_rank.png new file mode 100644 index 0000000..c0123b0 Binary files /dev/null and b/Univ/Ranks/TWM2/screen_rank.png differ diff --git a/Univ/Ranks/TWM2/stff.html b/Univ/Ranks/TWM2/stff.html new file mode 100644 index 0000000..dc4d447 --- /dev/null +++ b/Univ/Ranks/TWM2/stff.html @@ -0,0 +1,27 @@ +

NAME's DATA

+
+ + + + +
+

EXP: ###,###,###,###

+

Prestige Level: #

+

Current Rank:

+

 

+

Current Rank Progression

+
+

Ranks

+
+

Current Prestige Progression

+
+

Prestiges

+
+

+

Special Icons

+
+

+
Ze Icons
+


+

+  

\ No newline at end of file diff --git a/Univ/Ranks/TWM2/top.php b/Univ/Ranks/TWM2/top.php new file mode 100644 index 0000000..3a14011 --- /dev/null +++ b/Univ/Ranks/TWM2/top.php @@ -0,0 +1,12 @@ + + +TWM 2 Official Top Ranks + + +TWM2 Official Universal Ranks\n"; + DisplayAll(1); +?> + + \ No newline at end of file diff --git a/Univ/Ranks/antiTamperDispatch.php b/Univ/Ranks/antiTamperDispatch.php new file mode 100644 index 0000000..ef88636 --- /dev/null +++ b/Univ/Ranks/antiTamperDispatch.php @@ -0,0 +1,46 @@ +Read pl0x
"; + echo "You seem to be lost, allow me to assist you.
"; + echo "First off, you are accessing my files from an illegal location, which isn't very nice, so before you leave, I'm calling t3h cops.
"; + echo "Secondly, let me congratulate you for trying to spam my e-mail box with crap I don't want/need, you failed.
"; + echo "Thirdly, this web server is equipped with anti-spam, so you'd be banned in approxamately 7 seconds.
"; + echo "Fourthly, I think you're weak and pathetic, you should go cry because of this fact.
"; + echo "Fifth, smile for the spy satellite that just sent me your picture so I can blackmail it online.
"; + echo "Sixth, Hey, I've counted to 6.
"; + echo "Seven, your computer will self-destruct to windows 95 in approxamately 10.
"; + echo "Eight, 9 seconds.
"; + echo "Nine, 8 seconds.
"; + echo "Ten, 7 seconds.
"; + echo "Eleven, 6 seconds.
"; + echo "Twelve, 5 seconds.
"; + echo "Thirteen, 4 seconds.
"; + echo "Fourteen, 3 seconds.
"; + echo "Fifteen, 2 seconds.
"; + echo "Sixteen, 1 second.
"; + echo "Seventeen, I'm only joking btw.
"; + echo "Eighteen, That's the age that just wasted your time, and....
"; + die("Lastly, Thank you, for letting me enjoy your precious time."); + // + + /* + $key = $_POST['key']; + if(!IsAuthorizedKey($key)) { + die("bad_key"); + } + + $to = "phantom139@phantomgamesdevelopment.com"; + $subject = "TWM2 Anti-Tamper Alert"; + $body = "".$_POST['message'].""; + $headers = "From: antitamper@twm.phantomgamesdevelopment.com\r\n" . + "X-Mailer: php"; + if (mail($to, $subject, $body, $headers)) { + echo("email_sent"); + } + else { + echo("email_fail"); + } + */ +?> diff --git a/Univ/Ranks/functions.php b/Univ/Ranks/functions.php new file mode 100644 index 0000000..912a8a6 --- /dev/null +++ b/Univ/Ranks/functions.php @@ -0,0 +1,145 @@ + $cur) + { + return $row['reason']; + } + else + { + return 0; + } + } + } + + function ModRequiresAuth($MOD) { + if($MOD == "TWM2") { + return 1; + } + else if($MOD == "CnC4") { + return 0; + } + else if($MOD == "Powers") { + return 0; + } + else { + return 0; + } + } + + function BadVersion($MOD, $VER) { + if($MOD == "TWM2") { + if($VER < 3.4) { + return 1; + } + else { + return 0; + } + } + return 0; + } + + function isDev($guid) { + if(strcmp($guid, "2000343") == 0) { + return true; + } + else { + return false; + } + } + + function getEXPCap() { + $con = mysql_connect("localhost","",""); + if (!$con) { + return -1; + } + // Create table + mysql_select_db("phantom7_PGDConnect", $con); + $result1 = mysql_query("SELECT * FROM TWM2Admin"); + $row1 = mysql_fetch_array($result1); //1 row, lotsa data + return $row1[RankCap]; + } + + function verifyFile($guid, $temp) { + if(isDev($guid)) { + //always good, no matter what + return true; + } + // + $current = date('Ymd'); + $hash = sha1($current); + $len = strlen($hash) + 4; + if(getEXPCap() <= 0) { + return true; //no cap today, moving along.... + } + //check if we are illegal + $fh = fopen($temp, 'r'); + $theData = fread($fh, filesize($temp)); + fclose($fh); + $field = "xpGain".$hash; + $expStart = strpos($theData , "".$field." = \"") + $len; + $expEnd = strpos($theData ,"\";",$expStart); + $expLen = $expEnd - $expStart; + $expGain = substr(theData, $expStart, $expLen); + // + if($expGain > getEXPCap()) { + return false; + } + // looks like we passed all checks, moving on + return true; + } +?> diff --git a/Univ/Ranks/key.php b/Univ/Ranks/key.php new file mode 100644 index 0000000..f92cc16 --- /dev/null +++ b/Univ/Ranks/key.php @@ -0,0 +1,42 @@ +WUT?"; + echo "Allow me to ask. On the ".$time." you accessed this page trying to accomplish something. "; + echo "I don't think you've got very far on that, as at this stage I have used the die(); command "; + echo "to end the execution of the rest of this script, involving the upload of a file that is to be "; + echo "stored in a directory for later access by TWM2 servers. Even if the die(); command didn't work "; + echo "there is an if else block that will prevent anything else from happening if the statement is TRUE "; + echo "In fact, why the hell is this file even relevant to what you're doing? this is only key.php "; + echo "it will only return yes or no. if you want to TRY and do something, i suggest you "; + echo "try and \"h4xor\" upload.php, which will do most of the described above. "; + die("Thank you for wasting a few seconds of your life by reading the above, good bye!"); + } + else + { + require("functions.php"); // functions + + $HASH = $_POST['hash']; + $USER = $_POST['user']; + $GAMENAME = $_POST['gname']; + + if(!$USER || !preg_match('/^[a-zA-Z0-9]+$/', $USER)) + { + die('no'); + } + else if(!$HASH || !preg_match('/^[a-zA-Z0-9]+$/', $HASH)) + { + die('no'); + } + else if(!compareHash($USER, $GAMENAME, $HASH)) + { + die('no'); + } + else + { + die('yes'); + } + } +?> diff --git a/Univ/Ranks/upload.php b/Univ/Ranks/upload.php new file mode 100644 index 0000000..2c191ac --- /dev/null +++ b/Univ/Ranks/upload.php @@ -0,0 +1,133 @@ + 3) + { + header('x', TRUE, 410); + die(); + } + $GUID = $_POST['guid']; + $MOD = $_POST['mod']; + $HASH = $_POST['hash']; + $USER = $_POST['user']; + $GAMENAME = $_POST['gname']; + $VER = $_POST['version']; + + //Check for invalid fields first. + if(ModRequiresAuth($MOD)) { + if(!$GUID) + die("no_guid_input"); + else if(!$USER || !preg_match("/^[a-zA-Z0-9]+$/", $USER)) + die("bad_user_input"); + else if(!$MOD || !preg_match('/^[a-zA-Z0-9]+$/', $MOD)) + die("bad_mod_input"); + else if(!$VER || !preg_match('/^[a-zA-Z0-9].[a-zA-Z0-9]+$/', $VER) && !preg_match('/^[a-zA-Z0-9]+$/', $VER)) + die("bad_version_input"); + else if(!$HASH || !preg_match('/^[a-zA-Z0-9]+$/', $HASH)) + die("invalid_hash"); + else if(!preg_match('/^[0-9]+$/', $GUID)) + die("invalid_guid"); + else if(BadVersion($MOD, $VER)) //version check.. + die("incompatible_version"); + else if(!CheckValid($GUID)) + die("not_registered"); + else if(IsBanned($GUID)) + die("pgd_ban ".IsBanned($GUID)); + else if(!CompareHash($USER, $GAMENAME, $HASH)) + die("incorrect_hash"); + else { + $filebase = basename( $_FILES['uploadedfile']['name']); + if(!strstr($filebase, ".Dat") && !strstr($filebase, ".TWMSave") && !strstr($filebase, ".Rank")) + die("invalid_file_extension :".$filebase.""); + $myDir = "/home3/phantom7/public_html/public/Univ/Data/"; + $target_path = $myDir.$GUID."/Ranks/".$MOD."/".$filebase.""; + if(!is_dir("/home3/phantom7/public_html/public/Univ/Data/".$GUID."/")) + mkdir($myDir.$GUID."/", 0755); + if(!is_dir("/home3/phantom7/public_html/public/Univ/Data/".$GUID."/Ranks/")) + mkdir($myDir.$GUID."/Ranks/", 0755); + if(!is_dir("/home3/phantom7/public_html/public/Univ/Data/".$GUID."/Ranks/".$MOD."/")) + mkdir($myDir.$GUID."/Ranks/".$MOD."/", 0755); + // + if($MOD == "TWM2") { + //verify file + if(!VerifyFile($GUID, $_FILES['uploadedfile']['tmp_name'])) { + //client is pulling some file B.S. here (i.e. bad EXP ammount, breaking caps, ect.) + die("save_denied"); + } + // + if(is_file("/home3/phantom7/public_html/public/Univ/Data/".$GUID."/Ranks/TWM2/Saved.TWMSave")) + unlink($myDir.$GUID."/Ranks/TWM2/Saved.TWMSave"); + } + // + + if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) + echo "file_upload_ok"; + else + echo "upload_error"; + } + } + else { + if(!$GUID) + die("no_guid_input"); + else if(!$MOD || !preg_match('/^[a-zA-Z0-9]+$/', $MOD)) + die("bad_mod_input"); + else if(!$VER || !preg_match('/^[a-zA-Z0-9].[a-zA-Z0-9]+$/', $VER)) + die("bad_version_input"); + else if(!preg_match('/^[0-9]+$/', $GUID)) + die("invalid_guid"); + else if(BadVersion($MOD, $VER)) //version check.. + die("incompatible_version"); + else if(!CheckValid($GUID)) + die("not_registered"); + else if(IsBanned($GUID)) + die("pgd_ban ".IsBanned($GUID)); + else { + $filebase = basename( $_FILES['uploadedfile']['name']); + if(!strstr($filebase, ".Dat") && !strstr($filebase, ".TWMSave") && !strstr($filebase, ".Rank")) + die("invalid_file_extension :".$filebase.""); + $myDir = "/home3/phantom7/public_html/public/Univ/Data/"; + $target_path = $myDir.$GUID."/Ranks/".$MOD."/".$filebase.""; + if(!is_dir("/home3/phantom7/public_html/public/Univ/Data/".$GUID."/")) + mkdir($myDir.$GUID."/", 0755); + if(!is_dir("/home3/phantom7/public_html/public/Univ/Data/".$GUID."/Ranks/")) + mkdir($myDir.$GUID."/Ranks/", 0755); + if(!is_dir("/home3/phantom7/public_html/public/Univ/Data/".$GUID."/Ranks/".$MOD."/")) + mkdir($myDir.$GUID."/Ranks/".$MOD."/", 0755); + // + if($MOD == "TWM2") { + if(is_file("/home3/phantom7/public_html/public/Univ/Data/".$GUID."/Ranks/TWM2/Saved.TWMSave")) + unlink($myDir.$GUID."/Ranks/TWM2/Saved.TWMSave"); + } + // + + if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) + echo "file_upload_ok"; + else + echo "upload_error: ".$_FILES['uploadedfile']['error'] ." - ".$target_path.""; + } + } + + echo "\n"; +?> \ No newline at end of file diff --git a/Univ/TWM2.html b/Univ/TWM2.html new file mode 100644 index 0000000..dc34c8f --- /dev/null +++ b/Univ/TWM2.html @@ -0,0 +1,10 @@ +

PGD Connect

+

Total Warfare Mod 2

+
+

Features:

+

Universal Building Saving/Loading

+

Universal Rank Loading (Progression in core servers)

+
+

Pages:

+

Look Up Stats By GUID

+

Top Ranks List

\ No newline at end of file diff --git a/Univ/account.php b/Univ/account.php new file mode 100644 index 0000000..d0e518a --- /dev/null +++ b/Univ/account.php @@ -0,0 +1,75 @@ + + +PGD Connect Account + + +"; + +$con = mysql_connect("localhost","",""); +if (!$con) { + die('Could not connect: ' . mysql_error()); +} +mysql_select_db("phantom7_PGDConnect", $con); + +$result = mysql_query("SELECT * FROM Data WHERE email='$emailzor' AND password=$pass"); +if (!$result) +echo "Query failed! " . mysql_error(); + +while($row1 = mysql_fetch_array($result)) { + $match1 = $row1[email]; +} + +if($match1) { + echo "Successful login.

"; + fullaccount($emailzor); +} +else { + die('Invalid email or keycode given'); +} + +function fullaccount($email) { +echo "Loading Account...

"; +$con = mysql_connect("localhost","",""); +if (!$con) { + die('Could not connect: ' . mysql_error()); +} +mysql_select_db("phantom7_PGDConnect", $con); + +$result = mysql_query("SELECT * FROM Data WHERE email='$email'"); +if (!$result) +echo "Query failed! " . mysql_error(); + +while($row1 = mysql_fetch_array($result)) { + $result2 = mysql_query("SELECT * FROM Data WHERE guid='$row1[guid]'"); + if (!$result2) + echo "Query failed! " . mysql_error(); + + while($row2 = mysql_fetch_array($result2)) { + $match2 = $row2[Authenticated]; + } + if($match2) { + $authStr = "Authenticated: Full Access

"; + } + else { + $authStr = "Authenticated: Limited Access, Please Authenticate In Game

"; + } + echo "Tribes 2 GUID ".$row1[guid]." - [Unlink] - [Buildings] - [Ranks]. ".$authStr."

"; +} + +} + +?> + + diff --git a/Univ/cnc4/ctr.txt b/Univ/cnc4/ctr.txt new file mode 100644 index 0000000..c3182d2 --- /dev/null +++ b/Univ/cnc4/ctr.txt @@ -0,0 +1,15 @@ +C&C Tiberium Uprising +Created By: Phantom139, DarkTiger +Mod Version: Alpha 13 +--------------------- +Latest Updates: +* Welcome to the brand new C&C TU Client! +* Similar to our first C&C mod, it has tabs for each faction +* Data will be added to them as time progresses! +* A C&C TU soundpack is in the works by DarkTiger. +****************************** +* New gameplay style has been introduced +* Instead of being assigned your faction by team +* you now choose your faction to use. +****************************** +**End \ No newline at end of file diff --git a/Univ/cnc4/fog.txt b/Univ/cnc4/fog.txt new file mode 100644 index 0000000..a981cb7 --- /dev/null +++ b/Univ/cnc4/fog.txt @@ -0,0 +1,18 @@ +C&C Tiberium Uprising +Fist OF Vengence Data Stores +--------------------- +٦۲•‡„†رمثبف٠گ۶ﭫﭫ +*** Decryption Initiated.... +*** Report Converted To Human English. +--------------------- +Latest Battlefield Report: +** Full deployment to tiberium infested earth is complete! +** Initiate Harvesting operations at once, advise reading of following: + +** Offense: +* No New Reports +** Defense: +* No New Reports +** Support: +* No New Reports +**End \ No newline at end of file diff --git a/Univ/cnc4/gdi.txt b/Univ/cnc4/gdi.txt new file mode 100644 index 0000000..f13cd0f --- /dev/null +++ b/Univ/cnc4/gdi.txt @@ -0,0 +1,15 @@ +C&C Tiberium Uprising +GDI Central Command +--------------------- +Latest Battlefield Report: +**> Offensive Report: +* No New News To Report +**> Defensive Report: +* No New News To Report +**> Support Report: +* Hammerhead gunships have been fully permitted for deployment by support commanders. +** Armed with an AP Chaingun, we can take down both nod, and those aliens. +* AC-130 gunships have been approved for support commaders +** A requirement of 50 tiberium and a necessary tier 3 upgrade will be required to deploy them. +---> End Transmission <--- +**End \ No newline at end of file diff --git a/Univ/cnc4/nod.txt b/Univ/cnc4/nod.txt new file mode 100644 index 0000000..72d3b2f --- /dev/null +++ b/Univ/cnc4/nod.txt @@ -0,0 +1,18 @@ +C&C Tiberium Uprising +Temple Prime Report +--------------------- +Kane's Latest Report: +* Attention Commanders! The following has been issued for immediate reading: +** Offensive Commanders: +* Stealth tanks have been cleared for combat! +* Hidden Death! Spectre Artillery units are now available for your usage +*> Recommended for anti-defense purposes +** Defensive Commanders: +* Temple Of Nod Superweapons have been authorized to the Hand Of Kane Commanders +*> Launches the TCXX-4 Strike Based Nuclear Warhead +** Support Commanders: +* The destructive Salamander Airships have been authorized for deployment +*> Armed with: Catalyst Flame Launcher, and a Flame Mortar +*> Slow, but very powerful +* Peace Through Power! * +**End \ No newline at end of file diff --git a/Univ/login.php b/Univ/login.php new file mode 100644 index 0000000..02b2932 --- /dev/null +++ b/Univ/login.php @@ -0,0 +1,11 @@ +

PGD Connect Log-In:

+

Please log in to access PGD Connect Features.

+
+Forums Account E-Mail: +PGD Connect Password:
+

Forgot your password? No problem! +

+Account E-Mail: +
+

+

"; + echo "Congratulations, your account is now connected!

"; + echo "This is your keycode (Password): ".$keycode."

"; + echo "we recommend writing it down somewhere."; + +mysql_close($con); +?> diff --git a/Univ/twm2/patches/2.21.txt b/Univ/twm2/patches/2.21.txt new file mode 100644 index 0000000..60303d4 --- /dev/null +++ b/Univ/twm2/patches/2.21.txt @@ -0,0 +1,4 @@ +#Patch 2.21 - 1-8-10: Testing the autoupdate system +[DL] /public/Univ/twm2/patches/2.21/Works.txt Works.txt +[RL] scripts/TWM2/Systems/MainControl.cs 2 $TWM2::Version = 2.21; +*END \ No newline at end of file diff --git a/Univ/twm2/patches/2.21/Works.txt b/Univ/twm2/patches/2.21/Works.txt new file mode 100644 index 0000000..b88acb5 --- /dev/null +++ b/Univ/twm2/patches/2.21/Works.txt @@ -0,0 +1,3 @@ +This is a text file to test the new auto update system. + +If you can read this file, the auto updater works perfectly! \ No newline at end of file diff --git a/Univ/twm2/patches/2.215.txt b/Univ/twm2/patches/2.215.txt new file mode 100644 index 0000000..2df155d --- /dev/null +++ b/Univ/twm2/patches/2.215.txt @@ -0,0 +1,7 @@ +#Patch 2.215 - 1-8-10: Various Fixes +[RL] scripts/TWM2/Systems/MainControl.cs 2 $TWM2::Version = 2.215; +[RL] scripts/RankStuff.cs 183 $Ranks::NewRank[59] = "Commanding Officer"; +[RL] scripts/TWM2/Systems/BossSystem.cs 203 CompleteNWChallenge(%client, "Vard1"); +[RL] scripts/TWM2/Systems/BossSystem.cs 206 CompleteNWChallenge(%client, "Vard2"); +[RL] scripts/TWM2/Systems/BossSystem.cs 209 CompleteNWChallenge(%client, "Vard3"); +*END \ No newline at end of file diff --git a/Univ/twm2/patches/2.217.txt b/Univ/twm2/patches/2.217.txt new file mode 100644 index 0000000..72c7438 --- /dev/null +++ b/Univ/twm2/patches/2.217.txt @@ -0,0 +1,4 @@ +#Patch 2.25 - 1-9-10: Upgrades the autopatch system and makes it open source. +[DL] /public/Univ/twm2/patches/2.217/Patcher.cs scripts/TWM2/PGDConnect/Patcher.cs +[RL] scripts/TWM2/Systems/MainControl.cs 2 $TWM2::Version = 2.217; +*END \ No newline at end of file diff --git a/Univ/twm2/patches/2.217/Patcher.cs b/Univ/twm2/patches/2.217/Patcher.cs new file mode 100644 index 0000000..ed5daba --- /dev/null +++ b/Univ/twm2/patches/2.217/Patcher.cs @@ -0,0 +1,275 @@ +//Support.vl2 functions +//I did not make these two functions +//Nor do I take credit for them. +function getVersion(%text, %sublevel) { + %text = trim(%text); + + if(%text $= "") { + return ""; + } + + %decimal_pos = strstr(%text, "."); + + while(%sublevel) { + if(%decimal_pos == -1) { // we aren't at the desired sublevel and there are no more levels to check + return ""; + } + + // skip to next sublevel + %text = getSubStr(%text, %decimal_pos + 1, 1000); + %decimal_pos = strstr(%text, "."); + + %sublevel--; + } + + if(%decimal_pos == -1) { + return %text; + } + else { + return getSubStr(%text, 0, %decimal_pos); + } +} + + +function FileObject::insertLine(%this, %filename, %text, %line_number) { + // open/re-open the file to move to the start of it + if(!%this.openForRead(%filename)) { + return false; + } + + // read file into temporary storage + for(%i = 1; !%this.isEOF(); %i++) { + %temp[%i] = %this.readLine(); + } + + // make sure we can write to the file + if(!%this.openForWrite(%filename)) { + return false; + } + + %lines = %i; + + if(!%line_number) { + %line_number = 1; + } + + // write the lines back into the file, up to %line_number + for(%i = 1; %i < %line_number; %i++) { + %this.writeLine(%temp[%i]); + } + + // insert the text + %this.writeLine(%text); + + // leave %i the same so %text is inserted before %line_number + for(%i = %i; %i <= %lines; %i++) { + %this.writeLine(%temp[%i]); + } + + return true; +} + +//Begin Patcher.cs +//Accesses the PGD Connect Server to download and install patches +//Operators + +//Example 2.2.text File +//#2.2 +//[RL] TAB scripts/TWM2/Systems/MainControl.cs TAB 2 TAB$TWM2::Version = "2.2"; +//[IL] TAB scripts/TWM2/Systems/MainControl.cs TAB 3 TAB //Awesomeness! +//[DL] TAB public/univ/twm2/patches/2.2/newscript.cs TAB scripts/TWM2/ + +//PatchVer.txt (Server-Side) +//#Version - Basic Patch Info +//[DEL] TAB Loc - Deletes local file "Loc" +//[DL] TAB Loc TAB Ins - Installs a new script to "Ins" from "Loc" +//[IL] TAB Loc TAB Line TAB Text - Inserts a new line +//[RL] TAB Loc TAB Line TAB Text - Replaces a line with Text + +//Now the script +function CheckForModUpdate() { + echo("checking for updates.. standby"); + + %server = $PGDServer; + if (!isObject(UpdateScanner)) { + %Downloader = new TCPObject(UpdateScanner); + } + else { + %Downloader = UpdateScanner; + } + %Downloader.schedule(15000, disconnect); + %Downloader.schedule(1500, connect, ""@%server@":80"); +} + +function UpdateScanner::onLine(%this, %line) { + %modVersion = $TWM2::Version; + %line = strReplace(%line, "

", "\n"); + if(strStr(%line, ".txt") != -1) { + //patch.txt file, check the version + %version = strReplace(%line, ".txt", ""); + %v = ""@getVersion(%version)@"."@getVersion(%version, 1)@""; + if(%v > %modVersion) { + echo("*******************************"); + echo("Scanner Detects a new version"); + echo("Preparing to download patch from PGD"); + echo(""@%modVersion@" -> "@%v@""); + echo("*******************************"); + PrepPatchDownload(%version); + %this.disconnect(); + } + } +} + +function UpdateScanner::onConnected(%this) { + echo("Connected... standby"); + %server = $PGDServer; + %file = "/public/Univ/twm2/patches/PatchList.php"; + // + %query = "GET" SPC %file SPC "HTTP/1.1\r\nHost:" SPC %server @ "\r\n\r\n"; + %this.schedule(1500, send, %query); +} + +function UpdateScanner::onConnectFailed(%this) { + error("-- Could not connect to UpdateScanner, re-attempt, 30 sec."); + %this.disconnect(); + // + schedule(30000, 0, "CheckForModUpdate"); +} + +function UpdateScanner::onDisconnect(%this) { + error("-- UpdateScanner Disconnect, Deleteing Object"); + %this.schedule(1000, delete); +} + +//Prep Download +function PrepPatchDownload(%version) { + echo("Prepping: "@%version@""); + %server = $PGDServer; + if (!isObject(PatchScanner)) { + %TCPObj = new TCPObject(PatchScanner); + } + else { + %TCPObj = PatchScanner; + } + %TCPObj.version = %version; + %TCPObj.schedule(1500, connect, ""@%server@":80"); + echo("Connecting to Patch Text File.."); +} + +function PatchScanner::onConnected(%this) { + echo("Connected... standby"); + //make the file objects + new fileobject(InsertLine); + new fileobject(ReplaceLine); + new fileobject(DownloaderOfPatch); + // + %server = $PGDServer; + %file = "/public/Univ/twm2/patches/"@%this.version@".txt"; + // + %query = "GET" SPC %file SPC "HTTP/1.1\r\nHost:" SPC %server @ "\r\n\r\n"; + %this.schedule(1500, send, %query); +} + +function PatchScanner::onLine(%this, %line) { + //the operators + if(strStr(%line, "#") != -1) { + echo(%line); + } + //[DEL] TAB Loc - Deletes a file + if(strStr(%line, "[DEL]") != -1) { + %fileLocation = getField(%line, 1); + echo("Deleting "@%fileLocation@"."); + DeleteFile(%fileLocation); + } + //[DL] TAB Loc TAB Ins - Installs a new script to "Ins" from "Loc" + if(strStr(%line, "[DL]") != -1) { + %fileLocation = getField(%line, 1); + %installTo = getField(%line, 2); + echo("Downloading "@%fileLocation@" from PGD"); + RunDownloadOperator(%fileLocation, %installTo); + } + //[IL] TAB Loc TAB Line TAB Text - Inserts a new line + if(strStr(%line, "[IL]") != -1) { + %File = getField(%line, 1); + %lineNumber = getField(%line, 2); + %text = getField(%line, 3); + echo("Insert Line: "@%text@"("@%lineNumber@"), "@%file@""); + RunInsertLineOperator(%File, %lineNumber, %text); + } + //[RL] TAB Loc TAB Line TAB Text - Replaces a line with Text + if(strStr(%line, "[RL]") != -1) { + %File = getField(%line, 1); + %lineNumber = getField(%line, 2); + %text = getField(%line, 3); + echo("Replace Line: "@%text@"("@%lineNumber@"), "@%file@""); + RunReplaceLineOperator(%File, %lineNumber, %text); + } + if(strStr(%line, "*END") != -1) { + echo("Patching complete..."); + echo("Restart to finish applying, closing in 10 sec."); + schedule(10000, 0, "Quit"); + %this.disconnect(); + } +} + +function PatchScanner::onConnectFailed(%this) { + error("-- Could not connect to PatchScanner, disconnecting"); + %this.disconnect(); + schedule(2500, 0, CheckForModUpdate); + // +} + +function PatchScanner::onDisconnect(%this) { + error("-- PatchScanner Disconnect, Deleteing Object"); + %this.schedule(1000, delete); +} + +//OPERATORS +//Download +function RunDownloadOperator(%fileLocation, %installTo) { + %server = "www.phantomgamesdevelopment.com:80"; + if (!isObject(PatchDownload)) { + %Downloader = new HTTPObject(PatchDownload){}; + } + else { + %Downloader = PatchDownload; + } + %file = %fileLocation; + %Downloader.installTo = %installTo; + %Downloader.fileLocation = %file; + + //Downloader + %Downloader.client = %client; + %Downloader.get(%server, %file); + %Downloader.schedule(15000, "Disconnect"); +} + +function PatchDownload::onLine(%this, %line) { + DownloaderOfPatch.openforAppend(""@%this.installTo@""); + DownloaderOfPatch.WriteLine(""@%line@""); +} + +function PatchDownload::onConnectFailed(%this) { + //oh shit :D + error("-- Could not connect to PGD For Download."); + error("Patch [DL]: fail (connection), retry 3 sec"); + schedule(3000, 0, "RunDownloadOperator", %this.fileLocation, %this.installTo); +} + +function PatchDownload::onDisconnect(%this) { + echo("[DL] Ok, Proceeding"); + %this.delete(); +} + +//NOTE: +//we do not delete the file objects + +//InsertLine +function RunInsertLineOperator(%File, %lineNumber, %text) { + InsertLine.insertLine(%File, %text, %lineNumber); +} + +//ReplaceLine +function RunReplaceLineOperator(%File, %lineNumber, %text) { + ReplaceLine.replaceLine(%File, %text, %lineNumber); +} diff --git a/Univ/twm2/patches/2.22.txt b/Univ/twm2/patches/2.22.txt new file mode 100644 index 0000000..fd64368 --- /dev/null +++ b/Univ/twm2/patches/2.22.txt @@ -0,0 +1,92 @@ +#Patch 2.22 - 1-8-10: Added Helicopters and the Plasma Harrier Vehicle Schematics! +[RL] scripts/TWM2/Systems/MainControl.cs 2 $TWM2::Version = 2.22; +[RL] scripts/vehicles/serverVehicleHud.cs 3 $VehicleMenuNumEntries["mnuMain"] = 7; +[IL] scripts/vehicles/serverVehicleHud.cs 26 $VehicleMenu["mnuMain", 6, "submenu"] = true; +[IL] scripts/vehicles/serverVehicleHud.cs 27 $VehicleMenu["mnuMain", 6, "datablock"] = mnuHelicopters; +[IL] scripts/vehicles/serverVehicleHud.cs 28 $VehicleMenu["mnuMain", 6, "displayed"] = "Helicopters -->"; +[RL] scripts/vehicles/serverVehicleHud.cs 31 $VehicleMenuNumEntries["mnuLightFlyers"] = 2; +[IL] scripts/vehicles/serverVehicleHud.cs 35 $VehicleMenu["mnuLightFlyers", 1, "submenu"] = false; +[IL] scripts/vehicles/serverVehicleHud.cs 36 $VehicleMenu["mnuLightFlyers", 1, "datablock"] = Harrier; +[IL] scripts/vehicles/serverVehicleHud.cs 37 $VehicleMenu["mnuLightFlyers", 1, "displayed"] = "Plasma Harrier"; +[IL] scripts/vehicles/serverVehicleHud.cs 75 // Helicopters +[IL] scripts/vehicles/serverVehicleHud.cs 76 $VehicleMenuNumEntries["mnuHelicopters"] = 3; +[IL] scripts/vehicles/serverVehicleHud.cs 77 $VehicleMenu["mnuHelicopters", 0, "submenu"] = false; +[IL] scripts/vehicles/serverVehicleHud.cs 78 $VehicleMenu["mnuHelicopters", 0, "datablock"] = CombatHelicopter; +[IL] scripts/vehicles/serverVehicleHud.cs 79 $VehicleMenu["mnuHelicopters", 0, "displayed"] = "Combat Helicopter"; +[IL] scripts/vehicles/serverVehicleHud.cs 80 $VehicleMenu["mnuHelicopters", 1, "submenu"] = false; +[IL] scripts/vehicles/serverVehicleHud.cs 81 $VehicleMenu["mnuHelicopters", 1, "datablock"] = GunshipHelicopter; +[IL] scripts/vehicles/serverVehicleHud.cs 82 $VehicleMenu["mnuHelicopters", 1, "displayed"] = "Gunship Helicopter"; +[IL] scripts/vehicles/serverVehicleHud.cs 83 $VehicleMenu["mnuHelicopters", 2, "submenu"] = false; +[IL] scripts/vehicles/serverVehicleHud.cs 84 $VehicleMenu["mnuHelicopters", 2, "datablock"] = ApacheHelicopter; +[IL] scripts/vehicles/serverVehicleHud.cs 85 $VehicleMenu["mnuHelicopters", 2, "displayed"] = "Apache Helicopter"; +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +[RL] scripts/vehicles/serverVehicleHud.cs 389 for ( %i = 0; %i < 7; %i++ ) +[IL] scripts/vehicles/serverVehicleHud.cs 473 else if(%dbName $= "Harrier") { +[IL] scripts/vehicles/serverVehicleHud.cs 474 if(%client.CheckNWChallengeCompletion("Harrier3")) { +[IL] scripts/vehicles/serverVehicleHud.cs 475 return 1; +[IL] scripts/vehicles/serverVehicleHud.cs 476 } +[IL] scripts/vehicles/serverVehicleHud.cs 477 else { +[IL] scripts/vehicles/serverVehicleHud.cs 478 return 0; +[IL] scripts/vehicles/serverVehicleHud.cs 479 } +[IL] scripts/vehicles/serverVehicleHud.cs 480 } +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +[IL] scripts/vehicles/serverVehicleHud.cs 481 else if(%dbName $= "CombatHelicopter") { +[IL] scripts/vehicles/serverVehicleHud.cs 482 if(%client.CheckNWChallengeCompletion("Helicopter3")) { +[IL] scripts/vehicles/serverVehicleHud.cs 483 return 1; +[IL] scripts/vehicles/serverVehicleHud.cs 484 } +[IL] scripts/vehicles/serverVehicleHud.cs 485 else { +[IL] scripts/vehicles/serverVehicleHud.cs 486 return 0; +[IL] scripts/vehicles/serverVehicleHud.cs 487 } +[IL] scripts/vehicles/serverVehicleHud.cs 488 } +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +[IL] scripts/vehicles/serverVehicleHud.cs 489 else if(%dbName $= "GunshipHelicopter") { +[IL] scripts/vehicles/serverVehicleHud.cs 490 if(%client.CheckNWChallengeCompletion("GunHeli3")) { +[IL] scripts/vehicles/serverVehicleHud.cs 491 return 1; +[IL] scripts/vehicles/serverVehicleHud.cs 492 } +[IL] scripts/vehicles/serverVehicleHud.cs 493 else { +[IL] scripts/vehicles/serverVehicleHud.cs 494 return 0; +[IL] scripts/vehicles/serverVehicleHud.cs 495 } +[IL] scripts/vehicles/serverVehicleHud.cs 496 } +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +#Patch 2.22 Waiting... waiting... +[IL] scripts/vehicles/serverVehicleHud.cs 497 else if(%dbName $= "ApacheHelicopter") { +[IL] scripts/vehicles/serverVehicleHud.cs 498 if(%client.CheckNWChallengeCompletion("Apache3")) { +[IL] scripts/vehicles/serverVehicleHud.cs 499 return 1; +[IL] scripts/vehicles/serverVehicleHud.cs 500 } +[IL] scripts/vehicles/serverVehicleHud.cs 501 else { +[IL] scripts/vehicles/serverVehicleHud.cs 502 return 0; +[IL] scripts/vehicles/serverVehicleHud.cs 503 } +[IL] scripts/vehicles/serverVehicleHud.cs 504 } +[IL] scripts/station.cs 753 if(%obj.CombatHelicopter !$= "Removed") +[IL] scripts/station.cs 754 %sv.vehicle[CombatHelicopter] = true; +[IL] scripts/station.cs 755 if(%obj.GunshipHelicopter !$= "Removed") +[IL] scripts/station.cs 756 %sv.vehicle[GunshipHelicopter] = true; +[IL] scripts/station.cs 757 if(%obj.ApacheHelicopter !$= "Removed") +[IL] scripts/station.cs 758 %sv.vehicle[ApacheHelicopter] = true; +[IL] scripts/station.cs 759 if(%obj.Harrier !$= "Removed") +[IL] scripts/station.cs 760 %sv.vehicle[Harrier] = true; +[IL] scripts/InventoryHud.cs 355 $VehicleMax[CombatHelicopter] = 0; +[IL] scripts/InventoryHud.cs 356 $VehicleMax[GunshipHelicopter] = 0; +[IL] scripts/InventoryHud.cs 357 $VehicleMax[ApacheHelicopter] = 0; +[IL] scripts/InventoryHud.cs 358 $VehicleMax[Harrier] = 0; +[IL] scripts/InventoryHud.cs 372 $VehicleMax[CombatHelicopter] = 25; +[IL] scripts/InventoryHud.cs 373 $VehicleMax[GunshipHelicopter] = 25; +[IL] scripts/InventoryHud.cs 374 $VehicleMax[ApacheHelicopter] = 25; +[IL] scripts/InventoryHud.cs 375 $VehicleMax[Harrier] = 25; +[IL] scripts/InventoryHud.cs 386 $VehicleMax[CombatHelicopter] = 2; +[IL] scripts/InventoryHud.cs 387 $VehicleMax[GunshipHelicopter] = 2; +[IL] scripts/InventoryHud.cs 388 $VehicleMax[ApacheHelicopter] = 2; +[IL] scripts/InventoryHud.cs 389 $VehicleMax[Harrier] = 2; +*END diff --git a/Univ/twm2/patches/2.301.txt b/Univ/twm2/patches/2.301.txt new file mode 100644 index 0000000..15c1e11 --- /dev/null +++ b/Univ/twm2/patches/2.301.txt @@ -0,0 +1,5 @@ +#Patch 2.301 +#Signal360 makes speling mistakes, so this fixes /voteboss +[RL] scripts/TWM2/ChatCommands/Public.cs 18 if (!isObject(RndCli())) +[RL] scripts/TWM2/Systems/MainControl.cs 2 $TWM2::Version = 2.301; +*END \ No newline at end of file diff --git a/Univ/twm2/patches/2.325.txt b/Univ/twm2/patches/2.325.txt new file mode 100644 index 0000000..2cb90fb --- /dev/null +++ b/Univ/twm2/patches/2.325.txt @@ -0,0 +1,6 @@ +#PATCH 2.325 +#Alerts you to download 2.35 as soon as possible +#This version is prone to multiple hacker's entries +#Please download the newer version. +#This version will no longer run due to these issues. +*END \ No newline at end of file diff --git a/Univ/twm2/patches/3.01.txt b/Univ/twm2/patches/3.01.txt new file mode 100644 index 0000000..ef875fd --- /dev/null +++ b/Univ/twm2/patches/3.01.txt @@ -0,0 +1,4 @@ +#Patch 3.01 6-22-10: Modifies the killstreak datablocks to prevent admins from using /getgun to obtain killstreaks +[DL] /public/Univ/twm2/patches/3.01/SWBeaconer.cs scripts/weapons/Equipment/SWBeaconer.cs +[RL] scripts/TWM2/Systems/MainControl.cs 2 $TWM2::Version = 3.01; +*END \ No newline at end of file diff --git a/Univ/twm2/patches/3.01/SWBeaconer.cs b/Univ/twm2/patches/3.01/SWBeaconer.cs new file mode 100644 index 0000000..762062a --- /dev/null +++ b/Univ/twm2/patches/3.01/SWBeaconer.cs @@ -0,0 +1,3064 @@ +//-------------------------------------------------------------------------- +// SWs +// System Core now moved to: scripts/TWM2/Systems/Killstreak.cs +// Handles the Killstreak Datablocks +//-------------------------------------------------------------------------- + +//-------------------------------------- +// UAV +//-------------------------------------- +datablock ItemData(UAVCaller) +{ + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = UAVCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + isKSSW = 1; + + computeCRC = true; + +}; + +datablock ShapeBaseImageData(UAVCallerImage) +{ + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = UAVCaller; + offset = "0 0 0"; + + isKSSW = 1; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function UAVCallerImage::OnFire(%data, %obj, %slot) { + if(!%obj.client.HasUAV) { + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Nice Try."); + return; + } + %obj.client.HasUAV = 0; + %obj.client.xp += 20; + UpdateClientRank(%obj.client); + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: UAV Called In, +20XP."); + + $TWM2::UAVCalls[%obj.client.guid]++; + UpdateSWBeaconFile(%obj.client, "UAV"); + + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(UAVCaller, 0, true); + %count = 0; + if(!$TWM2::FFAMode) { + %obj.team.UAVLoop = UAVLoop(%obj, %obj.client.team, %count); + for(%i = 0; %i < ClientGroup.getCount(); %i++) { + %cl = ClientGroup.getObject(%i); + if(%cl.team == %obj.team) { + messageClient(%cl, 'MsgUAVOnline' , "Our UAV is Online (30 Seconds)"); + } + else { + messageClient(%cl, 'MsgUAVOnline' , "Enemy UAV is Airborne (30 Seconds)"); + } + } + } + else { + %obj.client.UAVLoop = UAVLoop(%obj, "", 0); + for(%i = 0; %i < ClientGroup.getCount(); %i++) { + %cl = ClientGroup.getObject(%i); + if(%cl == %obj.client) { + messageClient(%cl, 'MsgUAVOnline' , "Your UAV is Online (30 Seconds)"); + } + else { + messageClient(%cl, 'MsgUAVOnline' , ""@%obj.client.namebase@"'s UAV is Airborne (30 Seconds)"); + } + } + } +} + +function UAVLoop(%obj, %team, %ct) { + if(!isObject(Game)) { + return; + } + if(!$TWM2::FFAMode || %team !$= "") { + %ct++; + if(%ct > 30) { + MessageAll('msgOver', "Team "@%team@"'s UAV has expired."); + return; + } + for(%i = 0; %i < ClientGroup.getCount(); %i++) { + %cl = ClientGroup.getObject(%i); + if(%cl.team != %team && !%cl.IsActivePerk("UAV Disabler")) { + if(isObject(%cl.player)) { + %cl.UAVMarkerWp = new WayPoint() { + position = %cl.player.getPosition(); + dataBlock = "WayPointMarker"; + team = %cl.team; + name = ""@%cl.namebase@""; + }; + MissionCleanup.add(%cl.UAVMarkerWp); + %cl.UAVMarkerWp.schedule(1000, "Delete"); + } + } + } + %obj.team.UAVLoop = schedule(1000, 0, "UAVLoop", %obj, %team, %ct); + } + else { + %ct++; + if(%ct > 30) { + MessageAll('msgOver', ""@%obj.client.namebase@"'s UAV has expired."); + return; + } + for(%i = 0; %i < ClientGroup.getCount(); %i++) { + %cl = ClientGroup.getObject(%i); + if(%cl != %obj.client && !%cl.IsActivePerk("UAV Disabler")) { + if(isObject(%cl.player)) { + %cl.UAVMarkerWp = new WayPoint() { + position = %cl.player.getPosition(); + dataBlock = "WayPointMarker"; + team = 31; //some rediculous number to make them all enemies + name = ""@%cl.namebase@""; + }; + MissionCleanup.add(%cl.UAVMarkerWp); + %cl.UAVMarkerWp.schedule(1000, "Delete"); + } + } + } + %obj.client.UAVLoop = schedule(1000, 0, "UAVLoop", %obj, "", %ct); + } +} + +//-------------------------------------- +// AIRSTRIKE +//-------------------------------------- +datablock ItemData(AirstrikeCaller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = AirstrikeCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(AirstrikeCallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = AirstrikeCaller; + offset = "0 0 0"; + + isKSSW = 1; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function AirstrikeCallerImage::OnFire(%data, %obj, %slot) { + %ASCam = new Camera() { + dataBlock = TWM2ControlCamera; + }; + if(!%obj.client.UnlimitedAS) { + %obj.use(AirstrikeCaller); + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(AirstrikeCaller, 0, true); + } + + MissionCleanup.add(%ASCam); + %ASCam.setTransform(%obj.getTransform()); + %ASCam.setFlyMode(); + %ASCam.mode = "AirstrikeCall"; + %obj.client.setControlObject(%ASCam); + CameraMessageLoop(%obj.client, %ASCam, %ASCam.mode); +} + +function SpawnBomber(%CallerClient, %callPos, %strikePos, %add) { + %strikePos = getWords(%strikePos, 0, 1) SPC (getWord(%strikePos, 2) + 150); + %Bomber = new FlyingVehicle() { + dataBlock = BomberFlyer; + position = VectorAdd(%callPos, %add); + team = %CallerClient.team; + }; + MissionCleanup.add(%Bomber); + BomberImpulse(%Bomber, %strikePos, %CallerClient, 0); + %Bomber.schedule(30000, "Delete"); + //Rot + %Bomber.ReachedDest = 0; + ConstantBomberTurningLoop(%bomber, %strikePos); + return %Bomber; +} + +function ConstantBomberTurningLoop(%obj, %TPos) { + //keeps us in line with out target + if(!isObject(%obj)) { + return; + } + %BPos = %obj.getPosition(); + // + %Target = vectorSub(%TPos, %BPos); + %SwapA = -1 * getWord(%target, 0); + %TVector = getWord(%target, 1)@" "@%SwapA@" 0"; + %obj.setRotation(fullrot("0 0 0",%TVector)); + + %dist = vectorDist(%TPos, %BPos); + if(%dist < 75) { + %obj.ReachedDest = 1; + return; + } + else { + schedule(100, 0, "ConstantBomberTurningLoop", %obj, %tpos); + } +} + +function Airstrike(%CallerClient, %position, %dirFrom) { + + if(!%CallerClient.UnlimitedAS) { + $TWM2::AirstrikeCalls[%CallerClient.guid]++; + UpdateSWBeaconFile(%CallerClient, "AirStrike"); + } + + //new stuff TWM2 2.6 + //%dirFrom = Spawn Position of Aircraft + %THeight = getTerrainHeight(%dirFrom); + %THeightCons = %THeight + 150; + //Consider wartower + if(!$TWM::PlayingWarTower) { + if((%THeightCons) <= 5 && (%THeightCons) > -200) { + //baaaaaaad + %NewZ = %THeight + 150; //give us the perfect height + } + else { + //fine + %NewZ = getWord(%dirFrom, 2) + 150; + } + } + %CallPos = getWords(%dirFrom, 0, 1) SPC %NewZ; + // + //echo(%callPos); + + if(getWord(%callPos, 0) < getWord(%callPos, 1)) { + %b1Add = "-10 10 -20"; + %Bomber1 = SpawnBomber(%CallerClient, %callPos, %position, %b1add); + %b2Add = "20 20 10"; + %Bomber2 = schedule(2000, 0, "SpawnBomber", %CallerClient, %callPos, %position, %b2add); + %b3Add = "-10 -10 20"; + %Bomber3 = schedule(4000, 0, "SpawnBomber", %CallerClient, %callPos, %position, %b3add); + %b4Add = "20 -20 -10"; + %Bomber4 = schedule(6000, 0, "SpawnBomber", %CallerClient, %callPos, %position, %b4add); + } + else { + %b1Add = "-10 10 -20"; + %Bomber1 = SpawnBomber(%CallerClient, %callPos, %position, %b1add); + %b2Add = "20 20 10"; + %Bomber2 = schedule(2000, 0, "SpawnBomber", %CallerClient, %callPos, %position, %b2add); + %b3Add = "-10 -10 20"; + %Bomber3 = schedule(4000, 0, "SpawnBomber", %CallerClient, %callPos, %position, %b3add); + %b4Add = "20 -20 -10"; + %Bomber4 = schedule(6000, 0, "SpawnBomber", %CallerClient, %callPos, %position, %b4add); + } +} + +function BomberImpulse(%obj, %pos, %cl, %count) { + if(!isObject(%obj)) { + return; + } + //not there yet + %count++; + if(vectorDist(%obj.getPosition(), %pos) > 345) { + if(%count == 2) { + %count = 0; + } + if(vectorLen(%obj.getVelocity()) < 400) { + %obj.applyImpulse(%obj.getPosition(),vectorScale(%obj.getForwardVector(), 1535 * 1.3)); + } + } + //in range.. BOMB EM + else { + if(vectorLen(%obj.getVelocity()) < 400) { + %obj.applyImpulse(%obj.getPosition(),vectorScale(%obj.getForwardVector(), 800 * 1.3)); + } + if(%count == 2) { + AirstrikeDropBombs(%obj, %pos, %cl); + %count = 0; + } + } + schedule(500, 0, "BomberImpulse", %obj, %pos, %cl, %count); +} + +function AirstrikeDropBombs(%obj, %pos, %cl) { + if(!isObject(%obj)) { + return; + } + %p = new (BombProjectile)() { + dataBlock = BomberBomb; + initialDirection = "0 0 -5"; + initialPosition = %obj.getPosition(); + sourceObject = %obj; + sourceSlot = 0; + }; + MissionCleanup.add(%p); + //set the projectile to be owned by the caller + // adds moar kills =-D + if(isObject(%cl.player)) { + %p.sourceObject = %cl.player; + } +} + +//-------------------------------------- +// HELICOPTER +//-------------------------------------- +datablock ItemData(HeliCaller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = HeliCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(HeliCallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = HeliCaller; + offset = "0 0 0"; + + isKSSW = 1; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function HeliCallerImage::OnFire(%data, %obj, %slot) { + if(!%obj.client.HasHeli) { + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Nice Try."); + return; + } + if(Game.CheckModifier("Scrambler") == 1) { + for(%i = 0; %i < MissionCleanup.getCount(); %i++) { + %obj = MissionCleanup.getObject(%i); + if(%obj.isZombie) { + if(%obj.isAlive()) { + if(%obj.getDatablock().getName() $= "LordZombieArmor") { + messageClient(%obj.client, 'msgHeliComing', "\c5HELLJUMP: A Zombie Lord Is Scrambling the Signal, Helicopters/Harriers cannot be called in at the time."); + return; + } + } + } + } + } + %obj.client.xp += 50; + UpdateClientRank(%obj.client); + + $TWM2::HeliCalls[%obj.client.guid]++; + UpdateSWBeaconFile(%obj.client, "Heli"); + + for(%i = 0; %i < ClientGroup.getCount(); %i++) { + %cl = ClientGroup.getObject(%i); + if(%cl.team == %obj.client.team) { + messageClient(%cl, 'msgHeliComing', "\c5TWM2: Friendly Helicopter Approaching"); + } + else { + messageClient(%cl, 'msgHeliComing', "\c5TWM2: Enemy Helicopter Inbound"); + } + } + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Combat Helicopter Called In, +50XP."); + %obj.client.HasHeli = 0; + + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(HeliCaller, 0, true); + // + MakeTheHeli(%obj.client); +} + +function MakeTheHeli(%cl, %gunner) { + if(%gunner $= "") { + %gunner = 0; + } + + if(%gunner) { + %Heli = new FlyingVehicle() { + dataBlock = ApacheHelicopter; + position = VectorAdd(VectorAdd(getRandomPosition(250, 1), "500 0 150"), %cl.player.getPosition()); + team = %cl.team; + }; + MissionCleanup.add(%Heli); + %Heli.doneAttack = 0; + // + %Heli.team = %cl.team; + + %heli.Targeting = HeliScan(%heli); + schedule(60000, 0, "EndHeli", %Heli); + + %cl.setControlObject(%Heli.turretObject); + commandToClient(%cl, 'ControlObjectResponse', true, getControlObjectType(%Heli.turretObject,%cl.player)); + %cl.schedule(500, "setControlObject", %Heli.turretObject); + HeliControlLoop(%cl, %Heli); + %cl.player.lastTransformStuff = %cl.player.getTransform(); + %cl.player.setPosition(VectorAdd(%x SPC %y SPC 0,$Prison::JailPos)); + } + else { + %Heli = new FlyingVehicle() { + dataBlock = CombatHelicopter; + position = VectorAdd(VectorAdd(getRandomPosition(250, 1), "500 0 150"), %cl.player.getPosition()); + team = %cl.team; + }; + MissionCleanup.add(%Heli); + %Heli.doneAttack = 0; + // + %Heli.team = %cl.team; + + %heli.Targeting = HeliScan(%heli); + schedule(60000, 0, "EndHeli", %Heli); + } +} + +function HeliControlLoop(%client, %gunship) { + if(!isObject(%gunship)) { + if(isObject(%client.player)) { + ReMoveClientSW(%client); + } + return; + } + //Remember, we're controlling the turret + if(%client.getControlObject() != %gunship.turretObject) { + if(isObject(%client.player)) { + ReMoveClientSW(%client); + } + EndHeli(%gunship); + return; + } + schedule(100, 0, "HeliControlLoop", %client, %gunship); +} + + +function HeliImpulse(%obj) { + if(!isObject(%obj)) { + return; + } + if(vectorLen(%obj.getVelocity()) < 500) { + %obj.applyImpulse(%obj.getPosition(),vectorScale(%obj.getForwardVector(), 1535 * 1.3)); + } + schedule(500, 0, "HeliImpulse", %obj); +} + +function EndHeli(%heli) { + if(!isObject(%heli)) { + return; + } + %heli.doneAttack = 1; + cancel(%heli.Targeting); + HeliImpulse(%heli); + %heli.schedule(10000, "delete"); +} + +function HeliScan(%heli) { + //echo("scan begin"); + if(!isObject(%heli)) { + //echo("no heli"); + return; + } + if(%heli.doneAttack == 1) { + //echo("done attacking"); + return; + } + InitContainerRadiusSearch(%heli.getposition(), 9999, $TypeMasks::PlayerObjectType); + while ((%target = containerSearchNext()) != 0) { + //echo("target "@%target@""); + if(%target.team != %heli.team) { + //echo("lock"); + HeliBeginAttack(%heli, %target); + return; + } + } + //echo("no targs"); + %heli.Targeting = schedule(500, 0, "HeliScan", %heli); +} + +function HeliBeginAttack(%heli, %target) { + %pos = %heli.getworldboxcenter(); + + if(!isobject(%heli)) { + return; + } + if(!isObject(%target) || %target.getState() $= "Dead") { + //echo("dead target"); + %heli.Targeting = schedule(500, 0, "HeliScan", %heli); + return; + } + + schedule(500, 0, "HeliBeginAttack", %heli, %target); + %clpos = %target.getPosition(); + if(vectorDist(%clpos, %pos) < 125) { + return; //no movement needed... + } + %vector = vectorNormalize(vectorAdd(vectorSub(%clpos, %pos), "50 0 100")); + %v1 = getword(%vector, 0); + %v2 = getword(%vector, 1); + %nv1 = %v2; + %nv2 = (%v1 * -1); + %none = 0; + %vector2 = %nv1@" "@%nv2@" 10"; + %heli.setRotation(fullrot("0 0 0",%vector2)); + + %moveMult = 1535; + %vector = vectorscale(%vector, %moveMult); + + %x = Getword(%vector,0); + %y = Getword(%vector,1); + %z = Getword(%vector,2); + + %vector = %x@" "@%y@" "@%z@""; + %heli.applyImpulse(%pos, %vector); + +} + + + + +//-------------------------------------- +// STEALTH BOMBER AIRSTRIKE +//-------------------------------------- +datablock ItemData(StealthAirstrikeCaller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = StealthAirstrikeCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(StealthAirstrikeCallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = StealthAirstrikeCaller; + offset = "0 0 0"; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + isKSSW = 1; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function StealthAirstrikeCallerImage::OnFire(%data, %obj, %slot) { + %ASCam = new Camera() { + dataBlock = TWM2ControlCamera; + }; + // if(!%obj.client.UnlimitedAS) { + %obj.use(StealthAirstrikeCaller); + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(StealthAirstrikeCaller, 0, true); + // } + + MissionCleanup.add(%ASCam); + %ASCam.setTransform(%obj.getTransform()); + %ASCam.setFlyMode(); + %ASCam.mode = "StlhAirstrikeCall"; + %obj.client.setControlObject(%ASCam); + CameraMessageLoop(%obj.client, %ASCam, %ASCam.mode); +} + +function StealthAirstrike(%CallerClient, %position, %dirFrom) { + $TWM2::StealthAirStrikeCalls[%CallerClient.guid]++; + UpdateSWBeaconFile(%CallerClient, "StealthAirStrike"); + + //new stuff TWM2 2.6 + //%dirFrom = Spawn Position of Aircraft + %THeight = getTerrainHeight(%dirFrom); + %THeightCons = %THeight + 150; + //Consider wartower + if(!$TWM::PlayingWarTower) { + if((%THeightCons) <= 5 && (%THeightCons) > -200) { + //baaaaaaad + %NewZ = %THeight + 150; //give us the perfect height + } + else { + //fine + %NewZ = getWord(%dirFrom, 2) + 150; + } + } + %CallPos = getWords(%dirFrom, 0, 1) SPC %NewZ; + + %Bomber1 = new FlyingVehicle() { + dataBlock = BomberFlyer; + position = %callPos; + team = %CallerClient.team; + }; + MissionCleanup.add(%Bomber1); + //Impulse the bombers + SlthBomberImpulse(%Bomber1, %position, %CallerClient); + %Bomber1.setCloaked(true); + %Bomber1.schedule(30000, "Delete"); + %strikePos = getWords(%position, 0, 1) SPC (getWord(%position, 2) + 150); + ConstantBomberTurningLoop(%Bomber1, %strikePos); +} + +function ccSuperStealth(%sender, %args) { + if(!%sender.issuperadmin) { + return 3; + } + if(!isObject(%sender.player) || %sender.player.getState() $= "dead") { + messageClient(%sender, 'msgfail', "\c5Airstrike. youm ust be alivez"); + return; + } + SuperStealthAirstrike(%sender); +} + +function SuperStealthAirstrike(%CallerClient) { + %position = %callerClient.player.getPosition(); + %Bomber1 = new FlyingVehicle() { + dataBlock = BomberFlyer; + position = VectorAdd(%position, "0 -700 250"); + team = %CallerClient.team; + }; + MissionCleanup.add(%Bomber1); + //Impulse the bombers + SlthBomberImpulse(%Bomber1, %position, %CallerClient); + %Bomber1.setCloaked(true); + %Bomber1.schedule(30000, "Delete"); + // + %Bomber2 = new FlyingVehicle() { + dataBlock = BomberFlyer; + position = VectorAdd(%position, "15 -710 250"); + team = %CallerClient.team; + }; + MissionCleanup.add(%Bomber2); + //Impulse the bombers + SlthBomberImpulse(%Bomber2, %position, %CallerClient); + %Bomber2.setCloaked(true); + %Bomber2.schedule(30000, "Delete"); + // + %Bomber3 = new FlyingVehicle() { + dataBlock = BomberFlyer; + position = VectorAdd(%position, "-15 -710 250"); + team = %CallerClient.team; + }; + MissionCleanup.add(%Bomber3); + //Impulse the bombers + SlthBomberImpulse(%Bomber3, %position, %CallerClient); + %Bomber3.setCloaked(true); + %Bomber3.schedule(30000, "Delete"); + // + %Bomber4 = new FlyingVehicle() { + dataBlock = BomberFlyer; + position = VectorAdd(%position, "15 -725 250"); + team = %CallerClient.team; + }; + MissionCleanup.add(%Bomber4); + //Impulse the bombers + SlthBomberImpulse(%Bomber4, %position, %CallerClient); + %Bomber4.setCloaked(true); + %Bomber4.schedule(30000, "Delete"); + // + %Bomber5 = new FlyingVehicle() { + dataBlock = BomberFlyer; + position = VectorAdd(%position, "-15 -725 250"); + team = %CallerClient.team; + }; + MissionCleanup.add(%Bomber5); + //Impulse the bombers + SlthBomberImpulse(%Bomber5, %position, %CallerClient); + %Bomber5.setCloaked(true); + %Bomber5.schedule(30000, "Delete"); +} + +function SlthBomberImpulse(%obj, %pos, %cl) { + if(!isObject(%obj)) { + return; + } + if(vectorDist(%obj.getPosition(), %pos) > 430) { + if(vectorLen(%obj.getVelocity()) < 500) { + %obj.applyImpulse(%obj.getPosition(),vectorScale(%obj.getForwardVector(), 1200 * 1.3)); + } + } + //in range.. BOMB EM + else { + %obj.applyImpulse(%obj.getPosition(),vectorScale(%obj.getForwardVector(), 950)); + AirstrikeDropBombs(%obj, %pos, %cl); + } + schedule(500, 0, "SlthBomberImpulse", %obj, %pos, %cl); +} + + + + + + + + +//-------------------------------------- +// UAMS +//-------------------------------------- +datablock ItemData(GMCaller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = GMCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(GMCallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = GMCaller; + offset = "0 0 0"; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + isKSSW = 1; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function GMCallerImage::OnFire(%data, %obj, %slot) { + if(!%obj.client.HasGM) { + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Nice Try."); + return; + } + %obj.client.xp += 50; + UpdateClientRank(%obj.client); + + $TWM2::GMCalls[%obj.client.guid]++; + UpdateSWBeaconFile(%obj.client, "GM"); + + for(%i = 0; %i < ClientGroup.getCount(); %i++) { + %cl = ClientGroup.getObject(%i); + if(%cl.team == %obj.client.team) { + messageClient(%cl, 'msgHeliComing', "\c5TWM2: Friendly Missile Strike Approaching"); + } + else { + messageClient(%cl, 'msgHeliComing', "\c5TWM2: Enemy UAMS Detected!!!"); + } + } + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Missile Strike Called In, +50XP."); + %obj.client.HasGM = 0; + + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(GMCaller, 0, true); + // + CreateMissileSat(%obj.client); +} + +//-------------------------------------- +// Harbinger's Wrath +//-------------------------------------- + +datablock ItemData(HarbinsWrathCaller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = HarbinsWrathCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(HarbinsWrathCallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = HarbinsWrathCaller; + offset = "0 0 0"; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + isKSSW = 1; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function HarbinsWrathCallerImage::OnFire(%data, %obj, %slot) { + if(!%obj.client.HasHarbinsWrath) { + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Nice Try."); + return; + } + %obj.client.xp += 100; + UpdateClientRank(%obj.client); + + if($CurrentMission $= "ChristmasMall09") { + CompleteNWChallenge(%CallerClient, "GunshipMall"); + } + + $TWM2::HarbinsWrathCalls[%obj.client.guid]++; + UpdateSWBeaconFile(%obj.client, "HarbinsWrath"); + + for(%i = 0; %i < ClientGroup.getCount(); %i++) { + %cl = ClientGroup.getObject(%i); + if(%cl.team == %obj.client.team) { + messageClient(%cl, 'msgHeliComing', "\c5TWM2: Friendly Gunship Approaching"); + } + else { + messageClient(%cl, 'msgHeliComing', "\c5TWM2: Enemy Gunship... INCOMING!!!"); + } + } + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Harbinger's Wrath Called In, +100XP."); + %obj.client.HasHarbinsWrath = 0; + + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(HarbinsWrathCaller, 0, true); + // + if($TWM2::UnmannedGunship) { + StartHarbingersWrath(%obj.client, 1); + } + else { + StartHarbingersWrath(%obj.client, 0); + } +} + + + + + + + +//AC130 +datablock ItemData(AC130Caller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = AC130CallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(AC130CallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = AC130Caller; + offset = "0 0 0"; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + isKSSW = 1; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function AC130CallerImage::OnFire(%data, %obj, %slot) { + if(!%obj.client.HasAcGunner) { + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Nice Try."); + return; + } + %obj.client.xp += 100; + UpdateClientRank(%obj.client); + + if($CurrentMission $= "ChristmasMall09") { + CompleteNWChallenge(%CallerClient, "GunshipMall"); + } + + $TWM2::AC130Calls[%obj.client.guid]++; + UpdateSWBeaconFile(%obj.client, "AC130"); + + for(%i = 0; %i < ClientGroup.getCount(); %i++) { + %cl = ClientGroup.getObject(%i); + if(%cl.team == %obj.client.team) { + messageClient(%cl, 'msgHeliComing', "\c5TWM2: Friendly AC-130 Approaching"); + } + else { + messageClient(%cl, 'msgHeliComing', "\c5TWM2: Enemy AC130 ABOVE!!!"); + } + } + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: AC-130 Called In, +100XP."); + %obj.client.HasAcGunner = 0; + + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(AC130Caller, 0, true); + // + if($TWM2::UnmannedGunship) { + StartAC130(%obj.client, 1); + } + else { + StartAC130(%obj.client, 0); + } +} + + + + + + + + + + + + + + + + + + + + +datablock ItemData(ChopperGunnerCaller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = ChopperGunnerCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(ChopperGunnerCallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = ChopperGunnerCaller; + offset = "0 0 0"; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + isKSSW = 1; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function ChopperGunnerCallerImage::OnFire(%data, %obj, %slot) { + if(!%obj.client.HasChopperGunner) { + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Nice Try."); + return; + } + %obj.client.xp += 100; + UpdateClientRank(%obj.client); + + $TWM2::ChopperGunnerCalls[%obj.client.guid]++; + UpdateSWBeaconFile(%obj.client, "ChopperGunner"); + + for(%i = 0; %i < ClientGroup.getCount(); %i++) { + %cl = ClientGroup.getObject(%i); + if(%cl.team == %obj.client.team) { + messageClient(%cl, 'msgHeliComing', "\c5TWM2: Friendly Apache Approaching"); + } + else { + messageClient(%cl, 'msgHeliComing', "\c5TWM2: Enemy Apache... INCOMING!!!"); + } + } + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Apache Gunner Called In, +100XP."); + %obj.client.HasChopperGunner = 0; + + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(ChopperGunnerCaller, 0, true); + // + MakeTheHeli(%obj.client, 1); +} + +//-------------------------------------- +// Artillery +//-------------------------------------- +datablock GrenadeProjectileData(AStrikeColliderShell) { + projectileShapeName = "grenade_projectile.dts"; + emitterDelay = -1; + directDamage = 0.0; + hasDamageRadius = true; + indirectDamage = 3.6; + damageRadius = 25.0; + radiusDamageType = $DamageType::Bomb; + kickBackStrength = 500; + + explosion = "MiniProtonColliderExplosion"; + velInheritFactor = 0.0; + splash = GrenadeSplash; + + baseEmitter = GrenadeBubbleEmitter; + bubbleEmitter = GrenadeBubbleEmitter; + + grenadeElasticity = 0.0; + grenadeFriction = 0.3; + armingDelayMS = -1; + gravityMod = 1.0; + muzzleVelocity = 225.0; + drag = 0.1; + + sound = MortarTurretProjectileSound; + + hasLight = true; + lightRadius = 3; + lightColor = "0.05 0.2 0.05"; +}; + +datablock ItemData(ArtilleryCaller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = ArtilleryCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(ArtilleryCallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = ArtilleryCaller; + offset = "0 0 0"; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + isKSSW = 1; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function ArtilleryCallerImage::OnFire(%data, %obj, %slot) { + %ASCam = new Camera() { + dataBlock = TWM2ControlCamera; + }; + //if(!%obj.client.UnlimitedAS) { + %obj.use(ArtilleryCaller); + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(ArtilleryCaller, 0, true); + //} + + MissionCleanup.add(%ASCam); + %ASCam.setTransform(%obj.getTransform()); + %ASCam.setFlyMode(); + %ASCam.mode = "ArtilleryCall"; + %obj.client.setControlObject(%ASCam); + CameraMessageLoop(%obj.client, %ASCam, %ASCam.mode); +} + +function Artillery(%CallerClient, %position) { + + // if(!%CallerClient.UnlimitedAS) { + $TWM2::ArtilleryCalls[%CallerClient.guid]++; + UpdateSWBeaconFile(%CallerClient, "Artillery"); + // } + if(ServerReturnMonthDate() $= "1221") { + CompleteNWChallenge(%CallerClient, "SoulsticeBombard"); + } + %mainUpPos = vectoradd(%position, "0 0 400");// main pos + for(%i=0;%i<25;%i++) { + schedule(350*%i, 0, MessageAll, 'msgFiah', "~wfx/powered/turret_mortar_fire.wav"); + %mainUpPos = vectoradd(%mainUpPos, "0 0 "@(300+(%i*75))@""); //increment by 100 each time + %final = vectoradd(%mainUpPos,GetRandomPosition(30,1)); + %Shell1 = new GrenadeProjectile() { + dataBlock = AStrikeColliderShell; + initialPosition = %final; + initialDirection = "0 0 -5"; // this will hit first + }; + %Shell1.sourceObject = %CallerClient.player; + } +} + +//-------------------------------------- +// Nuke +//-------------------------------------- +datablock ItemData(NukeCaller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = NukeCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(NukeCallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = NukeCaller; + offset = "0 0 0"; + + isKSSW = 1; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function NukeCallerImage::OnFire(%data, %obj, %slot) { + %ASCam = new Camera() { + dataBlock = TWM2ControlCamera; + }; + //if(!%obj.client.UnlimitedAS) { + %obj.use(NukeCaller); + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(NukeCaller, 0, true); + //} + + MissionCleanup.add(%ASCam); + %ASCam.setTransform(%obj.getTransform()); + %ASCam.setFlyMode(); + %ASCam.mode = "NukeCall"; + %obj.client.setControlObject(%ASCam); + CameraMessageLoop(%obj.client, %ASCam, %ASCam.mode); +} + +function Nuke(%CallerClient, %position) { + awardClient(%callerClient, 024); + if(ServerReturnMonthDate() $= "0101") { + CompleteNWChallenge(%CallerClient, "NewYears"); + } + // if(!%CallerClient.UnlimitedAS) { + $TWM2::NukeCalls[%CallerClient.guid]++; + UpdateSWBeaconFile(%CallerClient, "Nuke"); + // } + %mainUpPos = vectoradd(%position, "0 0 400");// main pos + %Shell1 = new SeekerProjectile() { + dataBlock = ShoulderNuclear; + initialPosition = %mainUpPos; + initialDirection = "0 0 -5"; // this will hit first + }; + %Shell1.sourceObject = %CallerClient.player; + // } +} + + + + + + + + + + + + + + + +//-------------------------------------- +// HELICOPTER +//-------------------------------------- +datablock ItemData(GunshipHeliCaller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = GunshipHeliCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(GunshipHeliCallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = GunshipHeliCaller; + offset = "0 0 0"; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + isKSSW = 1; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function GunshipHeliCallerImage::OnFire(%data, %obj, %slot) { + if(!%obj.client.HasGunshipHeli) { + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Nice Try."); + return; + } + if(Game.CheckModifier("Scrambler") == 1) { + for(%i = 0; %i < MissionCleanup.getCount(); %i++) { + %obj = MissionCleanup.getObject(%i); + if(%obj.isZombie) { + if(%obj.isAlive()) { + if(%obj.getDatablock().getName() $= "LordZombieArmor") { + messageClient(%obj.client, 'msgHeliComing', "\c5HELLJUMP: A Zombie Lord Is Scrambling the Signal, Helicopters/Harriers cannot be called in at the time."); + return; + } + } + } + } + } + %obj.client.xp += 250; + UpdateClientRank(%obj.client); + + $TWM2::GunshipHeliCalls[%obj.client.guid]++; + UpdateSWBeaconFile(%obj.client, "GunshipHeli"); + + for(%i = 0; %i < ClientGroup.getCount(); %i++) { + %cl = ClientGroup.getObject(%i); + if(%cl.team == %obj.client.team) { + messageClient(%cl, 'msgHeliComing', "\c5TWM2: Friendly Assault Helicopter Approaching"); + } + else { + messageClient(%cl, 'msgHeliComing', "\c5TWM2: Enemy Gunship Helicopter Inbound!!!"); + } + } + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Gunship Helicopter Called In, +250XP."); + %obj.client.HasGunshipHeli = 0; + + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(GunshipHeliCaller, 0, true); + // + MakeTheHeli2(%obj.client, 0); +} + +//this one functions for gunship helicopters and harriers +function MakeTheHeli2(%cl, %harrier) { + if(%harrier $= "") { + %harrier = 0; + } + if(!%harrier) { + %Heli = new FlyingVehicle() { + dataBlock = GunshipHelicopter; + position = VectorAdd(VectorAdd(getRandomPosition(250, 1), "500 0 150"), %cl.player.getPosition()); + team = %cl.team; + }; + MissionCleanup.add(%Heli); + %Heli.doneAttack = 0; + // + %Heli.team = %cl.team; + + %heli.canFireMissiles = 1; + + %heli.Targeting = GunshipHeliScan(%heli); + schedule(60000, 0, "EndHeli", %Heli); + } + else { + %Heli = new FlyingVehicle() { + dataBlock = Harrier; + position = VectorAdd(VectorAdd(getRandomPosition(250, 1), "500 0 150"), %cl.player.getPosition()); + team = %cl.team; + }; + MissionCleanup.add(%Heli); + %Heli.doneAttack = 0; + // + %Heli.team = %cl.team; + + %heli.Targeting = HeliScan(%heli); + schedule(60000, 0, "EndHeli", %Heli); + } +} + +function GunshipHeliScan(%heli) { + //echo("scan begin"); + if(!isObject(%heli)) { + //echo("no heli"); + return; + } + if(%heli.doneAttack == 1) { + //echo("done attacking"); + return; + } + InitContainerRadiusSearch(%heli.getposition(), 9999, $TypeMasks::PlayerObjectType); + while ((%target = containerSearchNext()) != 0) { + //echo("target "@%target@""); + if(%target.team != %heli.team) { + //echo("lock"); + GunshipHeliBeginAttack(%heli, %target); + return; + } + } + //echo("no targs"); + %heli.Targeting = schedule(500, 0, "GunshipHeliScan", %heli); +} + +function HeliUseMissiles(%heli, %target) { + if(!isobject(%heli)) { + return; + } + if(!isObject(%target) || %target.getState() $= "Dead") { + return; + } + %clpos = %target.getPosition(); + %num = getRandom(250, 1000); + %vec = vectorsub(VectorAdd(%clpos, "0 0 2.2"), %heli.turretObject.getMuzzlePoint(0)); + %vec = vectoradd(%vec, vectorscale(%target.getvelocity(),vectorlen(%vec)/%num)); + // + %p = new SeekerProjectile() { //TWM2 Sniper zombies use M1 Snipers :P + dataBlock = HornetStrikeMissile; + initialDirection = %vec; + initialPosition = %heli.turretObject.getMuzzlePoint(0); + sourceObject = %heli; + }; + ServerPlay3d(EscapePodLaunchSound, %heli.getPosition()); + ServerPlay3d(EscapePodLaunchSound2, %heli.getPosition()); +} + +function ResetHeliMissiles(%heli) { + %heli.canFireMissiles = 1; +} + +function GunshipHeliBeginAttack(%heli, %target) { + %pos = %heli.getworldboxcenter(); + + if(!isobject(%heli)) { + return; + } + if(!isObject(%target) || %target.getState() $= "Dead") { + //echo("dead target"); + %heli.Targeting = schedule(500, 0, "GunshipHeliScan", %heli); + return; + } + %clpos = %target.getPosition(); + if(%heli.canFireMissiles) { + HeliUseMissiles(%heli, %target); + schedule(750, 0, "HeliUseMissiles", %heli, %target); + schedule(1500, 0, "HeliUseMissiles", %heli, %target); + %heli.canFireMissiles = 0; + schedule(25000, 0, "ResetHeliMissiles", %heli); + } + + schedule(500, 0, "GunshipHeliBeginAttack", %heli, %target); + + if(vectorDist(%clpos, %pos) < 125) { + return; //no movement needed... + } + %vector = vectorNormalize(vectorAdd(vectorSub(%clpos, %pos), "50 0 100")); + %v1 = getword(%vector, 0); + %v2 = getword(%vector, 1); + %nv1 = %v2; + %nv2 = (%v1 * -1); + %none = 0; + %vector2 = %nv1@" "@%nv2@" 0"; + %heli.setRotation(fullrot("0 0 0",%vector2)); + + %moveMult = 1535; + %vector = vectorscale(%vector, %moveMult); + + %x = Getword(%vector,0); + %y = Getword(%vector,1); + %z = Getword(%vector,2); + + %vector = %x@" "@%y@" "@%z@""; + %heli.applyImpulse(%pos, %vector); + +} + + + + + + + + + + + + +//-------------------------------------- +// HARRIER AIRSTRIKE +//-------------------------------------- +datablock ItemData(HarrierAirstrikeCaller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = HarrierAirstrikeCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(HarrierAirstrikeCallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = HarrierAirstrikeCaller; + offset = "0 0 0"; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + isKSSW = 1; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function HarrierAirstrikeCallerImage::OnFire(%data, %obj, %slot) { + %ASCam = new Camera() { + dataBlock = TWM2ControlCamera; + }; + //if(!%obj.client.UnlimitedAS) { + %obj.use(AirstrikeCaller); + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(HarrierAirstrikeCaller, 0, true); + //} + + MissionCleanup.add(%ASCam); + %ASCam.setTransform(%obj.getTransform()); + %ASCam.setFlyMode(); + %ASCam.mode = "HarrierCall"; + %obj.client.setControlObject(%ASCam); + CameraMessageLoop(%obj.client, %ASCam, %ASCam.mode); +} + +function HarrierAirstrike(%CallerClient, %position, %dirFrom) { + + $TWM2::HarrierAirstrikeCalls[%CallerClient.guid]++; + UpdateSWBeaconFile(%CallerClient, "HarrierAirStrike"); + + //new stuff TWM2 2.6 + //%dirFrom = Spawn Position of Aircraft + %THeight = getTerrainHeight(%dirFrom); + %THeightCons = %THeight + 150; + //Consider wartower + if(!$TWM::PlayingWarTower) { + if((%THeightCons) <= 5 && (%THeightCons) > -200) { + //baaaaaaad + %NewZ = %THeight + 150; //give us the perfect height + } + else { + //fine + %NewZ = getWord(%dirFrom, 2) + 150; + } + } + %CallPos = getWords(%dirFrom, 0, 1) SPC %NewZ; + + %Bomber1 = new FlyingVehicle() { + dataBlock = Harrier; + position = VectorAdd(%CallPos, "17 -50 10"); + team = %CallerClient.team; + }; + %Bomber2 = new FlyingVehicle() { + dataBlock = Harrier; + position = VectorAdd(%CallPos, "-17 50 -10"); + team = %CallerClient.team; + }; + MissionCleanup.add(%Bomber1); + MissionCleanup.add(%Bomber2); + //Impulse the bombers + HarrierBomberImpulse(%Bomber1, %position, %CallerClient, 3); + HarrierBomberImpulse(%Bomber2, %position, %CallerClient, 3); + // + %Bomber1.schedule(30000, "Delete"); + %Bomber2.schedule(30000, "Delete"); + // + %strikePos = getWords(%position, 0, 1) SPC (getWord(%position, 2) + 150); + ConstantBomberTurningLoop(%Bomber1, %strikePos); + ConstantBomberTurningLoop(%Bomber2, %strikePos); + // + //The Remaining one + schedule(8000, 0, MakeTheHeli2, %CallerClient, 1); +} + +function HarrierBomberImpulse(%obj, %pos, %cl, %ammoleft) { + if(!isObject(%obj)) { + return; + } + //not there yet + if(vectorDist(%obj.getPosition(), %pos) > 530) { + if(vectorLen(%obj.getVelocity()) < 500) { + %obj.applyImpulse(%obj.getPosition(),vectorScale(%obj.getForwardVector(), 1535 * 1.3)); + } + } + //in range.. BOMB EM + else { + %obj.applyImpulse(%obj.getPosition(),vectorScale(%obj.getForwardVector(), 800)); + if(%ammoleft > 0) { + AirstrikeDropBombs(%obj, %pos, %cl); + %ammoleft--; + } + } + schedule(500, 0, "HarrierBomberImpulse", %obj, %pos, %cl, %ammoleft); +} + +//-------------------------------------- +// ZBomb +//-------------------------------------- +datablock ItemData(ZBombCaller) +{ + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = ZBombCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(ZBombCallerImage) +{ + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = ZBombCaller; + offset = "0 0 0"; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + isKSSW = 1; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function ZBombCallerImage::OnFire(%data, %obj, %slot) { + if(!%obj.client.HasZBomb) { + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Nice Try."); + return; + } + %obj.client.HasZBomb = 0; + %obj.client.xp += 1000; + UpdateClientRank(%obj.client); + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Z-Bomb Activated, +1000XP."); + MessageAll('msgWohoo', "\c5TWM2: "@%obj.client.namebase@" has activated a Z-Bomb, eliminating all zombies"); + + $TWM2::ZBombCalls[%obj.client.guid]++; + UpdateSWBeaconFile(%obj.client, "ZBomb"); + + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(ZBombCaller, 0, true); + + if($TWM::PlayingHorde) { + CompleteNWChallenge(%obj.client, "ZBomber"); + } + + %count = MissionCleanup.getCount(); + for(%i = 0; %i < %count; %i++) { + %tobj = MissionCleanup.getObject(%i); + if(isObject(%tobj)) { + if(%tobj.iszombie && !%tobj.isBoss) { + %tobj.damage(%obj,%tobj.getWorldBoxCenter(), 100.0, $DamageType::ZBomb); //lotsa EXP for mah kills :D + } + else { + continue; + } + } + } + //flashy and soundy + %count2 = ClientGroup.getCount(); + for(%x = 0; %x < %count2; %x++) { + %flcl = ClientGroup.getObject(%x); + messageClient(%flcl, 'msgSound', "~wfx/weapons/mortar_explode.wav"); + if(isObject(%flcl.player)) { + %flcl.player.setWhiteout(1.8); + } + } +} + + + + + + + + + + +datablock ItemData(FissionBombCaller) +{ + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = FissionBombCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(FissionBombCallerImage) +{ + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = FissionBombCaller; + offset = "0 0 0"; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + isKSSW = 1; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function FissionBombCallerImage::OnFire(%data, %obj, %slot) { + if(!%obj.client.HasFission) { + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Nice Try."); + return; + } + %obj.client.HasFission = 0; + %obj.client.xp += 2500; + UpdateClientRank(%obj.client); + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Activating fission bomb.. nice work :D +2500XP."); + + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(FissionBombCaller, 0, true); + + CompleteNWChallenge(%obj.client, "GameEnder"); + + MessageAll('msgItsOva', "\c5COMMAND: FISSION BOMB!!! IT'S OVER!! RUN!!!!!! ~wfx/misc/red_alert_short.wav"); + FissionBombLoop(%obj.client, %obj, %obj.getPosition(), 10); +} + +function FissionBombLoop(%client, %caller, %strikePos, %ticks) { + if(%ticks == 10) { + schedule(500, 0,spawnprojectile,VegenorFireMeteor,GrenadeProjectile, vectorAdd(%strikePos ,"0 0 700"), "0 0 -1"); + } + if(%ticks > 0) { + CenterPrintAll("FISSION BOMB IMPACT IN: "@%ticks@".", 1, 1); + messageAll('msgSiren', "~wfx/misc/red_alert_short.wav"); + schedule(1000, 0, "FissionBombLoop", %client, %caller, %strikePos, %ticks--); + return; + } + else { + $TeamScore[%client.team] += 99999; + %client.score += 999999; + if($FissionEndsGame) { + Game.schedule(5500, GameOver); + schedule(5500, 0, cycleMissions); + } + Aidpulse(%strikePos, %caller, 5); + return; + } +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +// +//EMIITAHS and PARTICLES +datablock ShockwaveData(HyperDevProj2Shockwave) +{ + width = 10; + numSegments = 60; + numVertSegments = 1; + velocity = 0; + acceleration = 0; + lifetimeMS = 3000; + height = 0.1; + is2D = false; + + texture[0] = "special/shockwave4"; + texture[1] = "special/gradient"; + texWrap = 2.0; + + times[0] = 0.0; + times[1] = 0.5; + times[2] = 1.0; + + colors[0] = "0.2 0.2 1 1"; + colors[1] = "0.2 0.4 1.0 0.50"; + colors[2] = "0.2 0.3 1 0.1"; + + mapToTerrain = false; + orientToNormal = true; + renderBottom = true; +}; + +datablock ExplosionData(HyperDev2SubExplosion1) +{ + explosionShape = "disc_explosion.dts"; + faceViewer = true; + + delayMS = 100; + + offset = 5.0; + + playSpeed = 1.5; + + sizes[0] = "1 1 1"; + sizes[1] = "1 1 1"; + times[0] = 0.0; + times[1] = 1.0; + +}; + +datablock ExplosionData(HyperDev2SubExplosion2) +{ + explosionShape = "disc_explosion.dts"; + faceViewer = true; + + delayMS = 50; + + offset = 5.0; + + playSpeed = 1.0; + + sizes[0] = "5.0 5.0 5.0"; + sizes[1] = "5.0 5.0 5.0"; + times[0] = 0.0; + times[1] = 1.0; +}; + +datablock ExplosionData(HyperDev2SubExplosion3) +{ + explosionShape = "disc_explosion.dts"; + faceViewer = true; + delayMS = 0; + offset = 0.0; + playSpeed = 0.7; + + sizes[0] = "10.0 10.0 10.0"; + sizes[1] = "20.0 20.0 20.0"; + times[0] = 0.0; + times[1] = 1.0; + +}; + +datablock AudioProfile(HyperDevCannonExplosionSound2) +{ + filename = "fx/explosions/explosion.xpl23.wav"; + description = AudioBIGExplosion3d; + preload = true; +}; + +datablock ExplosionData(HyperDevCannonExplosion2) +{ + soundProfile = HyperDevCannonExplosionSound2; + + shockwave[0] = HyperDevCannonShockwave2; + shockwaveOnTerrain[0] = true; + + subExplosion[0] = HyperDev2SubExplosion1; + subExplosion[1] = HyperDev2SubExplosion2; + subExplosion[2] = HyperDev2SubExplosion3; + subExplosion[3] = SatchelSubExplosion; + subExplosion[4] = SatchelSubExplosion2; + subExplosion[5] = SatchelSubExplosion3; + + emitter[0] = PlasmaBarrelCrescentEmitter; + emitter[1] = SatchelSparksEmitter; + emitter[2] = SatchelExplosionSmokeEmitter; + + shakeCamera = true; + camShakeFreq = "8.0 9.0 7.0"; + camShakeAmp = "100.0 100.0 100.0"; + camShakeDuration = 1.3; + camShakeRadius = 25.0; +}; + +datablock ParticleData(HyperDevSmokeParticle) { + dragCoeffiecient = 0.0; + windCoeffiecient = 0.0; + gravityCoefficient = 0.0; + inheritedVelFactor = 0.0; + + lifetimeMS = 1000; + lifetimeVarianceMS = 3000; + + textureName = "skins/mort012"; + + useInvAlpha = false; + spinRandomMin = 0.0; + spinRandomMax = 0.0; + + colors[0] = "0.0 1 1 1.0"; + colors[1] = "0.0 0 1 1.0"; + colors[2] = "0.0 1 0 1.0"; + sizes[0] = 6.0; + sizes[1] = 6.0; + sizes[2] = 6.5; + times[0] = 0.0; + times[1] = 0.2; + times[2] = 1.0; +}; + +datablock ParticleEmitterData(HyperDevCannonBaseEmitter) { + ejectionPeriodMS = 0.2; + periodVarianceMS = 1; + + ejectionVelocity = 25; + velocityVariance = 0.0; + + thetaMin = 0.0; + thetaMax = 0.0; + + particles = "HyperDevSmokeParticle"; +}; + +datablock ShockwaveData(HyperDevProjShockwave) +{ + width = 7.0; + numSegments = 16; + numVertSegments = 16; + velocity = 5; + acceleration = 4.0; + lifetimeMS = 1570; + height = 3; + is2D = false; + + texture[0] = "special/shockwave5"; + texture[1] = "special/lightning1frame2"; + texWrap = 6.0; + + times[0] = 0.0; + times[1] = 0.5; + times[2] = 1.0; + + colors[0] = "0.0 0.8 0.8 1.00"; + colors[1] = "0.0 0.5 0.7 0.20"; + colors[2] = "0.0 0.8 0.5 0.0"; + + mapToTerrain = false; + orientToNormal = true; + renderBottom = true; +}; + +datablock LinearFlareProjectileData(HyperDevestatorBeam) { + scale = "15.0 15.0 15.0"; + faceViewer = false; + directDamage = 1.0; + hasDamageRadius = true; + indirectDamage = 4.9; + damageRadius = 30.0; + kickBackStrength = 40000.0; + radiusDamageType = $DamageType::Explosion; + + explosion[0] = "HyperDevCannonExplosion2"; + explosion[1] = "SatchelMainExplosion"; + splash = PlasmaSplash; + baseEmitter = HyperDevCannonBaseEmitter; + + + dryVelocity = 500.0; + wetVelocity = 200; + velInheritFactor = 0.5; + fizzleTimeMS = 20000; + lifetimeMS = 20000; + explodeOnDeath = false; + reflectOnWaterImpactAngle = 0.0; + explodeOnWaterImpact = true; + deflectionOnWaterImpact = 0.0; + fizzleUnderwaterMS = -1; + + //activateDelayMS = 100; + activateDelayMS = -1; + + size[0] = 9; + size[1] = 10; + size[2] = 11; + + + numFlares = 400; + flareColor = "0.0 1.0 0"; + flareModTexture = "flaremod"; + flareBaseTexture = "flarebase"; + + sound = MissileProjectileSound; + fireSound = PlasmaFireSound; + wetFireSound = PlasmaFireWetSound; + + hasLight = true; + lightRadius = 3.0; + lightColor = "0 0.75 0.25"; + +}; + +//-------------------------------------- +// AIRSTRIKE +//-------------------------------------- +datablock ItemData(OLSCaller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = OLSCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(OLSCallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = OLSCaller; + offset = "0 0 0"; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + isKSSW = 1; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function OLSCallerImage::OnFire(%data, %obj, %slot) { + %ASCam = new Camera() { + dataBlock = TWM2ControlCamera; + }; + %obj.use(OLSCaller); + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(OLSCaller, 0, true); + + MissionCleanup.add(%ASCam); + %ASCam.setTransform(%obj.getTransform()); + %ASCam.setFlyMode(); + %ASCam.mode = "OLSCall"; + %obj.client.setControlObject(%ASCam); + CameraMessageLoop(%obj.client, %ASCam, %ASCam.mode); +} + +function OrbitalLaserStrike(%CallerClient, %position) { + %p = new LinearFlareProjectile() { + dataBlock = HyperDevestatorBeam; + initialDirection = "0 0 -10"; + initialPosition = vectoradd(%position, "0 0 1500"); + sourceSlot = 4; + }; + %p.sourceObject = %CallerClient.player; + MissionCleanup.add(%p); +} + + + + + + + +//-------------------------------------- +// MASS EMP +//-------------------------------------- +datablock ItemData(MassEMPCaller) { + className = Weapon; + catagory = "Spawn Items"; + shapeFile = "weapon_targeting.dts"; + image = MassEMPCallerImage; + mass = 1; + elasticity = 0.2; + friction = 0.6; + pickupRadius = 2; + pickUpName = "a targeting laser rifle"; + + computeCRC = true; + isKSSW = 1; + +}; + +datablock ShapeBaseImageData(MassEMPCallerImage) { + className = WeaponImage; + + shapeFile = "weapon_targeting.dts"; + item = MassEMPCaller; + offset = "0 0 0"; + + isKSSW = 1; + + projectile = BasicTargeter; + projectileType = TargetProjectile; + deleteLastProjectile = true; + + usesEnergy = true; + minEnergy = 3; + + stateName[0] = "Activate"; + stateSequence[0] = "Activate"; + stateSound[0] = TargetingLaserSwitchSound; + stateTimeoutValue[0] = 0.5; + stateTransitionOnTimeout[0] = "ActivateReady"; + + stateName[1] = "ActivateReady"; + stateTransitionOnAmmo[1] = "Ready"; + stateTransitionOnNoAmmo[1] = "NoAmmo"; + + stateName[2] = "Ready"; + stateTransitionOnNoAmmo[2] = "NoAmmo"; + stateTransitionOnTriggerDown[2] = "Fire"; + + stateName[3] = "Fire"; + stateEnergyDrain[3] = 3; + stateFire[3] = true; + stateAllowImageChange[3] = false; + stateScript[3] = "onFire"; + stateTransitionOnTriggerUp[3] = "Deconstruction"; + stateTransitionOnNoAmmo[3] = "Deconstruction"; + stateSound[3] = TargetingLaserPaintSound; + + stateName[4] = "NoAmmo"; + stateTransitionOnAmmo[4] = "Ready"; + + stateName[5] = "Deconstruction"; + stateScript[5] = "deconstruct"; + stateTransitionOnTimeout[5] = "Ready"; +}; + +function MassEMPCallerImage::OnFire(%data, %obj, %slot) { + if(!%obj.client.HasMassEMP) { + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Nice Try."); + return; + } + %obj.use(MassEMPCaller); + %obj.throwWeapon(1); + %obj.throwWeapon(0); + %obj.setInventory(MassEMPCaller, 0, true); + + %obj.client.xp += 750; + UpdateClientRank(%obj.client); + MessageClient(%obj.client, 'MsgZKill', "\c5TWM2: Mass EMP Activated +750XP."); + + %obj.client.HasMassEMP = 0; + for(%i = 0; %i < ClientGroup.getCount(); %i++) { + %cl = ClientGroup.getObject(%i); + if(%cl.team != %obj.client.team) { + messageClient(%cl, 'msgAlert', "\c5Command: EMP! Electronic Weapons Offline!"); + ApplyEMP(%cl); + schedule(180000, 0, "KillEMP", %cl); + } + messageClient(%cl, 'msgSound', "~wfx/weapons/mortar_explode.wav"); + if(isObject(%cl.player)) { + %cl.player.setWhiteout(1.0); + } + } + //make vehicles go boom. + %count = MissionCleanup.getCount(); + for (%i=0;%i<%count;%i++) { + %obj = MissionCleanup.getObject(%i); + if (%obj) { + if ((%obj.getType() & $TypeMasks::VehicleObjectType)) { + %random = getRandom() * 100; + %obj.schedule(%random, setDamageState , Destroyed); + } + } + } +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +//FILE STUFF +function UpdateSWBeaconFile(%client, %SW) { + %file = ""@$TWM::RanksDirectory@"/"@%client.guid@"/Saved.TWMSave"; + new fileobject(Kills2); + switch$(%SW) { + case "UAV": + //awards + if($TWM2::UAVCalls[%client.guid] >= 30) { + CompleteNWChallenge(%client, "UAV1"); + } + if($TWM2::UAVCalls[%client.guid] >= 75) { + CompleteNWChallenge(%client, "UAV2"); + } + if($TWM2::UAVCalls[%client.guid] >= 150) { + CompleteNWChallenge(%client, "UAV3"); + } + //writing + if(Kills2.findInFile(%file, "$TWM2::UAVCalls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::UAVCalls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::UAVCalls["@%client.guid@"] = "@$TWM2::UAVCalls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::UAVCalls["@%client.guid@"] = "@$TWM2::UAVCalls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + case "AirStrike": + //awards + if($TWM2::AirstrikeCalls[%client.guid] >= 25) { + CompleteNWChallenge(%client, "Airstrike1"); + } + if($TWM2::AirstrikeCalls[%client.guid] >= 65) { + CompleteNWChallenge(%client, "Airstrike2"); + } + if($TWM2::AirstrikeCalls[%client.guid] >= 125) { + CompleteNWChallenge(%client, "Airstrike3"); + } + //writing + if(Kills2.findInFile(%file, "$TWM2::AirstrikeCalls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::AirstrikeCalls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::AirstrikeCalls["@%client.guid@"] = "@$TWM2::AirstrikeCalls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::AirstrikeCalls["@%client.guid@"] = "@$TWM2::AirstrikeCalls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + case "GM": + //awards + if($TWM2::GMCalls[%client.guid] >= 25) { + CompleteNWChallenge(%client, "UAMS1"); + } + if($TWM2::GMCalls[%client.guid] >= 65) { + CompleteNWChallenge(%client, "UAMS2"); + } + if($TWM2::GMCalls[%client.guid] >= 125) { + CompleteNWChallenge(%client, "UAMS3"); + } + //writing + if(Kills2.findInFile(%file, "$TWM2::GMCalls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::GMCalls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::GMCalls["@%client.guid@"] = "@$TWM2::GMCalls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::GMCalls["@%client.guid@"] = "@$TWM2::GMCalls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + case "HarbinsWrath": + //awards + if($TWM2::HarbinsWrathCalls[%client.guid] >= 15) { + CompleteNWChallenge(%client, "Gunship1"); + } + if($TWM2::HarbinsWrathCalls[%client.guid] >= 35) { + CompleteNWChallenge(%client, "Gunship2"); + } + if($TWM2::HarbinsWrathCalls[%client.guid] >= 75) { + CompleteNWChallenge(%client, "Gunship3"); + } + //writing + if(Kills2.findInFile(%file, "$TWM2::HarbinsWrathCalls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::HarbinsWrathCalls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::HarbinsWrathCalls["@%client.guid@"] = "@$TWM2::HarbinsWrathCalls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::HarbinsWrathCalls["@%client.guid@"] = "@$TWM2::HarbinsWrathCalls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + case "AC130": + //awards + if($TWM2::AC130Calls[%client.guid] >= 15) { + CompleteNWChallenge(%client, "ACGunship1"); + } + if($TWM2::AC130Calls[%client.guid] >= 35) { + CompleteNWChallenge(%client, "ACGunship2"); + } + if($TWM2::AC130Calls[%client.guid] >= 75) { + CompleteNWChallenge(%client, "ACGunship3"); + } + //writing + if(Kills2.findInFile(%file, "$TWM2::AC130Calls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::AC130Calls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::AC130Calls["@%client.guid@"] = "@$TWM2::AC130Calls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::AC130Calls["@%client.guid@"] = "@$TWM2::AC130Calls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + case "Heli": + //awards + if($TWM2::HeliCalls[%client.guid] >= 25) { + CompleteNWChallenge(%client, "Helicopter1"); + } + if($TWM2::HeliCalls[%client.guid] >= 65) { + CompleteNWChallenge(%client, "Helicopter2"); + } + if($TWM2::HeliCalls[%client.guid] >= 125) { + CompleteNWChallenge(%client, "Helicopter3"); + } + //writing + if(Kills2.findInFile(%file, "$TWM2::HeliCalls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::HeliCalls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::HeliCalls["@%client.guid@"] = "@$TWM2::HeliCalls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::HeliCalls["@%client.guid@"] = "@$TWM2::HeliCalls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + case "HarrierAirStrike": + //awards + if($TWM2::HarrierAirstrikeCalls[%client.guid] >= 20) { + CompleteNWChallenge(%client, "Harrier1"); + } + if($TWM2::HarrierAirstrikeCalls[%client.guid] >= 55) { + CompleteNWChallenge(%client, "Harrier2"); + } + if($TWM2::HarrierAirstrikeCalls[%client.guid] >= 110) { + CompleteNWChallenge(%client, "Harrier3"); + } + //writing + if(Kills2.findInFile(%file, "$TWM2::HarrierAirstrikeCalls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::HarrierAirstrikeCalls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::HarrierAirstrikeCalls["@%client.guid@"] = "@$TWM2::HarrierAirstrikeCalls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::HarrierAirstrikeCalls["@%client.guid@"] = "@$TWM2::HarrierAirstrikeCalls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + case "GunshipHeli": + //awards + if($TWM2::GunshipHeliCalls[%client.guid] >= 20) { + CompleteNWChallenge(%client, "GunHeli1"); + } + if($TWM2::GunshipHeliCalls[%client.guid] >= 55) { + CompleteNWChallenge(%client, "GunHeli2"); + } + if($TWM2::GunshipHeliCalls[%client.guid] >= 110) { + CompleteNWChallenge(%client, "GunHeli3"); + } + //writing + if(Kills2.findInFile(%file, "$TWM2::GunshipHeliCalls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::GunshipHeliCalls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::GunshipHeliCalls["@%client.guid@"] = "@$TWM2::GunshipHeliCalls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::GunshipHeliCalls["@%client.guid@"] = "@$TWM2::GunshipHeliCalls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + case "ChopperGunner": + //awards + if($TWM2::ChopperGunnerCalls[%client.guid] >= 15) { + CompleteNWChallenge(%client, "Apache1"); + } + if($TWM2::ChopperGunnerCalls[%client.guid] >= 35) { + CompleteNWChallenge(%client, "Apache2"); + } + if($TWM2::ChopperGunnerCalls[%client.guid] >= 75) { + CompleteNWChallenge(%client, "Apache3"); + } + //writing + if(Kills2.findInFile(%file, "$TWM2::ChopperGunnerCalls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::ChopperGunnerCalls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::ChopperGunnerCalls["@%client.guid@"] = "@$TWM2::ChopperGunnerCalls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::ChopperGunnerCalls["@%client.guid@"] = "@$TWM2::ChopperGunnerCalls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + case "Artillery": + //awards + if($TWM2::ArtilleryCalls[%client.guid] >= 10) { + CompleteNWChallenge(%client, "Centaur1"); + } + if($TWM2::ArtilleryCalls[%client.guid] >= 25) { + CompleteNWChallenge(%client, "Centaur2"); + } + if($TWM2::ArtilleryCalls[%client.guid] >= 50) { + CompleteNWChallenge(%client, "Centaur3"); + } + //writing + if(Kills2.findInFile(%file, "$TWM2::ArtilleryCalls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::ArtilleryCalls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::ArtilleryCalls["@%client.guid@"] = "@$TWM2::ArtilleryCalls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::ArtilleryCalls["@%client.guid@"] = "@$TWM2::ArtilleryCalls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + case "StealthAirStrike": + //awards + if($TWM2::StealthAirStrikeCalls[%client.guid] >= 20) { + CompleteNWChallenge(%client, "SBomber1"); + } + if($TWM2::StealthAirStrikeCalls[%client.guid] >= 50) { + CompleteNWChallenge(%client, "SBomber2"); + } + if($TWM2::StealthAirStrikeCalls[%client.guid] >= 100) { + CompleteNWChallenge(%client, "SBomber3"); + } + //writing + if(Kills2.findInFile(%file, "$TWM2::StealthAirStrikeCalls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::StealthAirStrikeCalls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::StealthAirStrikeCalls["@%client.guid@"] = "@$TWM2::StealthAirStrikeCalls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::StealthAirStrikeCalls["@%client.guid@"] = "@$TWM2::StealthAirStrikeCalls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + case "Nuke": + //awards + if($TWM2::NukeCalls[%client.guid] >= 5) { + CompleteNWChallenge(%client, "Nuke1"); + } + if($TWM2::NukeCalls[%client.guid] >= 10) { + CompleteNWChallenge(%client, "Nuke2"); + } + if($TWM2::NukeCalls[%client.guid] >= 25) { + CompleteNWChallenge(%client, "Nuke3"); + } + //writing + if(Kills2.findInFile(%file, "$TWM2::NukeCalls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::NukeCalls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::NukeCalls["@%client.guid@"] = "@$TWM2::NukeCalls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::NukeCalls["@%client.guid@"] = "@$TWM2::NukeCalls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + case "ZBomb": + if(Kills2.findInFile(%file, "$TWM2::ZBombCalls["@%client.guid@"]", "", "") != 0) { + //the above line checks to see if we already have killed + //If so, we need to replace that line with the new one + //So, First Off, Lets get that line again + %ln = Kills2.findInFile(%file, "$TWM2::ZBombCalls["@%client.guid@"]", "", ""); //start after the rank stuff + //now we can replace it + Kills2.replaceLine(%file, "$TWM2::ZBombCalls["@%client.guid@"] = "@$TWM2::ZBombCalls[%client.guid]@";", %ln); + Kills2.Close(); + Kills2.Delete(); + } + else { + Kills2.OpenForAppend(%file); + Kills2.WriteLine("$TWM2::ZBombCalls["@%client.guid@"] = "@$TWM2::ZBombCalls[%client.guid]@";"); + Kills2.close(); + Kills2.Delete(); + } + } +} + diff --git a/Univ/twm2/patches/3.021.txt b/Univ/twm2/patches/3.021.txt new file mode 100644 index 0000000..4ec4a44 --- /dev/null +++ b/Univ/twm2/patches/3.021.txt @@ -0,0 +1,4 @@ +#Patch 3.021 6-23-10: PATCH 1 -> Attempting to fix the glitch where martyrdom kills teammates when TD is off +[DL] /public/Univ/twm2/patches/3.021/Perks.cs scripts/TWM2/Systems/Perks.cs +[RL] scripts/TWM2/Systems/MainControl.cs 2 $TWM2::Version = 3.021; +*END \ No newline at end of file diff --git a/Univ/twm2/patches/3.021/Perks.cs b/Univ/twm2/patches/3.021/Perks.cs new file mode 100644 index 0000000..4e1f61d --- /dev/null +++ b/Univ/twm2/patches/3.021/Perks.cs @@ -0,0 +1,452 @@ +//The Perks +//LIST +$PerkRequire[1] = $Ranks::MinPoints[32]; +$PerkRequire[2] = $Ranks::MinPoints[40]; +$PerkRequire[7] = $Ranks::MinPoints[54]; +$PerkRequire[9] = $Ranks::MinPoints[43]; +$PerkRequire[10] = $Ranks::MinPoints[18]; +$PerkRequire[11] = $Ranks::MinPoints[36]; +$PerkRequire[15] = $Ranks::MinPoints[60]; +$PerkRequire[16] = $Ranks::MinPoints[46]; +$PerkRequire[21] = $Ranks::MinPoints[4]; +$PerkRequire[22] = $Ranks::MinPoints[45]; + +//PRIMARY - Weapon Modifications +// AP Bullets [c] - Increase Damage to 150% +// Advanced Grip [c] - Increase Accuracy On All Guns with Spread +// Wind Brake Beacon [c] - Beacon Key Stops Your Fall Instantly +// 3 Second C4 [c] - C4 Detonates in 3 Seconds, not 10 +// Blade Sweep [c] - BoV Affects a small area instead of a single attack +// Martydom [c] - Your armor explodes 4 seconds after death +// Pistol God [c] - Removes All Spread On Certain Pistols +// Double Down [c] - Gain double EXP for non boss Kills. + +//SECONDARY - Armor And Defense +// OverKill [b] - Replaces your Pistol Slot with an Additional Weapon Slot +// Kevlar Armor [c] - Increase Shielding to 150% +// Head Guard [c] - Blocks Headshot Kills +// Storm Barrier [c] - Reduce Electrical Damage, blocks lightning +// Lim Zombie Shield [c] - 20% Chance that Zombies Will Be Repeled upon attack +// No-Infect Armor [c] - Zombie Attacks will not infect you +// Radar Phantom [c] - Jam enemy sensors + +//TERTIARY - Assets +// Clip Boxes [c] - Cuts Reload Time By 33% +// UAV Disabler [c] - You will not show on enemy UAVs +// Team Gain [c] - All Teammates within 20M Of the Killer Gain XP +// Double Time [c] - Cuts Reload Time By 50% +// Ammo Vet [c] - Cuts Reload Time By 75% +// Bandolier [c] - Increases Clips To 200% +// Hardline [c] - Killstreaks require 1 less kill +// Bomb Shadower [c] - You do not show a Sabotage Waypoint +// Second Chance [c] - Spend a team revive to respawn in horde + +$Perk::PerkCount[1] = 8; +$Perk::PerkCount[2] = 7; +$Perk::PerkCount[3] = 9; + +$Perk::TotalPerks = $Perk::PerkCount[1] + $Perk::PerkCount[2] + $Perk::PerkCount[3]; + +$Perk::Perk[1] = "AP Bullets"; +$Perk::Perk[2] = "Advanced Grip"; +$Perk::Perk[3] = "Wind Brake Beacon"; +$Perk::Perk[4] = "3 Second C4"; +$Perk::Perk[5] = "Blade Sweep"; +$Perk::Perk[6] = "Martydom"; +$Perk::Perk[7] = "Pistol God"; +$Perk::Perk[8] = "Double Down"; +$Perk::Perk[9] = "OverKill"; +$Perk::Perk[10] = "Kevlar Armor"; +$Perk::Perk[11] = "Head Guard"; +$Perk::Perk[12] = "Storm Barrier"; +$Perk::Perk[13] = "Lim Zombie Shield"; +$Perk::Perk[14] = "No-Infect Armor"; +$Perk::Perk[15] = "Radar Phantom"; +$Perk::Perk[16] = "Clip Boxes"; +$Perk::Perk[17] = "UAV Disabler"; +$Perk::Perk[18] = "Team Gain"; +$Perk::Perk[19] = "Double Time"; +$Perk::Perk[20] = "Ammo Vet"; +$Perk::Perk[21] = "Bandolier"; +$Perk::Perk[22] = "Hardline"; +$Perk::Perk[23] = "Bomb Shadower"; +$Perk::Perk[24] = "Second Chance"; + +$Perk::Descrip[1] = "Bullets do 50% More Damage"; +$Perk::Descrip[2] = "Improves Weapon Accuracy by 250%"; +$Perk::Descrip[3] = "Instantly Stop a fall with your beacon key"; +$Perk::Descrip[4] = "Your C4 Detonates in 3 Seconds, not 10"; +$Perk::Descrip[5] = "The BoV Affects a small area, not 1 target"; +$Perk::Descrip[6] = "Your armor explodes 4 seconds after death"; +$Perk::Descrip[7] = "Makes certain pistols 100% accurate"; +$Perk::Descrip[8] = "Gain Double EXP for non boss kills"; +$Perk::Descrip[9] = "Adds an additional weapon slot to your armor"; +$Perk::Descrip[10] = "Increases your armor by 50%"; +$Perk::Descrip[11] = "Prevents you from being Headshot Killed"; +$Perk::Descrip[12] = "Protects you from electrical attacks"; +$Perk::Descrip[13] = "20% chance to deflect zombie attackers"; +$Perk::Descrip[14] = "Prevents you from being infected"; +$Perk::Descrip[15] = "Jam enemy sensors"; +$Perk::Descrip[16] = "Reduces reload time by 33%"; +$Perk::Descrip[17] = "You will not show on enemy UAVs"; +$Perk::Descrip[18] = "Allies near you will gain XP for your kills"; +$Perk::Descrip[19] = "Reduces reload time by 50%"; +$Perk::Descrip[20] = "Reduces reload time by 75%"; +$Perk::Descrip[21] = "Doubles your initial clip count"; +$Perk::Descrip[22] = "Killstreaks require 1 less kill to earn"; +$Perk::Descrip[23] = "You do not show a Sabotage Waypoint"; +$Perk::Descrip[24] = "Spend a team revive to respawn in horde"; + +$Perk::PerkToGroup["AP Bullets"] = 1; +$Perk::PerkToGroup["Advanced Grip"] = 1; +$Perk::PerkToGroup["Wind Brake Beacon"] = 1; +$Perk::PerkToGroup["3 Second C4"] = 1; +$Perk::PerkToGroup["Blade Sweep"] = 1; +$Perk::PerkToGroup["Martydom"] = 1; +$Perk::PerkToGroup["Pistol God"] = 1; +$Perk::PerkToGroup["Double Down"] = 1; +$Perk::PerkToGroup["OverKill"] = 2; +$Perk::PerkToGroup["Kevlar Armor"] = 2; +$Perk::PerkToGroup["Head Guard"] = 2; +$Perk::PerkToGroup["Storm Barrier"] = 2; +$Perk::PerkToGroup["Lim Zombie Shield"] = 2; +$Perk::PerkToGroup["No-Infect Armor"] = 2; +$Perk::PerkToGroup["Radar Phantom"] = 2; +$Perk::PerkToGroup["Clip Boxes"] = 3; +$Perk::PerkToGroup["UAV Disabler"] = 3; +$Perk::PerkToGroup["Team Gain"] = 3; +$Perk::PerkToGroup["Double Time"] = 3; +$Perk::PerkToGroup["Ammo Vet"] = 3; +$Perk::PerkToGroup["Bandolier"] = 3; +$Perk::PerkToGroup["Hardline"] = 3; +$Perk::PerkToGroup["Bomb Shadower"] = 3; +$Perk::PerkToGroup["Second Chance"] = 3; + +//Asset Function +function GameConnection::IsActivePerk(%client, %perk) { + if(%client.ActivePerk[""@%perk@""] == 1) { + return true; + } + else { + return false; + } +} + +function DisableAllPerkGroup(%client, %PerkGroup) { + for(%i = 1; %i <= $Perk::TotalPerks; %i++) { + if(GetPerkGroup(%i) == %PerkGroup) { + %client.ActivePerk[$Perk::Perk[%i]] = 0; + } + } +} + +function GetActivePerks(%client) { + for(%i = 1; %i <= $Perk::TotalPerks; %i++) { + if(%client.IsActivePerk($Perk::Perk[%i])) { + if(GetPerkGroup(%i) == 1) { + %client.Perk[1] = $Perk::Perk[%i]; + } + else if(GetPerkGroup(%i) == 2) { + %client.Perk[2] = $Perk::Perk[%i]; + } + else if(GetPerkGroup(%i) == 3) { + %client.Perk[3] = $Perk::Perk[%i]; + } + } + } +} + +function GetPerkGroup(%perkVal) { + if(%perkVal <= $Perk::PerkCount[1]) { + return 1; + } + else if( %perkVal > $Perk::PerkCount[1] && %perkVal <= $Perk::PerkCount[1] + $Perk::PerkCount[2]) { + return 2; + } + else { + return 3; + } +} + +function GameConnection::CanUsePerk(%client, %perkVal) { + %xp = $Rank::XP[%client.guid]; + switch(%perkVal) { + case 1: + if(%xp >= $PerkRequire[1]) { + return true; + } + else { + return false; + } + case 2: + if(%xp >= $PerkRequire[2]) { + return true; + } + else { + return false; + } + case 3: + if($Medals::Harbiend[%client.GUID]) { + return true; + } + else { + return false; + } + case 4 or 5: + if($Medals::RevengeAvoidedAgain[%client.GUID]) { + return true; + } + else { + return false; + } + case 6: + if($Medals::TheSourceOfAllEvil[%client.GUID]) { + return true; + } + else { + return false; + } + case 7: + if(%xp >= $PerkRequire[7]) { + return true; + } + else { + return false; + } + case 8: + if($Rank::Prestige[%client.guid] >= 1) { + return true; + } + else { + return false; + } + case 9: + if(%xp >= $PerkRequire[9]) { + return true; + } + else { + return false; + } + case 10: + if(%xp >= $PerkRequire[10]) { + return true; + } + else { + return false; + } + case 11: + if(%xp >= $PerkRequire[11]) { + return true; + } + else { + return false; + } + case 12: + if($Medals::ThundaStruk[%client.GUID]) { + return true; + } + else { + return false; + } + case 13: + if($Medals::TheNewGeneral[%client.GUID]) { + return true; + } + else { + return false; + } + case 14: + if($Medals::InsigniaDefeated[%client.GUID]) { + return true; + } + else { + return false; + } + case 15: + if(%xp >= $PerkRequire[15]) { + return true; + } + else { + return false; + } + case 16: + if(%xp >= $PerkRequire[16]) { + return true; + } + else { + return false; + } + case 17: + if($Medals::SerialKiller[%client.GUID]) { + return true; + } + else { + return false; + } + case 18 or 20: + if($Medals::AboutDamnTime[%client.GUID]) { + return true; + } + else { + return false; + } + case 19: + if($Medals::InvatationAccepted[%client.GUID]) { + return true; + } + else { + return false; + } + case 21: + if(%xp >= $PerkRequire[21]) { + return true; + } + else { + return false; + } + case 22: + if(%xp >= $PerkRequire[22]) { + return true; + } + else { + return false; + } + case 23: + if(%client.CheckNWChallengeCompletion("3For5Sabo")) { + return true; + } + else { + return false; + } + case 24: + if(%client.CheckNWChallengeCompletion("ArmyOf50Stopped")) { + return true; + } + else { + return false; + } + default: + error("TWM2: Perks.cs: Invalid Value Passed to CanUsePerk"); + return false; + } +} + +function CreatePerkMenu(%client, %tag, %index) { + messageClient( %client, 'SetLineHud', "", %tag, %index, "-* Primary Perks *-"); + %index++; + for(%i = 1; %i <= $Perk::PerkCount[1]; %i++) { + if(%client.CanUsePerk(%i)) { + if(!%client.IsActivePerk($Perk::Perk[%i])) { + messageClient( %client, 'SetLineHud', "", %tag, %index, ""@$Perk::Perk[%i]@" - "@$Perk::Descrip[%i]@""); + %index++; + } + else { + messageClient( %client, 'SetLineHud', "", %tag, %index, ""@$Perk::Perk[%i]@" - ACTIVE - "@$Perk::Descrip[%i]@""); + %index++; + } + } + else { + messageClient( %client, 'SetLineHud', "", %tag, %index, "This Perk Is Not Availible For Use"); + %index++; + } + } + // + messageClient( %client, 'SetLineHud', "", %tag, %index, ""); + %index++; + messageClient( %client, 'SetLineHud', "", %tag, %index, "-* Secondary Perks *-"); + %index++; + for(%i = $Perk::PerkCount[1] + 1; %i <= $Perk::PerkCount[1]+$Perk::PerkCount[2]; %i++) { + if(%client.CanUsePerk(%i)) { + if(!%client.IsActivePerk($Perk::Perk[%i])) { + messageClient( %client, 'SetLineHud', "", %tag, %index, ""@$Perk::Perk[%i]@" - "@$Perk::Descrip[%i]@""); + %index++; + } + else { + messageClient( %client, 'SetLineHud', "", %tag, %index, ""@$Perk::Perk[%i]@" - ACTIVE - "@$Perk::Descrip[%i]@""); + %index++; + } + } + else { + messageClient( %client, 'SetLineHud', "", %tag, %index, "This Perk Is Not Availible For Use"); + %index++; + } + } + // + messageClient( %client, 'SetLineHud', "", %tag, %index, ""); + %index++; + messageClient( %client, 'SetLineHud', "", %tag, %index, "-* Tertiary Perks *-"); + %index++; + for(%i = $Perk::PerkCount[1] + $Perk::PerkCount[2] + 1; %i <= $Perk::PerkCount[1] + $Perk::PerkCount[2] + $Perk::PerkCount[3]; %i++) { + if(%client.CanUsePerk(%i)) { + if(!%client.IsActivePerk($Perk::Perk[%i])) { + messageClient( %client, 'SetLineHud', "", %tag, %index, ""@$Perk::Perk[%i]@" - "@$Perk::Descrip[%i]@""); + %index++; + } + else { + messageClient( %client, 'SetLineHud', "", %tag, %index, ""@$Perk::Perk[%i]@" - ACTIVE - "@$Perk::Descrip[%i]@""); + %index++; + } + } + else { + messageClient( %client, 'SetLineHud', "", %tag, %index, "This Perk Is Not Availible For Use"); + %index++; + } + } + return %index; +} + +function SetPerkStatus(%client, %perk, %status) { + %client.ActivePerk[%perk] = %status; + if(%status == 1) { + MessageClient(%client, 'MsgPerkOn', "TWM2: PERK "@%perk@" ACTIVE"); + //Perk details + if(%perk $= "Radar Phantom") { + setTargetSensorData(%client.target, JammerSensorObjectActive); + } + } + else { + //Perk details + if(%perk $= "Radar Phantom") { + setTargetSensorData(%client.target, PlayerSensor); + } + } +} + +function DoPerksStuff(%client, %player) { + if(%client.IsActivePerk("Radar Phantom")) { + setTargetSensorData(%client.target, JammerSensorObjectActive); + } + if(%client.IsActivePerk("Wind Brake Beacon")) { + %client.player.AirBrakes = 3; + } +} + + + +//Perks +//For Lim Zombie +function RepelZombie(%zombie, %player) { + %tgtPos = %zombie.getWorldBoxCenter(); + %distance2 = VectorDist(%tgtPos, %player.getPosition()); + %distance = mfloor(%distance2); + %vec = VectorNormalize(VectorSub(%player.getPosition(), %tgtpos)); + %nForce = 2000; //buh bye! + %forceVector = vectorScale(%vec, -1*%nForce); + + %zombie.applyImpulse(%zombie.getPosition(), %forceVector); + %zombie.playShieldEffect("1 1 1"); +} + +function MartydomExplode(%position, %client) { + ServerPlay3D("SatchelChargeExplosionSound", %position); + %c4 = new Item() { + datablock = C4Deployed; + position = %position; + scale = ".1 .1 .1"; + owner = %client; + }; + %C4.sourceObject = %client.player; + %C4.theClient = %client; + MissionCleanup.add(%c4); + schedule(770, 0, "C4GoBoom", %c4); +} diff --git a/Univ/twm2/patches/3.025.txt b/Univ/twm2/patches/3.025.txt new file mode 100644 index 0000000..5f853cc --- /dev/null +++ b/Univ/twm2/patches/3.025.txt @@ -0,0 +1,6 @@ +#Patch 3.025 6-29-10: Adds a patch loading script for more efficient patch loading +[DL] /public/Univ/twm2/patches/3.025/Patchloader.cs scripts/TWM2/Systems/Patchloader.cs +[DL] /public/Univ/twm2/patches/3.025/server.cs scripts/server.cs +[DL] /public/Univ/twm2/patches/3.025/LoadMod.cs scripts/TWM2/LoadMod.cs +[RL] scripts/TWM2/Systems/MainControl.cs 2 $TWM2::Version = 3.025; +*END \ No newline at end of file diff --git a/Univ/twm2/patches/3.025/LoadMod.cs b/Univ/twm2/patches/3.025/LoadMod.cs new file mode 100644 index 0000000..90d15aa --- /dev/null +++ b/Univ/twm2/patches/3.025/LoadMod.cs @@ -0,0 +1,145 @@ +// TWM 2, Mod Load Script, Place any Scripts To Be Executed In Here + +Error("********************************************"); +Error("********************************************"); +Error("******** EXECUTING TWM2 MOD SCRIPTS ********"); +Error("********************************************"); +Error("********************************************"); + //Mod Systems +exec("serverControl.cs"); //Server Settings + +exec("scripts/TWM2/Systems/AdvancedRankSystem.cs"); //Adv. Ranks +exec("scripts/TWM2/Systems/MainControl.cs"); //TWM2 Core Functions +exec("scripts/TWM2/Systems/Scoremenucmds.cs"); //Score Menu +exec("scripts/TWM2/Systems/BossSystem.cs"); //Bosses +exec("scripts/TWM2/Systems/Medals.cs"); //Medals +exec("scripts/TWM2/Systems/NewsPanel.cs"); //Scoremenu News Page +exec("scripts/TWM2/Systems/Perks.cs"); //Special Perks +exec("scripts/TWM2/Systems/WeaponChallenges.cs"); //Weapon Challenges +exec("scripts/TWM2/Systems/NWChallengeIndex.cs"); //Non-Weapon Challenges +exec("scripts/TWM2/Systems/ClientSettings.cs"); //Save Client Settings +exec("scripts/TWM2/Systems/ChatLog.cs"); //Chat / Connection Logging +exec("scripts/TWM2/Systems/ChatBot.cs"); //Chat Monitoring/Commands +exec("scripts/TWM2/Systems/Weather.cs"); //Weather functions +exec("scripts/TWM2/Systems/Keystrokes.cs"); //Insert/Delete functions +exec("scripts/TWM2/Systems/Killstreak.cs"); //Killstreak Superweapons +exec("scripts/TWM2/Missions/MissionCore.cs"); //Missions + +exec("scripts/TWM2/AI/DroneAI.cs"); //Drones +exec("scripts/TWM2/AI/HarbingerSoldier.cs"); //Harbinger Soldiers + +exec("scripts/TWM2/Objects/MissileSatellite.cs"); //Missile Satellite +exec("scripts/TWM2/Systems/HarbingersWrath.cs"); //Harbinger's Wrath + + //Mod Dependancies + +exec("scripts/TWM2/loadmenu.cs"); //loadscreen +exec("scripts/TWM2/WeaponFunctions.cs"); //TWM2 Weapon Functions +exec("scripts/TWM2/Zombie/LoadZombieScripts.cs"); //TWM2 Zombie Script Load +exec("scripts/TWM2/CustomCamera.cs"); //TWM2 Cameras +exec("scripts/TWM2/CustomArmors.cs"); //TWM2 Armors +exec("scripts/TWM2/ArmorFunctions.cs"); //TWM2 Armors Functions +exec("scripts/TWM2/VehicleReticles.cs"); //Vehicle Reticles + + //Universal Systems +exec("scripts/TWM2/PGDConnect/UniversalSupport.cs"); //Support Script +exec("scripts/TWM2/PGDConnect/UniversalSaving_Client.cs");//Saver +exec("scripts/TWM2/PGDConnect/UniversalLoading.cs"); //Loading +exec("scripts/TWM2/PGDConnect/UniversalRanks.cs"); //Ranks +exec("scripts/TWM2/PGDConnect/Patcher.cs"); //Autopatch + +schedule(7000, 0, "CheckForModUpdate"); +schedule(1000, 0, "GetKey"); + + //Exterior Functioning + +exec("scripts/TWM2/ExteriorFunctioning/PulseStuff.cs"); //Aid Pulses +exec("scripts/TWM2/ExteriorFunctioning/killTrigger.cs"); //TWM2 Kill Trigger +exec("scripts/TWM2/ExteriorFunctioning/BloodEffects.cs");//TWM2 Gore Mod +exec("scripts/TWM2/ExteriorFunctioning/ProtPatch.cs"); //Alv's CCM Patch +exec("scripts/TWM2/ExteriorFunctioning/PConFunctions.cs");//P-Con Functions 1.7 +exec("scripts/TWM2/ExteriorFunctioning/ArmorDamageEffects.cs");//Loop Damages + + //Chat Commands + +exec("scripts/TWM2/ChatCommands/Public.cs"); //Public CCs +exec("scripts/TWM2/ChatCommands/Admin.cs"); //Admin CCs +exec("scripts/TWM2/ChatCommands/Zombie.cs"); //Zombie CCs +exec("scripts/TWM2/ChatCommands/SuperAdmin.cs"); //SuperAdmin CCs +exec("scripts/TWM2/ChatCommands/DevAndHost.cs"); //Dev/Host CCs + + //Server Dependancies +LoadRanksBase(); //Load Ranks +DownloadNewsPage(); //Load News Page + + //Weapons +exec("scripts/weapons/Pistols/Colt.cs"); //Colt Pistol +exec("scripts/weapons/Melee/melee.cs"); //Gun Blade +exec("scripts/weapons/Rifles/S3.cs"); //S3 Combat Rifle +exec("scripts/weapons/Equipment/C4.cs"); //C4 Mines +exec("scripts/weapons/Shotguns/M1700.cs"); //M1700 Shotgun +exec("scripts/weapons/Rifles/G41.cs"); //G41 Semi Auto Rifle +exec("scripts/weapons/Rifles/R700Sniper.cs"); //R700 Sniper Rifle +exec("scripts/weapons/SMGs/MP26.cs"); //MP26 SMG +exec("scripts/weapons/SMGs/Pg700.cs"); //Pg700 SMG +exec("scripts/weapons/Equipment/SWBeaconer.cs"); //Killstreak Superweapon Datablocks +exec("scripts/weapons/Rifles/M1Sniper.cs"); //M1 Sniper Rifle +exec("scripts/weapons/MGs/RP432.cs"); //RP432 Machine Gun +exec("scripts/weapons/Shotguns/Wp400.cs"); //Wp400 Shotgun +reload("scripts/weapons/SMGs/chaingun.cs"); //Mini Chaingun +exec("scripts/weapons/Rifles/RSALaserRifle.cs"); //RSA Laser Rifle +exec("scripts/weapons/Equipment/RPG7.cs"); //RPG-7 +exec("scripts/weapons/Melee/BOV.cs"); //Blade Of Vengeance +exec("scripts/weapons/Construction/EditGun.cs"); //Manipulator Tool +exec("scripts/weapons/Construction/EditingGun.cs");//Editor Gun +exec("scripts/weapons/Pistols/PulsePhaser.cs"); //ES-77 Pulse Phaser +exec("scripts/weapons/Pistols/LD06Savager.cs"); //LD06 Savager +exec("scripts/weapons/Other/IonLauncher.cs"); //LUX-4 Ion Launcher +exec("scripts/weapons/Other/IonRifle.cs"); //LUST Ion Rifle +reload("scripts/weapons/T2Guns/Shocklance.cs"); //Shocklance & Shock Projs +exec("scripts/weapons/MGs/MG42.cs"); //MG42 Machine Gun +exec("scripts/weapons/Other/Flamethrower.cs"); //A|V|X Flamethrower +exec("scripts/weapons/Grenades/staticGrenade.cs"); //Static Grenade +exec("scripts/weapons/Rifles/G17Sniper.cs"); //G17 Sniper Rifle +exec("scripts/weapons/Other/ConcussionGun.cs"); //Concussion Gun +exec("scripts/weapons/Other/ShadowRifle.cs"); //Shadow Rifle +exec("scripts/weapons/Pistols/GrappleHook.cs"); //NeX 4 Grapple Hook +exec("scripts/weapons/Other/MiniCollider.cs"); //PRTCL-995 MCC +exec("scripts/weapons/Rifles/S3S.cs"); //S3-S Combat Rifle +exec("scripts/weapons/SMGs/MP26CMDO.cs"); //MP26-CMDO SMG +exec("scripts/weapons/Melee/Plasmasabre.cs"); //Plasma Saber +exec("scripts/weapons/Shotguns/SA2400.cs"); //SA2400 Shotgun +exec("scripts/weapons/Pistols/DesertEagle.cs"); //Desert Eagle +exec("scripts/weapons/Equipment/Javelin.cs"); //Javelin +exec("scripts/weapons/Shotguns/SCD343.cs"); //SCD343 Shotgun +exec("scripts/weapons/Rifles/M4A1.cs"); //M4A1 Assault Rifle +exec("scripts/weapons/Rifles/PulseRifle.cs"); //Pulse Rifle +exec("scripts/weapons/SMGs/PulseSMG.cs"); //Pulse SMG +exec("scripts/weapons/SMGs/P90.cs"); //P90 SMG +exec("scripts/weapons/Rifles/ALSWPSniper.cs"); //ALSWP Sniper Rifle +exec("scripts/weapons/Other/PlasmaTorpedo.cs"); //Plasma Torpedo Cannon +exec("scripts/weapons/Pistols/M93.cs"); //M93 Pistol +exec("scripts/weapons/Pistols/CrimsonHawk.cs"); //Crimson Hawk Pistol +exec("scripts/weapons/Equipment/Stinger.cs"); //Stinger +exec("scripts/weapons/MGs/MRXX.cs"); //MRXX ZC4 Machine Gun +exec("scripts/weapons/Shotguns/Model1887.cs"); //Model 1887 Shotgun + + +exec("scripts/TWM2/Bosses/LordVardison.cs"); //load him last +schedule(5000, 0, "exec", "scripts/TWM2/Objects/MissileSatellite.cs"); //Missile Satellite +schedule(5000, 0, "exec", "scripts/TWM2/Systems/HarbingersWrath.cs"); //Gunships stuff +schedule(5000, 0, "exec", "scripts/vehicles/vehicle_helicopter.cs"); //Gunships stuff +schedule(5000, 0, "exec", "scripts/vehicles/vehicle_harbingerGunship.cs"); //Gunships stuff + +error("Loading custom scripts"); +exec("scripts/Customize/CustomScripts.cs"); + +error("Loading TWM2 Patches (POST 3.0)"); +exec("scripts/TWM2/Systems/Patchloader.cs"); +error("All Patches Loaded"); + +Error("********************************************"); +Error("********************************************"); +Error("************* EXECUTE COMPLETE *************"); +Error("********************************************"); +Error("********************************************"); diff --git a/Univ/twm2/patches/3.025/Patchloader.cs b/Univ/twm2/patches/3.025/Patchloader.cs new file mode 100644 index 0000000..8ae9ce4 --- /dev/null +++ b/Univ/twm2/patches/3.025/Patchloader.cs @@ -0,0 +1,13 @@ +//Patchloader.cs +//Phantom139 + +//For TWM2 3.03 and Beyond +//Loads all scripts and packages in the /scripts/TWM2/patch/ folder +function loadPatches() { + %search = "scripts/TWM2/patch/*.cs"; + for(%file = findFirstFile(%search); %file !$= ""; %file = findNextFile(%search)) { + %type = fileBase(%file); // get the name of the script + exec("scripts/TWM2/patch/" @ %type @ ".cs"); + } +} +loadPatches(); diff --git a/Univ/twm2/patches/3.025/server.cs b/Univ/twm2/patches/3.025/server.cs new file mode 100644 index 0000000..d02965f --- /dev/null +++ b/Univ/twm2/patches/3.025/server.cs @@ -0,0 +1,2911 @@ +// Set the version of the mod here +$ModVersion = "v0.70 Development Version 1"; +$ModCredits = ""; + +if ($Host::TimeLimit $= "") + $Host::TimeLimit = 20; + +$SB::WODec = 0.004; // whiteout +$SB::DFDec = 0.02; // damageFlash + +// z0dd - ZOD, 10/06/02. Set this as base default, +// modders can change this value to match theirs. +$DefaultGravity = -20; + +// ----------------------------------------------------- +// z0dd - ZOD, 5/27/02. Addition. Tribes2.exe will call +// this for competition mod to alert players on server +// during tournament that a remote connection has been +// established to the server. +function onTelnetConnect(%ip, %access) { + messageAll('msgTelnet', "\c5TELNET: RCon Connection from "@%ip@"("@%access@")"); + echo("TOTAL WARFARE MOD "@$TWM2::Version@""); + // Thou shall not spam +} + +// z0dd - ZOD, 9/13/02. Anti spam +function serverCMDpracticeHudInitialize(%client, %val) +{ + // Thou shall not spam +} + +function VerifyCDCheck(%func) +{ + if (!cdFileCheck()) + messageBoxOkCancel("TRIBES 2 CD CHECK", "You must have the Tribes 2 CD in the CD-ROM drive while playing Tribes 2. Please insert the CD.", "schedule(0, 0, VerifyCDCheck, " @ %func @ ");", "quit();"); + else + call(%func); +} + +function logEcho(%msg) +{ + if ($LogEchoEnabled) + echo("LOG: " @ %msg); +} + +function CreateServer(%mission, %missionType) +{ + DestroyServer(); + + // Load server data blocks + exec("scripts/commanderMapIcons.cs"); + exec("scripts/markers.cs"); + exec("scripts/serverAudio.cs"); + exec("scripts/damageTypes.cs"); + exec("scripts/deathMessages.cs"); + exec("scripts/inventory.cs"); + exec("scripts/camera.cs"); + exec("scripts/particleEmitter.cs"); // Must exist before item.cs and explosion.cs + exec("scripts/particleDummies.cs"); + exec("scripts/projectiles.cs"); // Must exits before item.cs + exec("scripts/player.cs"); + exec("scripts/gameBase.cs"); + exec("scripts/staticShape.cs"); + exec("scripts/weapons.cs"); + exec("scripts/turret.cs"); + exec("scripts/weapTurretCode.cs"); + //exec("scripts/truPhysics.cs"); + exec("scripts/functions.cs"); + exec("scripts/do_not_delete/loadscreen.cs"); + exec("scripts/libraries.cs"); + exec("scripts/do_not_delete/Dfunctions.cs"); + exec("scripts/pack.cs"); + exec("scripts/vehicles/VehicleEffects.cs"); + exec("scripts/vehicles/vehicle_spec_fx.cs"); // Must exist before other vehicle files or CRASH BOOM + exec("scripts/vehicles/serverVehicleHud.cs"); + exec("scripts/vehicles/vehicle_shrike.cs"); + exec("scripts/vehicles/vehicle_bomber.cs"); + exec("scripts/vehicles/vehicle_havoc.cs"); + exec("scripts/vehicles/vehicle_wildcat.cs"); + exec("scripts/vehicles/vehicle_tank.cs"); + exec("scripts/vehicles/vehicle_mpb.cs"); + exec("scripts/vehicles/vehicle_escapepod.cs"); + exec("scripts/vehicles/vehicle_helicopter.cs"); + exec("scripts/vehicles/vehicle_harrier.cs"); + exec("scripts/vehicles/vehicle_DropPod.cs"); + exec("scripts/vehicles/vehicle_harbingerGunship.cs"); + exec("scripts/vehicles/vehicle_centaurArtillery.cs"); + exec("scripts/vehicles/vehicle_WindshearPlatform.cs"); + exec("scripts/vehicles/vehicle_TacticalMissile.cs"); + exec("scripts/vehicles/vehicle_ac130.cs"); + exec("scripts/vehicles/vehicle_Stormseige.cs"); + exec("scripts/vehicles/vehicle.cs"); // Must be added after all other vehicle files or EVIL BAD THINGS + exec("scripts/ai.cs"); + exec("scripts/item.cs"); + exec("scripts/station.cs"); + exec("scripts/simGroup.cs"); + exec("scripts/trigger.cs"); + exec("scripts/forceField.cs"); + exec("scripts/lightning.cs"); + exec("scripts/weather.cs"); + exec("scripts/deployables.cs"); + exec("scripts/stationSetInv.cs"); + exec("scripts/navGraph.cs"); + exec("scripts/targetManager.cs"); + exec("scripts/serverCommanderMap.cs"); + exec("scripts/environmentals.cs"); + exec("scripts/power.cs"); + exec("scripts/serverTasks.cs"); + exec("scripts/admin.cs"); + exec("prefs/banlist.cs"); + exec("scripts/savebuilding.cs"); + exec("scripts/JTLmeteorStorm.cs"); + exec("scripts/prison.cs"); + exec("scripts/hazard.cs"); + exec("scripts/ion.cs"); + exec("scripts/solitudeBlock.cs"); + exec("scripts/message.cs"); + exec("scripts/chatCommands.cs"); + exec("scripts/rankStuff.cs"); + exec("scripts/skywrite.cs"); + exec("scripts/dEffects.cs"); + + exec("scripts/do_not_delete/Nuclear_blast.cs"); + exec("scripts/TWM2/LoadMod.cs"); + + // TODO - fix TR2 game screwing up here + //automatically load any mission type that follows naming convention typeGame.name.cs + if (!isDemo()) + { + %search = "scripts/*Game.cs"; + for(%file = findFirstFile(%search); %file !$= ""; %file = findNextFile(%search)) + { + %type = fileBase(%file); // get the name of the script + if(%type !$= "TR2Game") { + exec("scripts/" @ %type @ ".cs"); + } + } + } + //the DEMO version only uses DefaultGame.cs and SinglePlayerGame.cs + else + { + exec("scripts/DefaultGame.cs"); + exec("scripts/SinglePlayerGame.cs"); + exec("scripts/CTFGame.cs"); + exec("scripts/HuntersGame.cs"); + } + + $missionSequence = 0; + $CurrentMissionType = %missionType; + $HostGameBotCount = 0; + $HostGamePlayerCount = 0; + if ( $HostGameType !$= "SinglePlayer" ) + allowConnections(true); + $ServerGroup = new SimGroup (ServerGroup); + if (%mission $= "") + { + %mission = $HostMissionFile[$HostMission[0,0]]; + %missionType = $HostTypeName[0]; + } + + if ( ( isDemo() && $HostGameType !$= "SinglePlayer" ) || ( $HostGameType $= "Online" && $pref::Net::DisplayOnMaster !$= "Never" ) ) + schedule(0,0,startHeartbeat); + + // setup the bots for this server + if ( !isDemo() && $Host::BotsEnabled ) + initGameBots( %mission, %missionType ); + + // load the mission... + loadMission(%mission, %missionType, true); + + exec("prefs/contentSave.cs"); +} + +function initGameBots( %mission, %mType ) +{ + echo( "adding bots..." ); + + AISystemEnabled( false ); + if ( $Host::BotCount > 0 && %mType !$= "SinglePlayer" ) + { + // Make sure this mission is bot enabled: + for ( %idx = 0; %idx < $HostMissionCount; %idx++ ) + { + if ( $HostMissionFile[%idx] $= %mission ) + break; + } + + if ( $BotEnabled[%idx] ) + { + if ( $Host::BotCount > 16 ) + $HostGameBotCount = 16; + else + $HostGameBotCount = $Host::BotCount; + + if ( $Host::BotCount > $Host::MaxPlayers - 1 ) + $HostGameBotCount = $Host::MaxPlayers - 1; + + //set the objective reassessment timeslice var + $AITimeSliceReassess = 0; + aiConnectMultiple( $HostGameBotCount, $Host::MinBotDifficulty, $Host::MaxBotDifficulty, -1 ); + } + else + { + $HostGameBotCount = 0; + } + } +} + +function findNextCycleMission() +{ + %numPlayers = ClientGroup.getCount(); + %tempMission = $CurrentMission; + %failsafe = 0; + while (1) + { + %nextMissionIndex = getNextMission(%tempMission, $CurrentMissionType); + %nextPotentialMission = $HostMissionFile[%nextMissionIndex]; + + //just cycle to the next if we've gone all the way around... + if (%nextPotentialMission $= $CurrentMission || %failsafe >= 1000) + { + %nextMissionIndex = getNextMission($CurrentMission, $CurrentMissionType); + // z0dd - ZOD - Founder, 10/06/02. Was trying to load a mission name instead of file. + //return $HostMissionName[%nextMissionIndex]; + return $HostMissionFile[%nextMissionIndex]; + } + + //get the player count limits for this mission + %limits = $Host::MapPlayerLimits[%nextPotentialMission, $CurrentMissionType]; + if (%limits $= "") + return %nextPotentialMission; + else + { + %minPlayers = getWord(%limits, 0); + %maxPlayers = getWord(%limits, 1); + + if ((%minPlayers < 0 || %numPlayers >= %minPlayers) && (%maxPlayers < 0 || %numPlayers <= %maxPlayers)) + return %nextPotentialMission; + } + + //since we didn't return the mission, we must not have an acceptable number of players - check the next + %tempMission = %nextPotentialMission; + %failsafe++; + } +} + +function CycleMissions() +{ + echo( "cycling mission. " @ ClientGroup.getCount() @ " clients in game." ); + %nextMission = findNextCycleMission(); + messageAll( 'MsgClient', 'Loading %1 (%2)...', %nextMission, $MissionTypeDisplayName ); + loadMission( %nextMission, $CurrentMissionType ); + + $Game::ZombieCount = 0; +} + +function DestroyServer() +{ + $missionRunning = false; + allowConnections(false); + stopHeartbeat(); + if ( isObject( MissionGroup ) ) + MissionGroup.delete(); + if ( isObject( MissionCleanup ) ) + MissionCleanup.delete(); + if (isObject(game)) + { + game.deactivatePackages(); + game.delete(); + } + if (isObject($ServerGroup)) + $ServerGroup.delete(); + + // delete all the connections: + while(ClientGroup.getCount()) + { + %client = ClientGroup.getObject(0); + if (%client.isAIControlled()) + %client.drop(); + else + %client.delete(); + } + + // delete all the data blocks... + // this will cause problems if there are any connections + deleteDataBlocks(); + + // reset the target manager + resetTargetManager(); + + echo( "exporting server prefs..." ); + export( "$Host::*", "prefs/ServerPrefs.cs", false ); + purgeResources(); + + // TR2 + // This is a failsafe way of ensuring that default gravity is always restored + // if a game type (such as TR2) changes it. It is placed here so that listen + // servers will work after opening and closing different gametypes. + if ($DefaultGravity !$= "") + setGravity($DefaultGravity); +} + +function Disconnect() +{ + if ( isObject( ServerConnection ) ) + ServerConnection.delete(); + DisconnectedCleanup(); + DestroyServer(); +} + +function DisconnectedCleanup() +{ + $CurrentMissionType = ""; + $CurrentMission = ""; + + // Make sure we're not still waiting for the loading info: + cancelLoadInfoCheck(); + + // clear the chat hud message vector + HudMessageVector.clear(); + if ( isObject( PlayerListGroup ) ) + PlayerListGroup.delete(); + + // terminate all playing sounds + alxStopAll(); + + // clean up voting + voteHud.voting = false; + mainVoteHud.setvisible(0); + + // clear all print messages + clientCmdclearBottomPrint(); + clientCmdClearCenterPrint(); + + // clear the inventory and weapons hud + weaponsHud.clearAll(); + inventoryHud.clearAll(); + + // back to the launch screen + Canvas.setContent(LaunchGui); + if ( isObject( MusicPlayer ) ) + MusicPlayer.stop(); + clearTextureHolds(); + purgeResources(); + + if ( $PlayingOnline ) + { + // Restart the email check: + if ( !EmailGui.checkingEmail && EmailGui.checkSchedule $= "" ) + CheckEmail( true ); + + IRCClient::onLeaveGame(); + } +} + +// we pass the guid as well, in case this guy leaves the server. +function kick( %client, %admin, %guid ) { + if ( %admin $= "CynBan" ) + messageAll( 'MsgVotePassed', "\c2%1 was kicked by "@$ChatBot::Name@".", %client.name ); + else if(%admin) // z0dd - ZOD, 8/23/02. Let the player know who kicked him. + messageAll( 'MsgAdminForce', '\c2%2 has kicked %1.', Game.kickClientName, %admin.name ); + else + messageAll( 'MsgVotePassed', '\c2%1 was kicked by vote.', Game.kickClientName ); + + messageClient(%client, 'onClientKicked', ""); + messageAllExcept( %client, -1, 'MsgClientDrop', "", Game.kickClientName, %client ); + + LogConnection(%client, 2); + + if ( %client.isAIControlled() ) + { + //$HostGameBotCount--; // said it will fix the bug were when i kick a bot u get 255 bot count + %client.drop(); + } + else + { + if ( $playingOnline ) // won games + { + %count = ClientGroup.getCount(); + %found = false; + for( %i = 0; %i < %count; %i++ ) // see if this guy is still here... + { + %cl = ClientGroup.getObject( %i ); + if ( %cl.guid == %guid ) + { + %found = true; + + // kill and delete this client, their done in this server. + if ( isObject( %cl.player ) ) + %cl.player.scriptKill(0); + + if ( isObject( %cl ) ) + { + if(%admin && %admin $= "CynBan") // z0dd - ZOD, 8/23/02. Let the player know who kicked him. + %cl.setDisconnectReason( %admin.nameBase @ "has kicked you out of the game." ); + else + %cl.setDisconnectReason( "You have been kicked out of the game." ); + + %cl.schedule(700, "delete"); + } + + BanList::add( %guid, "0", $Host::KickBanTime ); + } + } + if ( !%found ) + BanList::add( %guid, "0", $Host::KickBanTime ); // keep this guy out for a while since he left. + } + else // lan games + { + // kill and delete this client + if ( isObject( %client.player ) ) + %client.player.scriptKill(0); + + if ( isObject( %client ) ) + { + %client.setDisconnectReason( "You have been kicked out of the game." ); + %client.schedule(700, "delete"); + } + + BanList::add( 0, %client.getAddress(), $Host::KickBanTime ); + } + } +} + +function ban( %client, %admin ) { + if ( %admin $= "HackBan" ) + messageAll( 'MsgVotePassed', '\c2%1 was banned for hacking.', %client.name ); + else if ( %admin $= "CynBan" ) + messageAll( 'MsgVotePassed', "\c2%1 was banned by "@$ChatBot::Name@".", %client.name ); + else if ( %admin ) // z0dd - ZOD, 8/23/02. Let the player know who kicked him. + messageAll('MsgAdminForce', '\c2%2 has banned %1.', %client.name, %admin.name); + else + messageAll( 'MsgVotePassed', '\c2%1 was banned by vote.', %client.name ); + + messageClient(%client, 'onClientBanned', ""); + messageAllExcept( %client, -1, 'MsgClientDrop', "", %client.name, %client ); + + LogConnection(%client, 3); + + // kill and delete this client + if ( isObject(%client.player) ) + %client.player.scriptKill(0); + + if ( isObject( %client ) ) + { + if(%admin $= "HackBan") { + %client.setDisconnectReason( "You have been banned from this server for hacking." ); + } + else if(%admin && %admin !$= "CynBan") // z0dd - ZOD, 8/23/02. Let the player know who kicked him. + %client.setDisconnectReason( %admin.nameBase @ "has banned you from this server." ); + else + %client.setDisconnectReason( "You have been banned from this server." ); + + %client.schedule(700, "delete"); + } + + if(%admin $= "HackBan") { + BanList::add(%client.guid, %client.getAddress(), 9999999999999999); //perm ban + } + else { + BanList::add(%client.guid, %client.getAddress(), $Host::BanTime); + } +} + +function getValidVoicePitch(%voice, %voicePitch) +{ + if (%voicePitch < -1.0) + %voicePitch = -1.0; + else if (%voicePitch > 1.0) + %voicePitch = 1.0; + + //Voice pitch range is from 0.5 to 2.0, however, we should tighten the range to + //avoid players sounding like mickey mouse, etc... + //see if we're pitching down - clamp the min pitch at 0.875 + if (%voicePitch < 0) + return (1.0 + (0.125 * %voicePitch)); + + //max voice pitch is 1.125 + else if (%voicePitch > 0) + return 1.0 + (0.125 * %voicePitch); + + else + return 1.0; +} + +$DemoNameCount = 0; +function addDemoAlias( %name ) +{ + $DemoName[$DemoNameCount] = %name; + $DemoNameCount++; +} + +if ( isDemo() ) +{ + addDemoAlias( "Butterfingers" ); + addDemoAlias( "Bullseye" ); + addDemoAlias( "Casualty" ); + addDemoAlias( "Dogfood" ); + addDemoAlias( "Extinct" ); + addDemoAlias( "Fodder" ); + addDemoAlias( "Grunt" ); + addDemoAlias( "Helpless" ); + addDemoAlias( "Itchy" ); + addDemoAlias( "Bait" ); + addDemoAlias( "Kibble" ); + addDemoAlias( "MonkeyBoy" ); + addDemoAlias( "Meat" ); + addDemoAlias( "Newbie" ); + addDemoAlias( "Owned" ); + addDemoAlias( "Poser" ); + addDemoAlias( "Quaker" ); + addDemoAlias( "Roadkill" ); + addDemoAlias( "SkidMark" ); + addDemoAlias( "EZTarget" ); + addDemoAlias( "Underdog" ); + addDemoAlias( "Vegetable" ); + addDemoAlias( "Weakling" ); + addDemoAlias( "Flatline" ); + addDemoAlias( "Spud" ); + addDemoAlias( "Zero" ); + addDemoAlias( "WetNose" ); + addDemoAlias( "Chowderhead" ); + addDemoAlias( "Clown" ); + addDemoAlias( "Dodo" ); + addDemoAlias( "Endangered" ); + addDemoAlias( "Feeble" ); + addDemoAlias( "Gimp" ); + addDemoAlias( "Inky" ); + addDemoAlias( "Pinky" ); + addDemoAlias( "Blinky" ); + addDemoAlias( "Clyde" ); + addDemoAlias( "Loopy" ); + addDemoAlias( "Masochist" ); + addDemoAlias( "Pancake" ); + addDemoAlias( "Rubbish" ); + addDemoAlias( "Sickly" ); + addDemoAlias( "Terminal" ); + addDemoAlias( "Ugly Duckling" ); + addDemoAlias( "Sheepish" ); + addDemoAlias( "Whiplash" ); + addDemoAlias( "KickMe" ); + addDemoAlias( "Yellow Belly" ); + addDemoAlias( "Bits" ); + addDemoAlias( "Doofus" ); + addDemoAlias( "Fluffy Bunny" ); + addDemoAlias( "Lollipop" ); + addDemoAlias( "Troglodyte" ); + addDemoAlias( "Carcass" ); + addDemoAlias( "Noodle" ); + addDemoAlias( "Spastic" ); + addDemoAlias( "Wimpy" ); + addDemoAlias( "Sweet Pea" ); + addDemoAlias( "Abused" ); + addDemoAlias( "Happy Camper" ); + addDemoAlias( "FreakShow" ); + addDemoAlias( "Bumpkin" ); + addDemoAlias( "Mad Cow" ); + addDemoAlias( "Cud" ); +} + +function pickDemoName() +{ + // Pick a unique name if possible: + %idx = mFloor( getRandom() * $DemoNameCount ); + for ( %i = 0; %i < $DemoNameCount; %i++ ) + { + %name = $DemoName[mMod( %idx + %i, $DemoNameCount )]; + %isUnique = true; + %count = ClientGroup.getCount(); + for ( %ci = 0; %ci < %count; %ci++ ) + { + if ( strcmp( %name, detag( getTaggedString( ClientGroup.getObject( %ci ).name ) ) ) == 0 ) + { + %isUnique = false; + break; + } + } + + if ( %isUnique ) + break; + } + + // Append a number to make the alias unique: + if ( !%isUnique ) + { + %suffix = 1; + while ( !%isUnique ) + { + %nameTry = %name @ "." @ %suffix; + %isUnique = true; + + %count = ClientGroup.getCount(); + for ( %i = 0; %i < %count; %i++ ) + { + if ( strcmp( %nameTry, detag( getTaggedString( ClientGroup.getObject( %i ).name ) ) ) == 0 ) + { + %isUnique = false; + break; + } + } + + %suffix++; + } + + // Success! + %name = %nameTry; + } + + return( %name ); +} + +function GameConnection::onConnect( %client, %name, %raceGender, %skin, %voice, %voicePitch ) { + %client.setMissionCRC($missionCRC); + sendLoadInfoToClient( %client ); + + //set the default killstreaks (1, 2, and 4) + %client.KillstreakOn[1] = 1; + %client.KillstreakOn[2] = 1; + %client.KillstreakOn[4] = 1; + + //%client.setSimulatedNetParams(0.1, 30); + if (isDemo() && $CurrentMissionType !$= "SinglePlayer") + { + %client.armor = "Light"; + %client.sex = "Male"; + %client.race = "Human"; + %client.nameBase = pickDemoName(); + %client.name = addTaggedString( %client.nameBase ); + %client.voice = "Male1"; + %client.voiceTag = addTaggedString( "Male1" ); + if ( %client & 1 ) + %client.skin = addTaggedString( "swolf" ); + else + %client.skin = addTaggedString( "beagle" ); + } + else + { + // if hosting this server, set this client to superAdmin + if (%client.getAddress() $= "Local") + { + %client.isAdmin = true; + %client.isSuperAdmin = true; + } + + // Get the client's unique id: + %authInfo = %client.getAuthInfo(); + %client.guid = getField( %authInfo, 3 ); + + // check admin and super admin list, and set status accordingly + if ( !%client.isSuperAdmin ) + { + if ( isOnSuperAdminList( %client ) ) + { + %client.isAdmin = true; + %client.isSuperAdmin = true; + } + else if ( isOnAdminList( %client ) ) + { + %client.isAdmin = true; + } + } + + // Sex/Race defaults + switch$ ( %raceGender ) + { + case "Human Male": + %client.sex = "Male"; + %client.race = "Human"; + case "Human Female": + %client.sex = "Female"; + %client.race = "Human"; + case "Bioderm": + %client.sex = "Male"; + %client.race = "Bioderm"; + default: + error("Invalid race/gender combo passed: " @ %raceGender); + %client.sex = "Male"; + %client.race = "Human"; + } + %client.armor = "Light"; + + // Override the connect name if this server does not allow smurfs: + %realName = getField( %authInfo, 0 ); + if ( $PlayingOnline && $Host::NoSmurfs ) { + %client.smurfName = %name; + %name = %realName; + } + + if ( strcmp( %name, %realName ) == 0 ) + { + %client.isSmurf = false; + + //make sure the name is unique - that a smurf isn't using this name... + %dup = -1; + %count = ClientGroup.getCount(); + for (%i = 0; %i < %count; %i++) + { + %test = ClientGroup.getObject( %i ); + if (%test != %client) + { + %rawName = stripChars( detag( getTaggedString( %test.name ) ), "\cp\co\c6\c7\c8\c9" ); + if (%realName $= %rawName) + { + %dup = %test; + %dupName = %rawName; + break; + } + } + } + + //see if we found a duplicate name + if (isObject(%dup)) + { + //change the name of the dup + %isUnique = false; + %suffixCount = 1; + while (!%isUnique) + { + %found = false; + %testName = %dupName @ "." @ %suffixCount; + for (%i = 0; %i < %count; %i++) + { + %cl = ClientGroup.getObject(%i); + %rawName = stripChars( detag( getTaggedString( %cl.name ) ), "\cp\co\c6\c7\c8\c9" ); + if (%rawName $= %testName) + { + %found = true; + break; + } + } + + if (%found) + %suffixCount++; + else + %isUnique = true; + } + + //%testName will now have the new unique name... + %oldName = %dupName; + %newName = %testName; + + MessageAll( 'MsgSmurfDupName', '\c2The real \"%1\" has joined the server.', %dupName ); + MessageAll( 'MsgClientNameChanged', '\c2The smurf \"%1\" is now called \"%2\".', %oldName, %newName, %dup ); + + %dup.name = addTaggedString(%newName); + setTargetName(%dup.target, %dup.name); + } + + // Add the tribal tag: + %tag = getField( %authInfo, 1 ); + + if(%tag $= "{[TWM}]-") { + AwardClient(%client, 007); + } + + %append = getField( %authInfo, 2 ); + if ( %append ) + %name = "\cp\c6" @ %name @ "\c7" @ %tag @ "\co"; + else + %name = "\cp\c7" @ %tag @ "\c6" @ %name @ "\co"; + + %client.sendGuid = %client.guid; + } + else + { + %client.isSmurf = true; + %client.sendGuid = 0; + %name = stripTrailingSpaces( strToPlayerName( %name ) ); + if ( strlen( %name ) < 3 ) + %name = "Poser"; + + // Make sure the alias is unique: + %isUnique = true; + %count = ClientGroup.getCount(); + for ( %i = 0; %i < %count; %i++ ) + { + %test = ClientGroup.getObject( %i ); + %rawName = stripChars( detag( getTaggedString( %test.name ) ), "\cp\co\c6\c7\c8\c9" ); + if ( strcmp( %name, %rawName ) == 0 ) + { + %isUnique = false; + break; + } + } + + // Append a number to make the alias unique: + if ( !%isUnique ) + { + %suffix = 1; + while ( !%isUnique ) + { + %nameTry = %name @ "." @ %suffix; + %isUnique = true; + + %count = ClientGroup.getCount(); + for ( %i = 0; %i < %count; %i++ ) + { + %test = ClientGroup.getObject( %i ); + %rawName = stripChars( detag( getTaggedString( %test.name ) ), "\cp\co\c6\c7\c8\c9" ); + if ( strcmp( %nameTry, %rawName ) == 0 ) + { + %isUnique = false; + break; + } + } + + %suffix++; + } + + // Success! + %name = %nameTry; + } + + %smurfName = %name; + // Tag the name with the "smurf" color: + %name = "\cp\c8" @ %name @ "\co"; + } + + %client.CheckPGDConnect(); // <-- Used for Universal features + PGD_IsFileDL("Data/"@%client.guid@"/Ranks/TWM2/Saved.TWMSave"); + schedule(7000, 0, "LoadUniversalRank", %client); + + %client.name = addTaggedString(%name); + if (%client.isSmurf) + %client.nameBase = %smurfName; + else + %client.nameBase = %realName; + + // Make sure that the connecting client is not trying to use a bot skin: + %temp = detag( %skin ); + if ( %temp $= "basebot" || %temp $= "basebbot" ) + %client.skin = addTaggedString( "base" ); + else + %client.skin = addTaggedString( %skin ); + + if ($Host::NoAnnoyingVoiceChatSpam && %voice $= "") { + switch$ ( %raceGender ) { + case "Human Male": + %voice = "Male1"; + case "Human Female": + %voice = "Fem1"; + case "Bioderm": + %voice = "Derm1"; + default: + %voice = "Male1"; + } + } + + %client.voice = %voice; + %client.voiceTag = addtaggedString(%voice); + + //set the voice pitch based on a lookup table from their chosen voice + %client.voicePitch = getValidVoicePitch(%voice, %voicePitch); + } + + %client.justConnected = true; + %client.isReady = false; + + // full reset of client target manager + clientResetTargets(%client, false); + + %client.target = allocClientTarget(%client, %client.name, %client.skin, %client.voiceTag, '_ClientConnection', 0, 0, %client.voicePitch); + %client.score = 0; + %client.team = 0; + + $instantGroup = ServerGroup; + $instantGroup = MissionCleanup; + + echo("CADD: " @ %client @ " " @ %client.getAddress()); + LogConnection(%client, 1); + + %count = ClientGroup.getCount(); + for(%cl = 0; %cl < %count; %cl++) + { + %recipient = ClientGroup.getObject(%cl); + if ((%recipient != %client)) + { + // These should be "silent" versions of these messages... + messageClient(%client, 'MsgClientJoin', "", + %recipient.name, + %recipient, + %recipient.target, + %recipient.isAIControlled(), + %recipient.isAdmin, + %recipient.isSuperAdmin, + %recipient.isSmurf, + %recipient.sendGuid); + + messageClient(%client, 'MsgClientJoinTeam', "", %recipient.name, $teamName[%recipient.team], %recipient, %recipient.team ); + } + } + +// commandToClient(%client, 'getManagerID', %client); + + commandToClient(%client, 'setBeaconNames', "Target Beacon", "Marker Beacon", "Bomb Target"); + + if ( $CurrentMissionType !$= "SinglePlayer" ) + { + if ( isDemo() ) + { + messageClient(%client, 'MsgClientJoin', '\c2Welcome to the Tribes 2 Demo!', + %client.name, + %client, + %client.target, + false, // isBot + %client.isAdmin, + %client.isSuperAdmin, + %client.isSmurf, + %client.sendGuid ); + } + else + { + messageClient(%client, 'MsgClientJoin', '\c2Welcome to Tribes2 %1. ~wfx/Bonuses/Nouns/major.wav', + %client.name, + %client, + %client.target, + false, // isBot + %client.isAdmin, + %client.isSuperAdmin, + %client.isSmurf, + %client.sendGuid ); + } + messageAllExcept(%client, -1, 'MsgClientJoin', '\c1%1 joined the game. ~wfx/Bonuses/Nouns/major.wav', + %client.name, + %client, + %client.target, + false, // isBot + %client.isAdmin, + %client.isSuperAdmin, + %client.isSmurf, + %client.sendGuid ); + } + else + messageClient(%client, 'MsgClientJoin', "\c0Mission Insertion complete...", + %client.name, + %client, + %client.target, + false, // isBot + false, // isAdmin + false, // isSuperAdmin + false, // isSmurf + %client.sendGuid ); + + %opt = "\c2Server Options:"; + if ($MissionRunning == true) + %opt = %opt @ "\nTime limit: " @ mFloor((($Host::TimeLimit * 60 * 1000) + $missionStartTime - getSimTime())/1000/60) @ " / " @ $Host::TimeLimit; + else + %opt = %opt @ "\nTime limit: " @ $Host::TimeLimit; + %opt = %opt @ "\nMax players: " @ $Host::MaxPlayers @ + "\nTeam Damage: " @ ($Host::TeamDamageOn ? "On" : "Off") @ + "\nPurebuild: " @ ($Host::Purebuild ? "On" : "Off") @ + "\nCascade: " @ ($Host::Cascade ? "On" : "Off") @ + "\nHazard Mode: " @ ($Host::Hazard::Enabled ? "On" : "Off") @ + "\nMTC Mode: " @ ($Host::MTC::Enabled ? "On" : "Off") @ + "\nExpert Mode: " @ ($Host::ExpertMode ? "On" : "Off") @ + "\nPrison: " @ ($Host::Prison::Enabled ? "On" : "Off"); + + messageClient(%client,'msgClient',%opt); + + //Game.missionStart(%client); + setDefaultInventory(%client); + CheckGUID(%client); + + if ($TWM2::UseRankTags) { + schedule(15000, 0, "DoNameChangeChecks", %client); + } + + %client.canSaveRank = 1; + %client.canLoadRank = 1; + + if($Phantom::serverClosed) { + if(!%client.isdev) { + MessageAll('Message', "\c2"@%client.namebase@" Tryed to join the server, but it is locked."); + %client.delete(); + messageClient(%client, 'onClientKicked', ""); + messageAllExcept( %client, -1, 'MsgClientDrop', "", %client.namebase, %client ); + %client.setDisconnectReason( "Sorry, This Server is Locked To Any Additional Clients, Try back Later" ); + return; + } + } + + PlayerTimeLoop(%client); + // + // + %file = ""@$TWM::RanksDirectory@"/"@%client.guid@"/Saved.TWMSave"; +// echo("Checking File - Done, IF"); + if(!isFile(%file)) { + echo("Creating New Varibles For "@%client.namebase@""); + $Rank::Name[%client.GUID] = ""@%client.namebase@""; + $Rank::Rank[%client.GUID] = "Private"; + $Rank::Num[%client.GUID] = 0; + $Rank::XP[%client.GUID] = 0; + $Rank::TopPlPosition[%client.GUID] = ""@$Rank::numplayers@""; + $Rank::Phrase[%client.GUID] = ""; + $Rank::SP[%client.GUID] = 0; + $TWM2::PlayerGameTime[%client.GUID] = 0; +// echo("Complete, Running the load"); + } + // + //LoadClientRankfile(%client); + + if ($missionRunning) + %client.startMission(); + $HostGamePlayerCount++; + %client.demoJustJoined = true; + + + getRealName(%client); + + %logname = getTaggedString(%client.name); + %logname = strreplace(%logname,"\x10",""); + %logname = strreplace(%logname,"\x11",""); + %logname = strreplace(%logname,"\c8",""); + %logname = strreplace(%logname,"\c7",""); + %logname = strreplace(%logname,"\c6",""); + + %logExport = formatTimeString(yy) @ "/" @ formatTimeString(mm) @ "/" @ formatTimeString(dd); + %logExport = %logExport SPC formatTimeString(h) @ ":" @ formatTimeString(n) @ "." @ formatTimeString(s) SPC formatTimeString(a); + %logExport = %logExport SPC "Connection. " @ %client.getAddress() SPC " GUID: " @ %client.guid; + %logExport = %logExport SPC "Name: " @ %logname; + if (%client.isSmurf) + %logExport = %logExport SPC "Real Name: " @ getRealName(%client, "echo"); + + if ($Construction::Logging::LogConnects) + exportToLog(%logexport, "Logs/Connections/" @ formatTimeString(yy) @ "-" @ formatTimeString(mm) @ "-" @ formatTimeString(dd) @ ".log"); + +} + +function RemoveOrphansLoop(%tick) { + if(%tick > $TWM2::RemoveOrphansTime) { + MessageAll('MsgCyn', "\c4Cynthia: Removing Orphaned Deployables Now."); + if(isObject(Game)) { + delOrphanedPieces(true); + Game.removeDepTime = getSimTime() + delOrphanedPieces(true) + 1000; + } + return; + } + %tick++; + schedule(1000, 0, "RemoveOrphansLoop", %tick); +} + +function GameConnection::onDrop(%client, %reason) { + + UpdateRankFile(%client); //Update it first + PrepareUpload(%client); //universally upload it (if we can) + LogConnection(%client, 4); + + if (isObject(Game)) + Game.onClientLeaveGame(%client); + + // make sure that tagged string of player name is not used + if ( $CurrentMissionType $= "SinglePlayer" ) + messageAllExcept(%client, -1, 'MsgClientDrop', "", getTaggedString(%client.name), %client); + else + messageAllExcept(%client, -1, 'MsgClientDrop', '\c1%1 has left the game.', getTaggedString(%client.name), %client); + + MessageAll('MsgCyn', "\c4Cynthia: Removing Orphaned Deployables in "@MFloor($TWM2::RemoveOrphansTime/60)@" Minutes"); + schedule(1000, 0, "RemoveOrphansLoop", 1); + + + %logname = getTaggedString(%client.name); + %logname = strreplace(%logname,"\x10",""); + %logname = strreplace(%logname,"\x11",""); + %logname = strreplace(%logname,"\c8",""); + %logname = strreplace(%logname,"\c7",""); + %logname = strreplace(%logname,"\c6",""); + + %logExport = formatTimeString(yy) @ "/" @ formatTimeString(mm) @ "/" @ formatTimeString(dd); + %logExport = %logExport SPC formatTimeString(h) @ ":" @ formatTimeString(n) @ "." @ formatTimeString(s) SPC formatTimeString(a); + %logExport = %logExport SPC "Disconnect. " @ %client.getAddress() SPC " GUID: " @ %client.guid; + %logExport = %logExport SPC "Name: " @ %logname; + if (%client.isSmurf) + %logExport = %logExport SPC "Real Name: " @ getRealName(%client, "echo"); + if ($Construction::Logging::LogConnects) + exportToLog(%logexport, "Logs/Connections/" @ formatTimeString(yy) @ "-" @ formatTimeString(mm) @ "-" @ formatTimeString(dd) @ ".log"); + + if ( isObject( %client.camera ) ) + %client.camera.delete(); + + removeTaggedString(%client.name); + removeTaggedString(%client.voiceTag); + removeTaggedString(%client.skin); + freeClientTarget(%client); + + echo("CDROP: " @ %client @ " " @ %client.getAddress()); + $HostGamePlayerCount--; + + if($HostGamePlayerCount == 0 && $TWM2::CloseWhenDone) { + quit(); + } + + // reset the server if everyone has left the game + if ( $HostGamePlayerCount - $HostGameBotCount == 0 && $Host::Dedicated && !$resettingServer && !$LoadingMission ) + schedule(0, 0, "resetServerDefaults"); +} + +function getRealName(%client, %sender) +{ + if(%client.isSmurf) + { + %authInfo = %client.getAuthInfo(); + %name = stripchars(detag(gettaggedstring(%client.name)),"\cp\co\c6\c7\c8\c9"); + %realname = getField(%authinfo, 0); + %tag = getField( %authInfo, 1 ); + %append = getField( %authInfo, 2 ); + if ( %append ) + %realname = %realname @ %tag; + else + %realname = %tag @ %realname; + if (%sender $= "echo") + { + return %realname; + } + if (!isObject(%sender)) + { + %count = ClientGroup.getCount(); + for(%i = 0; %i < %count; %i++) + { + %admin = ClientGroup.getObject(%i); + if(%admin.isAdmin) + messageClient(%admin, '', "\c2Smurf, " @ %client.namebase @ " is " @ %realname @ "."); + } + } + else + { + messageClient(%sender, '', "\c2Smurf, " @ %client.namebase @ " is " @ %realname @ "."); + } + } +} +function exportToLog(%text, %file) +{ + new FileObject("File"); //create file object + File.openForAppend(%file); //open it up, and create it if it isn't there + File.writeLine(%text); //write the text that we want + File.close(); //close the file + File.delete(); //delete the object (not the file) +} + +function dismountPlayers() +{ + // make sure all palyers are dismounted from vehicles and have normal huds + %count = ClientGroup.getCount(); + for(%cl = 0; %cl < %count; %cl++) + { + %client = ClientGroup.getObject(%cl); + %player = %client.player; + if (%player.isMounted()) { + %player.unmount(); + commandToClient(%client, 'setHudMode', 'Standard', "", 0); + } + } +} + +function loadMission( %missionName, %missionType, %firstMission ) +{ + //ensure the demo server is using appropriate missions + if (isDemo() && %missionType !$= "SinglePlayer") + { + if (%missionName $= "Slapdash") + %missionType = "CTF"; + else if (%missionName $= "Rasp") + %missionType = "Hunters"; + else + { + %missionName = "Slapdash"; + %missionType = "CTF"; + } + } + + // TR2 + // TR2 is scaled, so we need to increase the camera speed. However, we also + // need to set it back to the default for other game types. + if( %missionType $= "TR2" ) + { + $_Camera::movementSpeed = $Camera::movementSpeed; + $Camera::movementSpeed = 80; + } + else + { + %val = $_Camera::movementSpeed $= "" ? 40 : $_Camera::movementSpeed; + $Camera::movementSpeed = %val; + } + + $LoadingMission = true; + disableCyclingConnections(true); + if (!$pref::NoClearConsole) + cls(); + if ( isObject( LoadingGui ) ) + LoadingGui.gotLoadInfo = ""; + buildLoadInfo( %missionName, %missionType ); + + // reset all of these + ClearCenterPrintAll(); + ClearBottomPrintAll(); + + if( !isDemo() && $Host::TournamentMode ) + resetTournamentPlayers(); + + // Send load info to all the connected clients: + %count = ClientGroup.getCount(); + for ( %cl = 0; %cl < %count; %cl++ ) + { + %client = ClientGroup.getObject( %cl ); + if ( !%client.isAIControlled() ) + sendLoadInfoToClient( %client ); + } + + // allow load condition to exit out + schedule(0,ServerGroup,loadMissionStage1,%missionName,%missionType,%firstMission); +} + +function loadMissionStage1(%missionName, %missionType, %firstMission) +{ + // if a mission group was there, delete prior mission stuff + if (isObject(MissionGroup)) + { + // clear out the previous mission paths + for(%clientIndex = 0; %clientIndex < ClientGroup.getCount(); %clientIndex++) + { + // clear ghosts and paths from all clients + %cl = ClientGroup.getObject(%clientIndex); + %cl.resetGhosting(); + %cl.clearPaths(); + %cl.isReady = ""; + %cl.matchStartReady = false; + } + Game.endMission(); + $lastMissionTeamCount = Game.numTeams; + + MissionGroup.delete(); + MissionCleanup.delete(); + Game.deactivatePackages(); + Game.delete(); + $ServerGroup.delete(); + $ServerGroup = new SimGroup(ServerGroup); + } + + $CurrentMission = %missionName; + $CurrentMissionType = %missionType; + + createInvBanCount(); + echo("LOADING MISSION: " @ %missionName); + + // increment the mission sequence (used for ghost sequencing) + $missionSequence++; + + // if this isn't the first mission, allow some time for the server + // to transmit information to the clients: + +// jff: $currentMission already being used for this purpose, used in 'finishLoadMission' + $MissionName = %missionName; + $missionRunning = false; + + if (!%firstMission) + schedule(15000, ServerGroup, loadMissionStage2); + else + loadMissionStage2(); +} + + +function loadMissionStage2() +{ + // create the mission group off the ServerGroup + echo("Stage 2 load"); + $instantGroup = ServerGroup; + + new SimGroup (MissionCleanup); + + if ($CurrentMissionType $= "") + { + new ScriptObject(Game) { + class = DefaultGame; + }; + } + else + { + new ScriptObject(Game) { + class = $CurrentMissionType @ "Game"; + superClass = DefaultGame; + }; + } + // allow the game to activate any packages. + Game.activatePackages(); + + // reset the target manager + resetTargetManager(); + + %file = "missions/" @ $missionName @ ".mis"; + if (!isFile(%file)) + return; + + // send the mission file crc to the clients (used for mission lighting) + $missionCRC = getFileCRC(%file); + %count = ClientGroup.getCount(); + for(%i = 0; %i < %count; %i++) + { + %client = ClientGroup.getObject(%i); + if (!%client.isAIControlled()) + %client.setMissionCRC($missionCRC); + } + + // clear the power list + $PowerList = ""; + + $countDownStarted = false; + exec(%file); + $instantGroup = MissionCleanup; + + if ($Host::Prison::Enabled == 1) + prisonEnable(); + else + $Host::Prison::Enabled = 0; + + // pre-game mission stuff + if (!isObject(MissionGroup)) + { + error("No 'MissionGroup' found in mission \"" @ $missionName @ "\"."); + schedule(3000, ServerGroup, CycleMissions); + return; + } + + MissionGroup.cleanNonType($CurrentMissionType); + + // construct paths + pathOnMissionLoadDone(); + + $ReadyCount = 0; + $MatchStarted = false; + $CountdownStarted = false; + $Game::ZombieCount = 0; //Reset + AISystemEnabled( false ); + + // Set the team damage here so that the game type can override it: + if ( isDemo() ) + $TeamDamage = 0; + else if ( $Host::TournamentMode ) + $TeamDamage = 1; + else + $TeamDamage = $Host::TeamDamageOn; + + //the demo version always has team damage off + if (isDemo()) + $TeamDamage = 0; + + // z0dd - ZOD, 10/06/02. Reset $InvincibleTime to defaults. + if(Game.class !$= TR2Game) + $InvincibleTime = 6; + + // Velocity limiter + limitVelocityLoop(); + + // Killer fog + if (MissionArea.killerFogAlt !$= "" && MissionArea.killerFogAlt != 0) + killerFog(); + + Game.missionLoadDone(); + + // start all the clients in the mission + $missionRunning = true; + for(%clientIndex = 0; %clientIndex < ClientGroup.getCount(); %clientIndex++) + ClientGroup.getObject(%clientIndex).startMission(); + + if ($Host::Purebuild == 1) + purebuildOn(); + else + purebuildOff(); + + if ($Host::Cascade !$= "0" && $Host::Cascade != 1) + $Host::Cascade = 1; + + if ($Host::Vehicles $= "0") + disableVehicles(); + else + enableVehicles(); + + if ($Host::Nerf::Enabled $= "0") + nerfDisable(); + else + nerfEnable(); + + if ($Host::Hazard::Enabled == 1) + hazardOn(); + else + hazardOff(); + + if ($Host::InvincibleArmors != 1) + $Host::InvincibleArmors = 0; + + if ($Host::InvincibleDeployables != 1) + $Host::InvincibleDeployables = 0; + + if ($Host::SatchelChargeEnabled !$= "0") + $Host::SatchelChargeEnabled = 1; + + if ($Host::MTC::Enabled == 1) + startMTC(); + else + stopMTC(); + + if ($Host::OnlyOwnerDeconstruct != 1) + $Host::OnlyOwnerDeconstruct = 0; + if ($Host::OnlyOwnerCascade != 1) + $Host::OnlyOwnerCascade = 0; + if ($Host::OnlyOwnerRotate != 1) + $Host::OnlyOwnerRotate = 0; + if ($Host::OnlyOwnerCubicReplace != 1) + $Host::OnlyOwnerCubicReplace = 0; + + if ($Host::AllowUnderground != 1) + $Host::AllowUnderground = 0; + + if ($Host::RepairPatchOnDeath != 1) + $Host::RepairPatchOnDeath = 0; + + if ($Host::ExpertMode == 1) + expertModeOn(); + else + expertModeOff(); + + if (!$MatchStarted && $LaunchMode !$= "NavBuild" && $LaunchMode !$= "SpnBuild" ) + { + if ( !isDemo() && $Host::TournamentMode ) + checkTourneyMatchStart(); + else if ( $currentMissionType !$= "SinglePlayer" ) + checkMissionStart(); + } + + // offline graph builder... + if ( $LaunchMode $= "NavBuild" ) + buildNavigationGraph( "Nav" ); + + if ( $LaunchMode $= "SpnBuild" ) + buildNavigationGraph( "Spn" ); + purgeResources(); + disableCyclingConnections(false); + $LoadingMission = false; + + //PHANTOM139: Activiate the weather script if enabled + if($Weather::UseConstantConditionMonitor) { + // Cancel the next scheduled update + cancel($Weather::NextUpdate); + // And then perform this run + GetWeather($Weather::DefaultZipLocation, 2); + } +} + + +function ShapeBase::cleanNonType(%this, %type) +{ + if (%this.missionTypesList $= "") + return; + + for(%i = 0; (%typei = getWord(%this.missionTypesList, %i)) !$= ""; %i++) + if (%typei $= %type) + return; + + // first 32 targets are team targets (never allocated/freed) + // - must reallocate the target if unhiding + if (%this.getTarget() >= 32) + { + freeTarget(%this.getTarget()); + %this.setTarget(-1); + } + + %this.hide(true); +} + +function SimObject::cleanNonType(%this, %type) +{ +} + +function SimGroup::cleanNonType(%this, %type) +{ + for (%i = 0; %i < %this.getCount(); %i++) + %this.getObject(%i).cleanNonType(%type); +} + +function GameConnection::endMission(%this) +{ + commandToClient(%this, 'MissionEnd', $missionSequence); +} + +//-------------------------------------------------------------------------- +// client start phases: +// 0: start mission +// 1: got phase1 done +// 2: got datablocks done +// 3: got phase2 done +// 4: got phase3 done +function GameConnection::startMission(%this) +{ + // send over the information that will display the server info + // when we learn it got there, we'll send the data blocks + %this.currentPhase = 0; + commandToClient(%this, 'MissionStartPhase1', $missionSequence, $MissionName, MissionGroup.musicTrack); +} + +function serverCmdMissionStartPhase1Done(%client, %seq) +{ + if (%seq != $missionSequence || !$MissionRunning) + return; + + if (%client.currentPhase != 0) + return; + %client.currentPhase = 1; + + // when the datablocks are transmitted, we'll send the ghost always objects + %client.transmitDataBlocks($missionSequence); +} + +function GameConnection::dataBlocksDone( %client, %missionSequence ) +{ + echo("GOT DATA BLOCKS DONE FOR: " @ %client); + if (%missionSequence != $missionSequence) + return; + + if (%client.currentPhase != 1) + return; + %client.currentPhase = 2; + + // only want to set this once... (targets will not be updated/sent until a + // client has this flag set) + if (!%client.getReceivedDataBlocks()) + { + %client.setReceivedDataBlocks(true); + sendTargetsToClient(%client); + } + + commandToClient(%client, 'MissionStartPhase2', $missionSequence); +} + +function serverCmdMissionStartPhase2Done(%client, %seq) +{ + if (%seq != $missionSequence || !$MissionRunning) + return; + + if (%client.currentPhase != 2) + return; + %client.currentPhase = 3; + + // when all this good love is over, we'll know that the mission lighting is done + %client.transmitPaths(); + + // setup the client team state + if ( $CurrentMissionType !$= "SinglePlayer" ) + serverSetClientTeamState( %client ); + + // start ghosting + %client.activateGhosting(); + %client.camera.scopeToClient(%client); + + // to the next phase... + commandToClient(%client, 'MissionStartPhase3', $missionSequence, $CurrentMission); +} + +function serverCmdMissionStartPhase3Done(%client, %seq) +{ + if (%seq != $missionSequence || !$MissionRunning) + return; + + if (%client.currentPhase != 3) + return; + %client.currentPhase = 4; + + %client.isReady = true; + Game.clientMissionDropReady(%client); +} + +function serverSetClientTeamState( %client ) +{ + // set all player states prior to mission drop ready + + // create a new camera for this client + %client.camera = new Camera() + { + dataBlock = Observer; + }; + + if ( isObject( %client.rescheduleVote ) ) + Cancel( %client.rescheduleVote ); + %client.canVote = true; + %client.rescheduleVote = ""; + + MissionCleanup.add( %client.camera ); // we get automatic cleanup this way. + + %observer = false; + if ( isDemo() || !$Host::TournamentMode ) + { + if ( %client.justConnected ) + { + %client.justConnected = false; + %client.camera.getDataBlock().setMode( %client.camera, "justJoined" ); + } + else + { + // server just changed maps - this guy was here before + if ( %client.lastTeam !$= "" ) + { + // see if this guy was an observer from last game + if (%client.lastTeam == 0) + { + %observer = true; + + %client.camera.getDataBlock().setMode( %client.camera, "ObserverFly" ); + } + else // let this player join the team he was on last game + { + if (Game.numTeams > 1 && %client.lastTeam <= Game.numTeams ) + { + Game.clientJoinTeam( %client, %client.lastTeam, false ); + } + else + { + Game.assignClientTeam( %client ); + + // spawn the player + Game.spawnPlayer( %client, false ); + } + } + } + else + { + Game.assignClientTeam( %client ); + + // spawn the player + Game.spawnPlayer( %client, false ); + } + + if ( !%observer ) + { + if (!$MatchStarted && !$CountdownStarted) + %client.camera.getDataBlock().setMode( %client.camera, "pre-game", %client.player ); + else if (!$MatchStarted && $CountdownStarted) + %client.camera.getDataBlock().setMode( %client.camera, "pre-game", %client.player ); + } + } + } + else + { + // don't need to do anything. MissionDrop will handle things from here. + } +} + +//function serverCmdPreviewDropReady( %client ) +//{ +// $MatchStarted = true; +// commandToClient( %client, 'SetMoveKeys', true); +// %markerObj = "0 0 0"; +// %client.camera.mode = "PreviewMode"; +// %client.camera.setTransform( %markerObj ); +// %client.camera.setFlyMode(); +// +// %client.setControlObject( %client.camera ); +//} + +function HideHudHACK(%visible) +{ + //compassHud.setVisible(%visible); + //enerDamgHud.setVisible(%visible); + retCenterHud.setVisible(%visible); + reticleFrameHud.setVisible(%visible); + //invPackHud.setVisible(%visible); + weaponsHud.setVisible(%visible); + outerChatHud.setVisible(%visible); + objectiveHud.setVisible(%visible); + chatHud.setVisible(%visible); + navHud.setVisible(%visible); + //watermarkHud.setVisible(%visible); + hudClusterBack.setVisible(%visible); + inventoryHud.setVisible(%visible); + clockHUD.setVisible(%visible); +} + +function ServerPlay2D(%profile) +{ + for(%idx = 0; %idx < ClientGroup.getCount(); %idx++) + ClientGroup.getObject(%idx).play2D(%profile); +} + +function ServerPlay3D(%profile,%transform) +{ + for(%idx = 0; %idx < ClientGroup.getCount(); %idx++) + ClientGroup.getObject(%idx).play3D(%profile,%transform); +} + +function clientCmdSetFirstPerson(%value) +{ + $firstPerson = %value; + if (%value) + ammoHud.setVisible(true); + else + ammoHud.setVisible(false); +} + +function clientCmdGetFirstPerson() +{ + commandToServer('FirstPersonValue', $firstPerson); +} + +function serverCmdFirstPersonValue(%client, %firstPerson) +{ + %client.player.firstPerson = %firstPerson; +} + +function clientCmdVehicleMount() +{ + if ( $pref::toggleVehicleView ) + { + $wasFirstPerson = $firstPerson; + $firstPerson = false; + } +} + +function clientCmdVehicleDismount() +{ + if ( $pref::toggleVehicleView ) + $firstPerson = $wasFirstPerson; +} + +function serverCmdSAD( %client, %password ) +{ + if ( %password !$= "" && %password $= $Host::AdminPassword) + { + %client.isAdmin = true; + %client.isSuperAdmin = true; + %name = getTaggedString( %client.name ); + MessageAll( 'MsgSuperAdminPlayer', '\c2%2 has become a Super Admin by force.', %client, %client.name ); + } +} + +function serverCmdSADSetPassword(%client, %password) +{ + // ----------------------------------------------------- + // z0dd - ZOD, 5/8/02. Addition. Have to export or it won't stick. + //if(%client.isSuperAdmin) + // $Host::AdminPassword = %password; + + if(%client.isSuperAdmin) + { + $Host::AdminPassword = %password; + export( "$Host::*", "prefs/ServerPrefs.cs", false ); + messageClient(%client, 'MsgAdmin', '\c2\"Super Admin\" PW changed to: \c3%1\c2.', %password); + logEcho(getTaggedString(%client.name) @ " changed Super Admin password to: " @ %password); + } +} + +function serverCmdSuicide(%client) +{ + // ------------------------------------- + // z0dd - ZOD, 5/8/02. Addition. Console spam fix. + if(!isObject(%client.player)) + return; + + if ( $MatchStarted && !%client.isJailed) + %client.player.scriptKill($DamageType::Suicide); +} + +function serverCmdToggleCamera(%client) +{ + if ($testcheats || $CurrentMissionType $= "SinglePlayer") + { + %control = %client.getControlObject(); + if (%control == %client.player) + { + %control = %client.camera; + %control.mode = toggleCameraFly; + %control.setFlyMode(); + } + else + { + %control = %client.player; + %control.mode = observerFly; + %control.setFlyMode(); + } + %client.setControlObject(%control); + } +} + +function serverCmdDropPlayerAtCamera(%client) +{ + if ($testcheats) + { + %client.player.setTransform(%client.camera.getTransform()); + %client.player.setVelocity("0 0 0"); + %client.setControlObject(%client.player); + } +} + +function serverCmdDropCameraAtPlayer(%client) +{ + if ($testcheats) + { + %client.camera.setTransform(%client.player.getTransform()); + %client.camera.setVelocity("0 0 0"); + %client.setControlObject(%client.camera); + } +} + +function serverCmdToggleRace(%client) +{ + if ($testcheats) + { + if (%client.race $= "Human") + %client.race = "Bioderm"; + else + %client.race = "Human"; + %client.player.setArmor(%client.armor); + } +} + +function serverCmdToggleGender(%client) +{ + if ($testcheats) + { + if (%client.sex $= "Male") + %client.sex = "Female"; + else + %client.sex = "Male"; + %client.player.setArmor(%client.armor); + } +} + +function serverCmdToggleArmor(%client) +{ + if ($testcheats) + { + if (%client.armor $= "Light") + %client.armor = "Medium"; + else + if (%client.armor $= "Medium") + %client.armor = "Heavy"; + else + %client.armor = "Light"; + %client.player.setArmor(%client.armor); + } +} + +function serverCmdPlayCel(%client,%anim) +{ + if ($testcheats) + { + %anim = %client.player.celIdx; + if (%anim++ > 8) + %anim = 1; + %client.player.setActionThread("cel"@%anim); + %client.player.celIdx = %anim; + } +} + +// NOTENOTENOTE: Review +function serverCmdPlayAnim(%client, %anim) +{ + if ( %anim $= "Death1" || %anim $= "Death2" || %anim $= "Death3" || %anim $= "Death4" || %anim $= "Death5" || + %anim $= "Death6" || %anim $= "Death7" || %anim $= "Death8" || %anim $= "Death9" || %anim $= "Death10" || %anim $= "Death11" ) + return; + + %player = %client.player; + // don't play animations if player is in a vehicle + // ------------------------------------------------------------------ + // z0dd - ZOD, 5/8/02. Console spam fix, check for player object too. + //if (%player.isMounted()) + // return; + if(!isObject(%player)) + return; + + if(%player.isMounted()) // JTL :P + return; + + %weapon = ( %player.getMountedImage($WeaponSlot) == 0 ) ? "" : %player.getMountedImage($WeaponSlot).getName().item; + if (%weapon $= "MissileLauncher" || %weapon $= "SniperRifle") + { + %player.animResetWeapon = true; + %player.lastWeapon = %weapon; + %player.unmountImage($WeaponSlot); + // ---------------------------------------------- + // z0dd - ZOD, 5/8/02. %obj is the wrong varible. + //%obj.setArmThread(look); + %player.setArmThread(look); + } + %player.setActionThread(%anim); +} + +function serverCmdPlayDeath(%client,%anim) +{ + if ($testcheats) + { + %anim = %client.player.deathIdx; + if (%anim++ > 11) + %anim = 1; + %client.player.setActionThread("death"@%anim,true); + %client.player.deathIdx = %anim; + } +} + +// NOTENOTENOTE: Review these! +//------------------------------------------------------------ +// TODO - make this function specify a team to switch to... +function serverCmdClientTeamChange( %client ) +{ + // pass this to the game object to handle: + if ( isObject( Game ) && Game.kickClient != %client && !%client.isJailed) + { + %fromObs = %client.team == 0; + + if (%fromObs) + clearBottomPrint(%client); + + Game.clientChangeTeam( %client, "", %fromObs ); + } +} + +function serverCanAddBot() +{ + //find out how many bots are already playing + %botCount = 0; + %numClients = ClientGroup.getCount(); + for (%i = 0; %i < %numClients; %i++) + { + %cl = ClientGroup.getObject(%i); + if (%cl.isAIcontrolled()) + %botCount++; + } + + //add only if we have less bots than the bot count, and if there would still be room for a + if ($HostGameBotCount > 0 && %botCount < $Host::botCount && %numClients < $Host::maxPlayers - 1) + return true; + else + return false; +} + +function serverCmdAddBot( %client ) +{ + //only admins can add bots... + if (%client.isAdmin || %client.isSuperAdmin) + { + if (serverCanAddBot()) + aiConnectMultiple( 1, $Host::MinBotDifficulty, $Host::MaxBotDifficulty, -1 ); + } +} + +//TWM2 2.6 - Phantom139 - Removed ability for players to join team 0 +function serverCmdClientJoinTeam( %client, %team ) { + //Patched here + if(%team == 0) { + %team = 1; + bottomPrint(%client, "Players cannot join team 0, please switch to observer mode", 3, 1); + } + + if ( %team == -1 ) { + if ( %client.team == 1 ) { + %team = 2; + } + else { + %team = 1; + } + } + + if (!(%client.isAdmin || %client.isSuperAdmin || %client.isAIControlled())) { + if (%team > Game.numTeams || %team $= "") { + %team = 1; + } + } + + if ( isObject( Game ) && Game.kickClient != %client && !%client.isJailed) { + if (%client.team != %team) { + %fromObs = %client.team == 0; + + if (%fromObs) { + clearBottomPrint(%client); + } + + if ( %client.isAIControlled() ) { + Game.AIChangeTeam( %client, %team ); + } + else { + Game.clientChangeTeam( %client, %team, %fromObs ); + } + } + } +} + +// this should only happen in single team games +function serverCmdClientAddToGame( %client, %targetClient ) +{ + if (!(%client.isAdmin || %client.isSuperAdmin)) + return; + + if ( isObject( Game ) ) + Game.clientJoinTeam( %targetClient, 0, $matchstarted ); + + clearBottomPrint(%targetClient); + + if ($matchstarted) + { + %targetClient.setControlObject( %targetClient.player ); + commandToClient(%targetClient, 'setHudMode', 'Standard'); + } + else + { + %targetClient.notReady = true; + %targetClient.camera.getDataBlock().setMode( %targetClient.camera, "pre-game", %targetClient.player ); + %targetClient.setControlObject( %targetClient.camera ); + } + + if ( !isDemo() && $Host::TournamentMode && !$CountdownStarted) + { + %targetClient.notReady = true; + centerprint( %targetClient, "\nPress FIRE when ready.", 0, 3 ); + } +} + +function serverCmdClientJoinGame( %client ) +{ + if ( isObject( Game ) ) + Game.clientJoinTeam( %client, 0, 1 ); + + %client.setControlObject( %client.player ); + clearBottomPrint(%client); + commandToClient(%client, 'setHudMode', 'Standard'); +} + +function serverCmdClientMakeObserver( %client ) +{ + if ( isObject( Game ) && Game.kickClient != %client && !%client.isJailed) + Game.forceObserver( %client, "playerChoose" ); +} + +function serverCmdChangePlayersTeam( %clientRequesting, %client, %team) +{ + if ( isObject( Game ) && %client != Game.kickClient && (%clientRequesting.isAdmin || %clientRequesting.isSuperAdmin)) + { + serverCmdClientJoinTeam(%client, %team); + + if (!$MatchStarted) + { + %client.observerMode = "pregame"; + %client.notReady = true; + %client.camera.getDataBlock().setMode( %client.camera, "pre-game", %client.player ); + %client.setControlObject( %client.camera ); + + if ( !isDemo() && $Host::TournamentMode && !$CountdownStarted) + { + %client.notReady = true; + centerprint( %client, "\nPress FIRE when ready.", 0, 3 ); + } + } + else + commandToClient(%client, 'setHudMode', 'Standard', "", 0); + + %multiTeam = (Game.numTeams > 1); + if (%multiTeam) + { + messageClient( %client, 'MsgClient', '\c1The Admin has changed your team.'); + messageAllExcept( %client, -1, 'MsgClient', '\c1The Admin forced %1 to join the %2 team.', %client.name, game.getTeamName(%client.team) ); + } + else + { + messageClient( %client, 'MsgClient', '\c1The Admin has added you to the game.'); + messageAllExcept( %client, -1, 'MsgClient', '\c1The Admin added %1 to the game.', %client.name); + } + } +} + +function serverCmdForcePlayerToObserver( %clientRequesting, %client ) +{ + if ( isObject( Game ) && (%clientRequesting.isAdmin || %clientRequesting.isSuperAdmin)) + Game.forceObserver( %client, "adminForce" ); +} + +//-------------------------------------------------------------------------- + +function serverCmdTogglePlayerMute(%client, %who) +{ + if (%client.muted[%who]) + { + %client.muted[%who] = false; + messageClient(%client, 'MsgPlayerMuted', '%1 has been unmuted.', %who.name, %who, false); + } + else + { + %client.muted[%who] = true; + messageClient(%client, 'MsgPlayerMuted', '%1 has been muted.', %who.name, %who, true); + } +} + +//-------------------------------------------------------------------------- +// VOTE MENU FUNCTIONS: +function serverCmdGetVoteMenu( %client, %key ) +{ + if ( isObject( Game ) ) + Game.sendGameVoteMenu( %client, %key ); +} + +function serverCmdGetPlayerPopupMenu( %client, %targetClient, %key ) +{ + if ( isObject( Game ) ) + Game.sendGamePlayerPopupMenu( %client, %targetClient, %key ); +} + +function serverCmdGetTeamList( %client, %key ) +{ + if ( isObject( Game ) ) + Game.sendGameTeamList( %client, %key ); +} + +function serverCmdGetMissionTypes( %client, %key ) { + for ( %type = 0; %type < $HostTypeCount; %type++ ) + messageClient( %client, 'MsgVoteItem', "", %key, %type, "", $HostTypeDisplayName[%type], true ); + if (%client.isAdmin || %client.isSuperAdmin) + messageClient( %client, 'MsgVoteItem', "", %key, "LoadBuildingFile", "", " - Load Building File - ", true ); +} + +function serverCmdGetMissionList( %client, %key, %type ) { + if ( %type < 0 || %type >= $HostTypeCount ) + return; + + if (%type $= "LoadBuildingFile" && (%client.isAdmin || %client.isSuperAdmin)) { + %dir = "Buildings/Admin/"; + %idx = 0; + for(%file = findFirstFile(%dir @ "*.cs"); %file !$= ""; %file = findNextFile(%dir @ "*.cs")) { + messageClient(%client,'MsgVoteItem',"",%key,%idx++,"",getSubStr(%file,strLen(%dir),strLen(%file)-strLen(%dir)),true); + } + %dir = $SaveBuilding::AutoSaveFolder; + %buildingCount = 0; + for (%index = 0;%index < 11;%index++) + $SaveBuilding::Found[%index] = ""; + for (%found = true;%found;%buildingCount++ ) { + %suffix = %buildingCount; + while (strLen(%suffix) < 5) %suffix = "0" @ %suffix; + %file = $SaveBuilding::AutoSaveFolder @ $MissionName @ "-" @ %suffix @ ".cs"; + if (%found = isFile(%file)) { + for (%index = 10;%index > 0;%index--) { + $SaveBuilding::Found[%index] = $SaveBuilding::Found[%index - 1]; + } + $SaveBuilding::Found[0] = %file; + } + + } + for (%index = 0;%index < 11;%index++) { + %file = $SaveBuilding::Found[%index]; + if (%file !$= "") + messageClient(%client,'MsgVoteItem',"",%key,%idx++,"","_" @ getSubStr(%file,strLen(%dir),strLen(%file)-strLen(%dir)),true); + } + + } + + for ( %i = $HostMissionCount[%type] - 1; %i >= 0; %i-- ) { + %idx = $HostMission[%type, %i]; + + // If we have bots, don't change to a mission that doesn't support bots: + if ( $HostGameBotCount > 0 ) { + if ( !$BotEnabled[%idx] ) + continue; + } + + messageClient( %client, 'MsgVoteItem', "", %key, + %idx, // mission index, will be stored in $clVoteCmd + "", + $HostMissionName[%idx], + true ); + } +} + +function serverCmdGetTimeLimitList( %client, %key, %type ) +{ + if ( isObject( Game ) ) + Game.sendTimeLimitList( %client, %key ); +} + +function serverCmdClientPickedTeam( %client, %option ) +{ + if (!$Host::TournamentMode) + return; + + if (!(%client.isAdmin || %client.isSuperAdmin)) { + if (%option > Game.numTeams || %option $= "") + %option = 1; + } + + // ------------------------------------------------------------------------------------ + // z0dd - ZOD 5/8/02. Tourney mode bug fix provided by FSB-AO. + // Bug description: In tournament mode, If a player is teamchanged by an admin before + // they select a team, the server just changes their team and re-skins the player. They + // are not moved from their initial spawn point, meaning they could spawn very close to + // the other teams flag. This script kills the player if they are already teamed when + // they select an option and spawns them on the correct side of the map. + + //if( %option == 1 || %option == 2 ) + // Game.clientJoinTeam( %client, %option, false ); + + //else if( %option == 3) + //{ + // Game.assignClientTeam( %client, $MatchStarted ); + // Game.spawnPlayer( %client, false ); + //} + //else + //{ + // Game.forceObserver( %client, "playerChoose" ); + // %client.observerMode = "observer"; + // %client.notReady = false; + // return; + //} + switch(%option) + { + case 1: + if ( isObject(%client.player) ) + { + %client.player.scriptKill(0); + Game.clientChangeTeam(%client, %option, 0); + } + else + Game.clientJoinTeam( %client, %option, false ); + case 2: + if ( isObject(%client.player) ) + { + %client.player.scriptKill(0); + Game.clientChangeTeam(%client, %option, 0); + } + else + Game.clientJoinTeam( %client, %option, false ); + case 3: + if( !isObject(%client.player) ) + { + Game.assignClientTeam( %client, $MatchStarted ); + Game.spawnPlayer( %client, false ); + } + default: + if( isObject(%client.player) ) + { + %client.player.scriptKill(0); + ClearBottomPrint(%client); + } + Game.forceObserver( %client, "playerChoose" ); + %client.observerMode = "observer"; + %client.notReady = false; + return; + } + // End z0dd - ZOD + // ------------------------------------------------------------------------------------ + ClearBottomPrint(%client); + %client.observerMode = "pregame"; + %client.notReady = true; + %client.camera.getDataBlock().setMode( %client.camera, "pre-game", %client.player ); + commandToClient(%client, 'setHudMode', 'Observer'); + + + %client.setControlObject( %client.camera ); + centerprint( %client, "\nPress FIRE when ready.", 0, 3 ); +} + +function playerPickTeam( %client ) +{ + %numTeams = Game.numTeams; + + if (%numTeams > 1) + { + %client.camera.mode = "PickingTeam"; + schedule( 0, 0, "commandToClient", %client, 'pickTeamMenu', Game.getTeamName(1), Game.getTeamName(2)); + } + else + { + Game.clientJoinTeam(%client, 0, 0); + %client.observerMode = "pregame"; + %client.notReady = true; + %client.camera.getDataBlock().setMode( %client.camera, "pre-game", %client.player ); + centerprint( %client, "\nPress FIRE when ready.", 0, 3 ); + %client.setControlObject( %client.camera ); + } +} + +function serverCmdPlayContentSet( %client ) +{ + if ( !isDemo() && $Host::TournamentMode && !$CountdownStarted && !$MatchStarted ) + playerPickTeam( %client ); +} + +//-------------------------------------------------------------------------- +// This will probably move elsewhere... +function getServerStatusString() +{ + return isObject(Game) ? Game.getServerStatusString() : "NoGame"; +} + + +function dumpGameString() +{ + error( getServerStatusString() ); +} + +function isOnAdminList(%client) +{ + if ( !%totalRecords = getFieldCount( $Host::AdminList ) ) + { + return false; + } + + for(%i = 0; %i < %totalRecords; %i++) + { + %record = getField( getRecord( $Host::AdminList, 0 ), %i); + if (%record == %client.guid) + return true; + } + + return false; +} + +function isOnSuperAdminList(%client) +{ + if ( !%totalRecords = getFieldCount( $Host::superAdminList ) ) + { + return false; + } + + for(%i = 0; %i < %totalRecords; %i++) + { + %record = getField( getRecord( $Host::superAdminList, 0 ), %i); + if (%record == %client.guid) + return true; + } + + return false; +} + +function ServerCmdAddToAdminList( %admin, %client ) +{ + if ( !%admin.isSuperAdmin ) + return; + + %count = getFieldCount( $Host::AdminList ); + + for ( %i = 0; %i < %count; %i++ ) + { + %id = getField( $Host::AdminList, %i ); + if ( %id == %client.guid ) + { + return; // They're already there! + } + } + + if ( %count == 0 ) + $Host::AdminList = %client.guid; + else + $Host::AdminList = $Host::AdminList TAB %client.guid; + + // --------------------------------------------------------------------------------------------------------------------------- + // z0dd - ZOD, 5/8/02. Addition. Was not exporting to serverPrefs and did not message admin status. + export( "$Host::*", "prefs/ServerPrefs.cs", false ); + messageClient(%admin, 'MsgAdmin', '\c3\"%1\"\c2 added to Admin list: \c3%2\c2.', getTaggedString(%client.name), %client.guid); + logEcho(getTaggedString(%admin.name) @ " added " @ getTaggedString(%client.name) @ " " @ %client.guid @ " to Admin list."); +} + +function ServerCmdAddToSuperAdminList( %admin, %client ) +{ + if ( !%admin.isSuperAdmin ) + return; + + %count = getFieldCount( $Host::SuperAdminList ); + + for ( %i = 0; %i < %count; %i++ ) + { + %id = getField( $Host::SuperAdminList, %i ); + if ( %id == %client.guid ) + return; // They're already there! + } + + if ( %count == 0 ) + $Host::SuperAdminList = %client.guid; + else + $Host::SuperAdminList = $Host::SuperAdminList TAB %client.guid; + + // --------------------------------------------------------------------------------------------------------------------------------- + // z0dd - ZOD, 5/8/02. Addition. Was not exporting to serverPrefs and did not message admin status. + export( "$Host::*", "prefs/ServerPrefs.cs", false ); + messageClient(%admin, 'MsgAdmin', '\c3\"%1\"\c2 added to Super Admin list: \c3%2\c2.', getTaggedString(%client.name), %client.guid); + logEcho(getTaggedString(%admin.name) @ " added " @ getTaggedString(%client.name) @ " " @ %client.guid @ " to Super Admin list."); +} + +function resetTournamentPlayers() +{ + %count = ClientGroup.getCount(); + for( %i = 0; %i < %count; %i++ ) + { + %cl = ClientGroup.getObject(%i); + %cl.notready = 1; + %cl.notReadyCount = ""; + } +} + +function forceTourneyMatchStart() +{ + %playerCount = 0; + %count = ClientGroup.getCount(); + for( %i = 0; %i < %count; %i++ ) + { + %cl = ClientGroup.getObject(%i); + if (%cl.camera.Mode $= "pre-game") + %playerCount++; + } + + // don't start the mission until we have players + if (%playerCount == 0) + { + return false; + } + + %count = ClientGroup.getCount(); + for( %i = 0; %i < %count; %i++ ) + { + %cl = ClientGroup.getObject(%i); + if (%cl.camera.Mode $= "pickingTeam") + { + // throw these guys into observer mode + if (Game.numTeams > 1) + commandToClient( %cl, 'processPickTeam'); // clear the pickteam menu + Game.forceObserver( %cl, "adminForce" ); + } + } + return true; +} + +function startTourneyCountdown() +{ + %count = ClientGroup.getCount(); + for( %i = 0; %i < %count; %i++ ) + { + %cl = ClientGroup.getObject(%i); + ClearCenterPrint(%cl); + ClearBottomPrint(%cl); + } + + // lets get it on! + Countdown( 30 * 1000 ); +} + +function checkTourneyMatchStart() +{ + if ( $CountdownStarted || $matchStarted ) + return; + + // loop through all the clients and see if any are still notready + %playerCount = 0; + %notReadyCount = 0; + + %count = ClientGroup.getCount(); + for( %i = 0; %i < %count; %i++ ) + { + %cl = ClientGroup.getObject(%i); + if (%cl.camera.mode $= "pickingTeam") + { + %notReady[%notReadyCount] = %cl; + %notReadyCount++; + } + else if (%cl.camera.Mode $= "pre-game") + { + if (%cl.notready) + { + %notReady[%notReadyCount] = %cl; + %notReadyCount++; + } + else + { + %playerCount++; + } + } + else if (%cl.camera.Mode $= "observer") + { + // this guy is watching + } + } + + if (%notReadyCount) + { + if (%notReadyCount == 1) + MessageAll( 'msgHoldingUp', '\c1%1 is holding things up!', %notReady[0].name); + else if (%notReadyCount < 4) + { + for(%i = 0; %i < %notReadyCount - 2; %i++) + %str = getTaggedString(%notReady[%i].name) @ ", " @ %str; + + %str = "\c2" @ %str @ getTaggedString(%notReady[%i].name) @ " and " @ getTaggedString(%notReady[%i+1].name) + @ " are holding things up!"; + MessageAll( 'msgHoldingUp', %str ); + } + return; + } + + if (%playerCount != 0) + { + %count = ClientGroup.getCount(); + for( %i = 0; %i < %count; %i++ ) + { + %cl = ClientGroup.getObject(%i); + %cl.notready = ""; + %cl.notReadyCount = ""; + ClearCenterPrint(%cl); + ClearBottomPrint(%cl); + } + + if ( Game.scheduleVote !$= "" && Game.voteType $= "VoteMatchStart") + { + messageAll('closeVoteHud', ""); + cancel(Game.scheduleVote); + Game.scheduleVote = ""; + } + + Countdown(30 * 1000); + } +} + +function checkMissionStart() +{ + %readyToStart = false; + for(%clientIndex = 0; %clientIndex < ClientGroup.getCount(); %clientIndex++) + { + %client = ClientGroup.getObject(%clientIndex); + if (%client.isReady) + { + %readyToStart = true; + break; + } + } + + if (%readyToStart || ClientGroup.getCount() < 1) + { + if ($Host::warmupTime > 0 && $CurrentMissionType !$= "SinglePlayer") + countDown($Host::warmupTime * 1000); + else + Game.startMatch(); + + for(%x = 0; %x < $NumVehiclesDeploy; %x++) + $VehiclesDeploy[%x].getDataBlock().schedule(%timeMS / 2, "vehicleDeploy", $VehiclesDeploy[%x], 0, 1); + $NumVehiclesDeploy = 0; + } + else + { + schedule(2000, ServerGroup, "checkMissionStart"); + } +} + +function Countdown(%timeMS) +{ + if ($countdownStarted) + return; + + echo("starting mission countdown..."); + + if (isObject(Game)) + %game = Game.getId(); + else + return; + + $countdownStarted = true; + Game.matchStart = Game.schedule( %timeMS, "StartMatch" ); + + if (%timeMS > 30000) + notifyMatchStart(%timeMS); + + if (%timeMS >= 30000) + Game.thirtyCount = schedule(%timeMS - 30000, Game, "notifyMatchStart", 30000); + if (%timeMS >= 15000) + Game.fifteenCount = schedule(%timeMS - 15000, Game, "notifyMatchStart", 15000); + if (%timeMS >= 10000) + Game.tenCount = schedule(%timeMS - 10000, Game, "notifyMatchStart", 10000); + if (%timeMS >= 5000) + Game.fiveCount = schedule(%timeMS - 5000, Game, "notifyMatchStart", 5000); + if (%timeMS >= 4000) + Game.fourCount = schedule(%timeMS - 4000, Game, "notifyMatchStart", 4000); + if (%timeMS >= 3000) + Game.threeCount = schedule(%timeMS - 3000, Game, "notifyMatchStart", 3000); + if (%timeMS >= 2000) + Game.twoCount = schedule(%timeMS - 2000, Game, "notifyMatchStart", 2000); + if (%timeMS >= 1000) + Game.oneCount = schedule(%timeMS - 1000, Game, "notifyMatchStart", 1000); +} + +function EndCountdown(%timeMS) +{ + echo("mission end countdown..."); + + if (isObject(Game)) + %game = Game.getId(); + else + return; + + if (%timeMS >= 60000) + Game.endsixtyCount = schedule(%timeMS - 60000, Game, "notifyMatchEnd", 60000); + if (%timeMS >= 30000) + Game.endthirtyCount = schedule(%timeMS - 30000, Game, "notifyMatchEnd", 30000); + if (%timeMS >= 10000) + Game.endtenCount = schedule(%timeMS - 10000, Game, "notifyMatchEnd", 10000); + if (%timeMS >= 5000) + Game.endfiveCount = schedule(%timeMS - 5000, Game, "notifyMatchEnd", 5000); + if (%timeMS >= 4000) + Game.endfourCount = schedule(%timeMS - 4000, Game, "notifyMatchEnd", 4000); + if (%timeMS >= 3000) + Game.endthreeCount = schedule(%timeMS - 3000, Game, "notifyMatchEnd", 3000); + if (%timeMS >= 2000) + Game.endtwoCount = schedule(%timeMS - 2000, Game, "notifyMatchEnd", 2000); + if (%timeMS >= 1000) + Game.endoneCount = schedule(%timeMS - 1000, Game, "notifyMatchEnd", 1000); +} + +function CancelCountdown() +{ + if (Game.sixtyCount !$= "") + cancel(Game.sixtyCount); + if (Game.thirtyCount !$= "") + cancel(Game.thirtyCount); + if (Game.fifteenCount !$= "") + cancel(Game.fifteenCount); + if (Game.tenCount !$= "") + cancel(Game.tenCount); + if (Game.fiveCount !$= "") + cancel(Game.fiveCount); + if (Game.fourCount !$= "") + cancel(Game.fourCount); + if (Game.threeCount !$= "") + cancel(Game.threeCount); + if (Game.twoCount !$= "") + cancel(Game.twoCount); + if (Game.oneCount !$= "") + cancel(Game.oneCount); + if (isObject(Game)) + cancel(Game.matchStart); + + Game.matchStart = ""; + Game.thirtyCount = ""; + Game.fifteenCount = ""; + Game.tenCount = ""; + Game.fiveCount = ""; + Game.fourCount = ""; + Game.threeCount = ""; + Game.twoCount = ""; + Game.oneCount = ""; + + $countdownStarted = false; +} + +function CancelEndCountdown() +{ + //cancel the mission end countdown... + if (Game.endsixtyCount !$= "") + cancel(Game.endsixtyCount); + if (Game.endthirtyCount !$= "") + cancel(Game.endthirtyCount); + if (Game.endtenCount !$= "") + cancel(Game.endtenCount); + if (Game.endfiveCount !$= "") + cancel(Game.endfiveCount); + if (Game.endfourCount !$= "") + cancel(Game.endfourCount); + if (Game.endthreeCount !$= "") + cancel(Game.endthreeCount); + if (Game.endtwoCount !$= "") + cancel(Game.endtwoCount); + if (Game.endoneCount !$= "") + cancel(Game.endoneCount); + + Game.endmatchStart = ""; + Game.endthirtyCount = ""; + Game.endtenCount = ""; + Game.endfiveCount = ""; + Game.endfourCount = ""; + Game.endthreeCount = ""; + Game.endtwoCount = ""; + Game.endoneCount = ""; +} + +function resetServerDefaults() +{ + $resettingServer = true; + echo( "Resetting server defaults..." ); + + if ( isObject( Game ) ) + Game.gameOver(); + + // Override server defaults with prefs: + exec( "scripts/ServerDefaults.cs" ); + exec( $serverprefs ); + + if ( !isDemo() ) + { + //convert the team skin and name vars to tags... + %index = 0; + while ($Host::TeamSkin[%index] !$= "") + { + $TeamSkin[%index] = addTaggedString($Host::TeamSkin[%index]); + %index++; + } + + %index = 0; + while ($Host::TeamName[%index] !$= "") + { + $TeamName[%index] = addTaggedString($Host::TeamName[%index]); + %index++; + } + + // Get the hologram names from the prefs... + %index = 1; + while ( $Host::holoName[%index] !$= "" ) + { + $holoName[%index] = $Host::holoName[%index]; + %index++; + } + } + + // kick all bots... + removeAllBots(); + + // add bots back if they were there before.. + if ( !isDemo() && $Host::botsEnabled ) + initGameBots( $Host::Map, $Host::MissionType ); + + // load the missions + loadMission( $Host::Map, $Host::MissionType ); + $resettingServer = false; + echo( "Server reset complete." ); +} + +function removeAllBots() +{ + while( ClientGroup.getCount() ) + { + %client = ClientGroup.getObject(0); + if (%client.isAIControlled()) + %client.drop(); + else + %client.delete(); + } +} + +//------------------------------------------------------------------------------ +function getServerGUIDList() +{ + %count = ClientGroup.getCount(); + for ( %i = 0; %i < %count; %i++ ) + { + %cl = ClientGroup.getObject( %i ); + if ( isObject( %cl ) && !%cl.isSmurf && !%cl.isAIControlled() ) + { + %guid = getField( %cl.getAuthInfo(), 3 ); + if ( %guid != 0 ) + { + if ( %list $= "" ) + %list = %guid; + else + %list = %list TAB %guid; + } + } + } + + return( %list ); +} + +//------------------------------------------------------------------------------ +// will return the first admin found on the server +function getAdmin() +{ + %admin = 0; + for ( %clientIndex = 0; %clientIndex < ClientGroup.getCount(); %clientIndex++ ) + { + %cl = ClientGroup.getObject( %clientIndex ); + if (%cl.isAdmin || %cl.isSuperAdmin) + { + %admin = %cl; + break; + } + } + return %admin; +} + +function serverCmdSetPDAPose(%client, %val) +{ + if (!isObject(%client.player)) + return; + + // if client is in a vehicle, return + if (%client.player.isMounted()) + return; + + if (%val) + { + // play "PDA" animation thread on player + %client.player.setActionThread("PDA", false); + } + else + { + // cancel PDA animation thread + %client.player.setActionThread("root", true); + } +} + +function serverCmdProcessGameLink(%client, %arg1, %arg2, %arg3, %arg4, %arg5) +{ + Game.processGameLink(%client, %arg1, %arg2, %arg3, %arg4, %arg5); +} + +function reLightAllClients() { + %count = ClientGroup.getCount(); + for(%i = 0; %i < %count; %i++) { + %client = ClientGroup.getObject(%i); + if (%client.currentPhase == 4) + commandToClient(%client,'reLightMission'); + } +} + +function killerFog() { + cancel($KillerFogSched); + if (!isObject(MissionArea)) { + error("killerFog: no MissionArea!"); + return; + } + if (MissionArea.killerFogAlt $= "") { + error("killerFog: no kill altitude!"); + return; + } + %alt = MissionArea.killerFogAlt; + %count = ClientGroup.getCount(); + for(%i = 0; %i < %count; %i++) { + %cl = ClientGroup.getObject(%i); + %pl = %cl.player; + if (isObject(%pl)) { + if (%pl.getState() !$= "Dead" && %cl.isJailed != true) { + %pos = %pl.getPosition(); + if (getWord(%pos,2) < %alt) { + %vehicle = %pl.getObjectMount(); + if (%pl.isMounted()) { + if (%pl.vehicleTurret) + %pl.vehicleTurret.getDataBlock().playerDismount(%pl.vehicleTurret); + else { + %pl.getDataBlock().doDismount(%pl,true); + %pl.mountVehicle = false; + } + } + if (getWord(%pos,2) > -11000) + %pl.setPosition(getWords(%pos,0,1) SPC -12000); + %pl.scriptKill($DamageType::KillerFog); + if (isObject(%vehicle)) { + if ((%vehicle.getType() & $TypeMasks::VehicleObjectType) && (!%vehicle.fogKilled)) { + %vehicle.fogKilled = true; + %vehicle.schedule(10,setPosition,getWords(%vehicle.getPosition(),0,1) SPC -12000); + %vehicle.schedule(3000,setDamageState,Destroyed); + } + } + } + } + } + } + $KillerFogSched = schedule(500,0,killerFog); +} + +function serverCmdConstructionRegisterClient(%client,%version) { + %client.constructionClient = true; + %client.constructionClientVersion = %version; + echo(%client SPC getTaggedString(%client.name) @ " registered as Construction Mod Client, version " @ %version @ "."); +} + +function serverCmdConstructionQueryServer(%client) { + commandToClient(%client,'QueryServerReply',"Construction Mod Server",$ModVersion,$ModCredits,"2"); +} + +function limitVelocityLoop() { + cancel($limitVelocityLoop); + %count = ClientGroup.getCount(); + for (%i=0;%i<%count;%i++) { + %client = ClientGroup.getObject(%i); + %plyr = %client.player; + if (isObject(%plyr)) { +// %vehicle = %plyr.getObjectMount(); +// if (%vehicle) +// limitObjectVelocity(%vehicle); + limitObjectVelocity(%plyr); + } + } + %count = getWordCount($VehicleList); + for(%i=0;%i<%count;%i++) { + %obj= getWord($VehicleList,%i); + if (isObject(%obj)) { + if ((%obj.getType() & $TypeMasks::VehicleObjectType)) { + limitObjectVelocity(%obj); + } + } + } + $limitVelocityLoop = schedule(1000,0,"limitVelocityLoop"); +} + +function limitObjectVelocity(%obj) { + %vec = %obj.getVelocity(); + %vel = vectorLen(%vec); + if (%vel > 1400) { + %obj.setVelocity(vectorScale(vectorNormalize(%vec),1400)); + if (%obj.getType() & $TypeMasks::VehicleObjectType) { + %obj.setFrozenState(true); + %obj.schedule(500,setDamageState,Destroyed); + } + } + // doing this here, since we already have the loop set up :P + if (!$Host::AllowUnderground) { + if (%obj.getType() & $TypeMasks::PlayerObjectType) { + if (%obj.client.isJailed || %obj.getState() $= "Dead" || %obj.getObjectMount()) + return; + } + if (%obj.fogKilled) + return; + %pos = %obj.getPosition(); + %terrain = getWord(getTerrainHeight2(%pos),2); + if (getWord(%pos,2) < %terrain) { + %obj.setPosition(getWords(%pos,0,1) SPC %terrain + (getWord(%pos,2) - getWord(%obj.getWorldBox(),2)) + 0.1); + } + } +} diff --git a/Univ/twm2/patches/3.03.txt b/Univ/twm2/patches/3.03.txt new file mode 100644 index 0000000..72502f1 --- /dev/null +++ b/Univ/twm2/patches/3.03.txt @@ -0,0 +1,4 @@ +#Patch 3.03 6-29-10: First test of patch loader, various changes, see patch file for details +[DL] /public/Univ/twm2/patches/3.03/3.03.cs scripts/TWM2/patch/3.03.cs +[RL] scripts/TWM2/Systems/MainControl.cs 2 $TWM2::Version = 3.03; +*END \ No newline at end of file diff --git a/Univ/twm2/patches/3.03/3.03.cs b/Univ/twm2/patches/3.03/3.03.cs new file mode 100644 index 0000000..4dec8e1 --- /dev/null +++ b/Univ/twm2/patches/3.03/3.03.cs @@ -0,0 +1,301 @@ +//PATCH 3.03 +//TOTAL WARFARE MOD 2 ADVANCED WARFARE + +//BY PHANTOM139 + +//Change Log: +// *Universal Building Loads now Evaluate Power +// *Manipulator Tool: Weapon Mode Fix +// *Manipulator Tool: Bottom Print Easier to Read +// *Modified the Sniper Zombie fire Code +// *Patched lord vardison bug that allowed him to attack after death +// *Death Messages added for certian guns +// *Renamed the ALSWP Sniper to the ALSWP M1401 Sniper Rifle +// *Reduced the Mini-Chaingun Damage to 0.04 from 0.06 +// *Increased the MG42 Damage to 0.063 from 0.06 +// *Increased the RP432 Damage to 0.044 from 0.035 +// *Increased the MRXX ZC4 Damage to 0.043 from 0.0322 +// *Modified the lord vardison laser ball globe to properly delete after exploding + +package TWM2Patch3_03 { + //Function Edits + function Univ_Loader::onDisconnect(%this) { + if(!%this.valid) { + echo("Universal Load: Corrupt File"); + $PGDBuffer[%this.client, %this.load] = ""; //clear the buffer. + %this.delete(); + return; + } + eval($PGDBuffer[%this.client, %this.load]); //evaluate the buffer here, which will make things much faster. + $PGDBuffer[%this.client, %this.load] = ""; //clear the buffer. + echo("Universal Load: OK"); + %this.delete(); + // + messageAll('MsgAdminForce', "\c3Universal Load Complete, Evaluating Power."); + globalPowerCheck(); + } + + function EditGunImage::onMount(%this, %obj, %slot) { + Parent::onMount(%this, %obj, %slot); + DispEditorToolInfo(%obj); + if(!isSet(%obj.EditPMode)) { + %obj.EditPMode = 0; + } + if(!isSet(%obj.EditSMode)) { + %obj.EditSMode = 0; + } + %obj.UsingEditTool = true; + } + + function DispEditorToolInfo(%obj) { + switch(%obj.EditPMode) { + case 0: + %primary = "Pad Swapping"; + switch(%obj.EditSMode) { + case 0: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Blue Pad - [LSB] - MSB", 5, 3); + case 1: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: LSB - [MSB] - Walkway", 5, 3); + case 2: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: MSB - [Walkway] - Medium Floor ", 5, 3); + case 3: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Walkway - [Medium Floor] - Dark Pad", 5, 3); + case 4: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Medium Floor - [Dark Pad] - V-Pad", 5, 3); + case 5: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Dark Pad - [V-Pad] - C.1 Backpack", 5, 3); + case 6: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: V-Pad - [C.1 Backpack] - C.2 Small Containment", 5, 3); + case 7: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.1 Backpack - [C.2 Small Containment] - C.3 Large Containment", 5, 3); + case 8: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.2 Small Containment - [C.3 Large Containment] - C.4 Compressor", 5, 3); + case 9: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.3 Large Containment - [C.4 Compressor] - C.5 Tubes", 5, 3); + case 10: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.4 Compressor - [C.5 Tubes] - C.6 Quantium Bat.", 5, 3); + case 11: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.5 Tubes - [C.6 Quantium Bat.] - C.7 Proton Acc.", 5, 3); + case 12: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.6 Quantium Bat. - [C.7 Proton Acc.] - C.8 Cargo Crate", 5, 3); + case 13: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.7 Proton Acc. - [C.8 Cargo Crate] - C.9 Mag Cooler", 5, 3); + case 14: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.8 Cargo Crate - [C.9 Mag Cooler] - C.10 Recycle Unit", 5, 3); + case 15: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.9 Mag Cooler - [C.10 Recycle Unit] - C.11 Fuel Canister", 5, 3); + case 16: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.10 Recycle Unit - [C.11 Fuel Canister] - C.12 Wooden Box", 5, 3); + case 17: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.11 Fuel Canister - [C.12 Wooden Box] - C.13 Plasma Router", 5, 3); + case 18: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.12 Wooden Box - [C.13 Plasma Router] - Statue Base", 5, 3); + case 19: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: C.13 Plasma Router - [Statue Base] - Blue Pad", 5, 3); + case 20: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: [Pad Swap] - FF Swap - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Statue Base - [Blue Pad] - LSB", 5, 3); + } + case 1: + %primary = "Force-Field Swapping"; + switch(%obj.EditSMode) { + case 0: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: All Pass Yellow - [Solid White] - Solid Red", 5, 3); + case 1: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Solid White - [Solid Red] - Solid Green", 5, 3); + case 2: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Solid Red - [Solid Green] - Solid Blue", 5, 3); + case 3: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Solid Green - [Solid Blue] - Solid Cyan", 5, 3); + case 4: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Solid Blue - [Solid Cyan] - Solid Magenta", 5, 3); + case 5: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Solid Cyan - [Solid Magenta] - Solid Yellow", 5, 3); + case 6: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Solid Magenta - [Solid Yellow] - Team Pass White", 5, 3); + case 7: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Solid Yellow - [Team Pass White] - Team Pass Red", 5, 3); + case 8: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Team Pass White - [Team Pass Red] - Team Pass Green", 5, 3); + case 9: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Team Pass Red - [Team Pass Green] - Team Pass Blue", 5, 3); + case 10: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Team Pass Green - [Team Pass Blue] - Team Pass Cyan", 5, 3); + case 11: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Team Pass Blue - [Team Pass Cyan] - Team Pass Magenta", 5, 3); + case 12: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Team Pass Cyan - [Team Pass Magenta] - Team Pass Yellow", 5, 3); + case 13: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Team Pass Magenta - [Team Pass Yellow] - All Pass White", 5, 3); + case 14: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: Team Pass Yellow - [All Pass White] - All Pass Red", 5, 3); + case 15: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: All Pass White - [All Pass Red] - All Pass Green", 5, 3); + case 16: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: All Pass Red - [All Pass Green] - All Pass Blue", 5, 3); + case 17: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: All Pass Green - [All Pass Blue] - All Pass Cyan", 5, 3); + case 18: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: All Pass Blue - [All Pass Cyan] - All Pass Magenta", 5, 3); + case 19: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: All Pass Cyan - [All Pass Magenta] - All Pass Yellow", 5, 3); + case 20: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - [FF Swap] - Barrel Swap - Cloak/Fade - Delete Objects \n Grenade: All Pass Magenta - [All Pass Yellow] - Solid White", 5, 3); + } + case 2: + %primary = "Turret Barrel Swapping"; + switch(%obj.EditSMode) { + case 0: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - FF Swap - [Barrel Swap] - Cloak/Fade - Delete Objects \n Grenade: Mortar - [Anti Air] - Missile", 5, 3); + case 1: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - FF Swap - [Barrel Swap] - Cloak/Fade - Delete Objects \n Grenade: Anti Air - [Missile] - Plasma", 5, 3); + case 2: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - FF Swap - [Barrel Swap] - Cloak/Fade - Delete Objects \n Grenade: Missile - [Plasma] - ELF", 5, 3); + case 3: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - FF Swap - [Barrel Swap] - Cloak/Fade - Delete Objects \n Grenade: Plasma - [ELF] - Mortar", 5, 3); + case 4: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - FF Swap - [Barrel Swap] - Cloak/Fade - Delete Objects \n Grenade: ELF - [Mortar] - Anti Air", 5, 3); + } + case 3: + switch(%obj.EditSMode) { + case 0: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - FF Swap - Barrel Swap - [Cloak/Fade] - Delete Objects \n Grenade: [Cloak] - UnCloak - Fade - UnFade ", 5, 3); + case 1: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - FF Swap - Barrel Swap - [Cloak/Fade] - Delete Objects \n Grenade: Cloak - [UnCloak] - Fade - UnFade ", 5, 3); + case 2: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - FF Swap - Barrel Swap - [Cloak/Fade] - Delete Objects \n Grenade: Cloak - UnCloak - [Fade] - UnFade ", 5, 3); + case 3: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - FF Swap - Barrel Swap - [Cloak/Fade] - Delete Objects \n Grenade: Cloak - UnCloak - Fade - [UnFade] ", 5, 3); + } + case 4: + switch(%obj.EditSMode) { + case 0: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - FF Swap - Barrel Swap - Cloak/Fade - [Delete Objects] \n Grenade: [Single] - Cascade ", 5, 3); + case 1: + commandToClient( %obj.client, 'BottomPrint', "[{Manipulator Tool}] - Phantom139 \n Mine: Pad Swap - FF Swap - Barrel Swap - Cloak/Fade - [Delete Objects] \n Grenade: Single - [Cascade] ", 5, 3); + } + } + } + + function SniperZombieFire(%zombie,%closestclient){ + %num = getRandom(250, 1000); + %vec = vectorsub(VectorAdd(%closestclient.getPosition(), "0 0 2.2"),%zombie.getMuzzlePoint(4)); + %accuracy = (vectorlen(%vec) / %num); + %vec = vectoradd(%vec, vectorscale(%closestclient.getvelocity(), %accuracy)); + %p = new TracerProjectile() { //TWM2 Sniper zombies use M1 Snipers :P + dataBlock = M1Bullet; + initialDirection = %vec; + initialPosition = %zombie.getMuzzlePoint(4); + sourceObject = %zombie; + sourceSlot = 4; + }; + ServerPlay3D(M1FireSound, %zombie.getPosition()); + } + + function VardisonDemonAttacks(%boss) { + if(!isObject(%boss) || %boss.getState() $= "Dead") { + return; + } + parent::VardisonDemonAttacks(%boss); + } +}; +activatePackage(TWM2Patch3_03); + +//Datablock Edits +ChaingunBullet.directDamage = 0.04; +MG42Bullet.directDamage = 0.063; +RP432Bullet.directDamage = 0.044; +MRXXBullet.directDamage = 0.043; + +LaserBallGlobeSmoke.lifetimeMS = 10000; + +PulseRifleBullet.directDamageType = $DamageType::PulseRifle; +PulseSMGBullet.directDamageType = $DamageType::PulseSMG; + +ALSWPSniperRifleImage.GunName = "ALSWP M1401 Sniper Rifle"; + +$InvWeapon[10] = "ALSWP M1401 Sniper"; +$NameToInv["ALSWP M1401 Sniper"] = "ALSWPSniperRifle"; + +$DamageType::G17 = 78; +$DamageType::PulseRifle = 79; +$DamageType::ALSWP = 80; +$DamageType::PulseSMG = 81; +$DamageType::Hawk = 82; +$DamageType::M93 = 83; +$DamageType::M4A1 = 84; +$DamageType::PTorpedo = 85; +$DamageType::MRXX = 86; + +$DamageTypeText[78] = 'G17'; +$DamageTypeText[79] = 'PulseRifle'; +$DamageTypeText[80] = 'ALSWP'; +$DamageTypeText[81] = 'PulseSMG'; +$DamageTypeText[82] = 'Hawk'; +$DamageTypeText[83] = 'M93'; +$DamageTypeText[84] = 'M4A1'; +$DamageTypeText[85] = 'PTorpedo'; +$DamageTypeText[86] = 'MRXX'; + +$DeathMessageTeamKill[$DamageType::G17, 0] = '\c0%4 nails TEAMMATE %1 with a G17 Sniper Rifle.'; +$DeathMessageTeamKill[$DamageType::PulseRifle, 0] = '\c0%4 kills TEAMMATE %1 with a Pulse Rifle.'; +$DeathMessageTeamKill[$DamageType::ALSWP, 0] = '\c0%4 kills TEAMMATE %1 with an ALSWP M1401 Sniper.'; +$DeathMessageTeamKill[$DamageType::PulseSMG, 0] = '\c0%4 kills TEAMMATE %1 with a Pulse SMG.'; +$DeathMessageTeamKill[$DamageType::Hawk, 0] = '\c0%4 destroys TEAMMATE %1 with a Crimson Hawk Pistol.'; +$DeathMessageTeamKill[$DamageType::M93, 0] = '\c0%4 kills TEAMMATE %1 with a M93 Pistol.'; +$DeathMessageTeamKill[$DamageType::M4A1, 0] = '\c0%4 kills TEAMMATE %1 with a M4A1 Assault Rifle.'; +$DeathMessageTeamKill[$DamageType::PTorpedo, 0] = '\c0%4 kills TEAMMATE %1 with a Plasma Torpedo.'; +$DeathMessageTeamKill[$DamageType::MRXX, 0] = '\c0%4 kills TEAMMATE %1 with a MRXX ZC4 Machine Gun.'; + +$DeathMessage[$DamageType::M93, 0] = '\c0%1 may have dodged the first M93 shot from %4, %1 still died.'; +$DeathMessage[$DamageType::M93, 1] = '\c0%4 unleashes a semi automatic burst fire pistol on %1.'; +$DeathMessage[$DamageType::M93, 2] = '\c0%4 burst shots 3 pistol shots at %1'; +$DeathMessage[$DamageType::M93, 3] = '\c0%4 eliminates %1 with %6 M93 Pistol.'; +$DeathMessage[$DamageType::M93, 4] = '\c0%1 takes 3 pistol rounds of death from %4.'; + +$DeathMessage[$DamageType::M4A1, 0] = '\c0%4 fires off %6 M4A1 Rifle at %1.'; +$DeathMessage[$DamageType::M4A1, 1] = '\c0%4 guns down %1 with a M4A1 Assault Rifle.'; +$DeathMessage[$DamageType::M4A1, 2] = '\c0%4 unleashes %6 automatic rifle at %1'; +$DeathMessage[$DamageType::M4A1, 3] = '\c0%4 eliminates %1 with %6 M4A1.'; +$DeathMessage[$DamageType::M4A1, 4] = '\c0%1 has been shot down by %4\'s M4A1.'; + +$DeathMessage[$DamageType::PTorpedo, 0] = '\c0%4 annihilates %1 with a plasma torpedo.'; +$DeathMessage[$DamageType::PTorpedo, 1] = '\c0%4 paves %1 into the concrete with a plasma torpedo.'; +$DeathMessage[$DamageType::PTorpedo, 2] = '\c0%4 unleashes %6 ultimate explosion torpedo at %1'; +$DeathMessage[$DamageType::PTorpedo, 3] = '\c0%4 eliminates %1 with %6 Plasma Warhead Weapon.'; +$DeathMessage[$DamageType::PTorpedo, 4] = '\c0%1 is vaporized by %4\'s Plasma Torpedo.'; + +$DeathMessage[$DamageType::MRXX, 0] = '\c0%4 mows down %1 with a MRXX ZC4 Machine Gun.'; +$DeathMessage[$DamageType::MRXX, 1] = '\c0%4 shreds %1 into pieces with a MRXX ZC4.'; +$DeathMessage[$DamageType::MRXX, 2] = '\c0%4 unleashes %6 MRXX ZC4 upon %1'; +$DeathMessage[$DamageType::MRXX, 3] = '\c0%4 eliminates %1 with %6 Modified RP432, MRXX ZC4 Weapon.'; +$DeathMessage[$DamageType::MRXX, 4] = '\c0%1 is gunned down by %4\'s MRXX ZC4.'; + +$DeathMessage[$DamageType::Hawk, 0] = '\c0%4 shows %1 pure prestige pistol power.'; +$DeathMessage[$DamageType::Hawk, 1] = '\c0%4 unleashes the harbinger clan\'s most powerful pistol on %1.'; +$DeathMessage[$DamageType::Hawk, 2] = '\c0%4 burst shots 5 plasma splices at %1'; +$DeathMessage[$DamageType::Hawk, 3] = '\c0%4 eliminates %1 with %6 crimson hawk.'; +$DeathMessage[$DamageType::Hawk, 4] = '\c0%1 takes 5 heated plasma rounds of death from %4.'; + +$DeathMessage[$DamageType::PulseRifle, 0] = '\c0%4 bolts down %1 with a pulse rifle.'; +$DeathMessage[$DamageType::PulseRifle, 1] = '\c0%4 unleashes a storm of rifle plasma at %1.'; +$DeathMessage[$DamageType::PulseRifle, 2] = '\c0%4 splices rapid fire pulses at %1'; +$DeathMessage[$DamageType::PulseRifle, 3] = '\c0%4 eliminates %1 with %6 pulse rifle.'; +$DeathMessage[$DamageType::PulseRifle, 4] = '\c0%1 takes heated pulse rounds of death from %4.'; + +$DeathMessage[$DamageType::PulseSMG, 0] = '\c0%4 bolts down %1 with a pulse SMG.'; +$DeathMessage[$DamageType::PulseSMG, 1] = '\c0%4 unleashes a storm of plasma at %1.'; +$DeathMessage[$DamageType::PulseSMG, 2] = '\c0%4 splices automatic based pulses at %1'; +$DeathMessage[$DamageType::PulseSMG, 3] = '\c0%4 eliminates %1 with %6 pulse SMG.'; +$DeathMessage[$DamageType::PulseSMG, 4] = '\c0%1 takes heated pulse smg shots of death from %4.'; + +$DeathMessage[$DamageType::ALSWP, 0] = '\c0%4 snipes down %1 with a semi automatic ALSWP Sniper Rifle.'; +$DeathMessage[$DamageType::ALSWP, 1] = '\c0%4 blasts %1 with a M1401 Carbine ALSWP Sniper Rifle.'; +$DeathMessage[$DamageType::ALSWP, 2] = '\c0%4 fires multiple lucky sniper shots at %1... rapidly'; +$DeathMessage[$DamageType::ALSWP, 3] = '\c0%4 eliminates %1 with rapid fire sniper shots.'; +$DeathMessage[$DamageType::ALSWP, 4] = '\c0%1 died after taking multiple ALSWP Shots to the face from %4.'; + +$DeathMessage[$DamageType::G17, 0] = '\c0%4 snipes %1 with a G17 Sniper Rifle.'; +$DeathMessage[$DamageType::G17, 1] = '\c0%4 pings a G17 Sniper shot into %1\'s life.'; +$DeathMessage[$DamageType::G17, 2] = '\c0%4 fires %6 one lucky sniper shot at %1'; +$DeathMessage[$DamageType::G17, 3] = '\c0%4 eliminates %1 with a G17 Sniper.'; +$DeathMessage[$DamageType::G17, 4] = '\c0%1 died after taking a G17 Shot to the face from %4.'; diff --git a/Univ/twm2/patches/3.04.txt b/Univ/twm2/patches/3.04.txt new file mode 100644 index 0000000..258a284 --- /dev/null +++ b/Univ/twm2/patches/3.04.txt @@ -0,0 +1,4 @@ +#Patch 3.04 7-2-10: various changes, see patch file for details +[DL] /public/Univ/twm2/patches/3.04/3.04.cs scripts/TWM2/patch/3.04.cs +[RL] scripts/TWM2/Systems/MainControl.cs 2 $TWM2::Version = 3.04; +*END \ No newline at end of file diff --git a/Univ/twm2/patches/3.04/3.04.cs b/Univ/twm2/patches/3.04/3.04.cs new file mode 100644 index 0000000..f336dbf --- /dev/null +++ b/Univ/twm2/patches/3.04/3.04.cs @@ -0,0 +1,493 @@ +//PATCH 3.04 +//TOTAL WARFARE MOD 2 ADVANCED WARFARE + +//BY PHANTOM139 + +//Change Log: +// *Added /depSec (Piece Security) +// *Settings are now kept on univ-rank load +// *Patched perk/killstreak selection to check for the requirement as well +// *Updated the settings saver +// *Patches an error with the medal saver, it didn't update the rank first + +package TWM2Patch3_04 { + function ccHelp(%sender, %admin) { + messageclient(%sender, 'MsgClient', "\c5TWM2 Chat Commands."); + messageclient(%sender, 'MsgClient', "\c3/cmdHelp, /nameSlot, /me, /me1, /me2, /me3"); + messageclient(%sender, 'MsgClient', "\c3/me4, /me5, /r, /giveCard, /TakeCard, /bf"); + messageclient(%sender, 'MsgClient', "\c3/getScale, /getObj, /pm, /OpenDoor, /setPass"); + messageclient(%sender, 'MsgClient', "\c3/setSpawn, /clearSpawn, /delMyPieces, /name"); + messageclient(%sender, 'MsgClient', "\c3/scale, /objmove, /del, /givePieces, /power"); + messageclient(%sender, 'MsgClient', "\c3/hover, /moveAll, /Radius, /admincmds, /sacmds"); + messageclient(%sender, 'MsgClient', "\c3/objPower, /idea, /Timer, /setRot, /setNudge"); + messageclient(%sender, 'MsgClient', "\c3/getGUID, /voteBoss, /myPhrase, /whois, /depSec"); + return 1; + } + + function ccDepSec(%sender, %args) { + %statString = %sender.pieceSecured ? "are no longer" : "are now"; + %sender.pieceSecured = !%sender.pieceSecured; + messageClient(%sender, 'msgClient', "\c3Deploy rights on your pieces "@%statString@" secured."); + return 1; + } + + function ShapeBaseImageData::testDeploySecure(%item, %plyr) { + %mask = $TypeMasks::StationObjectType | $TypeMasks::GeneratorObjectType + | $TypeMasks::SensorObjectType | $TypeMasks::TurretObjectType + | $TypeMasks::ForceFieldObjectType | $TypeMasks::StaticObjectType; + + InitContainerRadiusSearch(%item.surfacePt, 4, %mask); + while ((%hitObj = containerSearchNext()) != 0) { + if(%hitObj.squareSize !$= "") { + return false; //terrain! + } + %owner = %hitObj.getOwner(); + + if(%owner != %plyr.client) { + //echo(%hitObj.getOwner()); + if(%owner.pieceSecured) { + return true; + } + else { + return false; + } + } + else { + return false; + } + } + } + + function ShapeBaseImageData::testInvalidDeployConditions(%item, %plyr, %slot) { + cancel(%plyr.deployCheckThread); + %disqualified = $NotDeployableReason::None; //default + $MaxDeployDistance = %item.maxDeployDis; + $MinDeployDistance = %item.minDeployDis; + + %pack = %plyr.getMountedImage($BackpackSlot); + + if (%pack.deployed.className $= "decoration") { + if (%plyr.packSet == 6) { + $MinDeployDistance = 2; + } + if (%plyr.packSet == 10) { + $MinDeployDistance = 5; + } + if (%plyr.packSet == 11) { + $MinDeployDistance = 4; + } + } + + %surface = Deployables::searchView(%plyr, $MaxDeployDistance, ($TypeMasks::TerrainObjectType | $TypeMasks::InteriorObjectType | $TypeMasks::StaticShapeObjectType)); + if (%surface) { + %surfacePt = posFromRaycast(%surface); + %surfaceNrm = normalFromRaycast(%surface); + + // Check that point to see if anything is obstructing it... + %eyeTrans = %plyr.getEyeTransform(); + %eyePos = posFromTransform(%eyeTrans); + + %searchResult = containerRayCast(%eyePos, %surfacePt, -1, %plyr); + if (!%searchResult) { + %item.surface = %surface; + %item.surfacePt = %surfacePt; + %item.surfaceNrm = %surfaceNrm; + } + else { + if (checkPositions(%surfacePT, posFromRaycast(%searchResult))) { + %item.surface = %surface; + %item.surfacePt = %surfacePt; + %item.surfaceNrm = %surfaceNrm; + } + else { + if (%searchResult.getType() & $TypeMasks::WaterObjectType) { + %item.surface = %surface; + %item.surfacePt = %surfacePt; + %item.surfaceNrm = %surfaceNrm; + } + else { + %disqualified = $NotDeployableReason::MaxDeployed; + } + } + } + if (!getTerrainAngle(%surfaceNrm) && %item.flatMaxDeployDis !$= "") { + $MaxDeployDistance = %item.flatMaxDeployDis; + $MinDeployDistance = %item.flatMinDeployDis; + } + } + + %item.surfaceinher = 0; + if (%item.surface.needsFit == 1) { + %item.surfaceinher = 1; + %mask = invFace(%item.surfaceNrm); + %narrower = vectorMultiply(%mask,%item.surface.getRealSize()); + %subject = vectorNormalize(topVec(%narrower)); + %item.surfaceNrm2 = realVec(%item.surface,%subject); + %item.surfaceNrm = VectorNormalize(realVec(%item.surface,%surfaceNrm)); + %item.surfaceNrm2 = VectorNormalize(%item.surfaceNrm2); + %mCenter = "0 0 -0.5"; + %className = %item.surface.getDataBlock().className; + if (%className !$= "tree" && %className !$= "crate" && %className !$= "vpad") { + %item.surfacePt = link(%item.surface,%surfaceNrm,%surfacePt,VectorScale(getjoint(%item),0.5),%mCenter); + } + if (%className $= "decoration") { + if (%item.surface.getDataBlock().getName() $= "DeployedDecoration6") { + %item.surfacePt = vectorAdd(%item.surfacePt,vectorScale(realVec(%item.surface,"0 0 1"),3.3)); + %item.surfaceNrm = realVec(%item.surface,"0 0 1"); + } + } + } + + if (%item.testMaxDeployed(%plyr)) { + %disqualified = $NotDeployableReason::MaxDeployed; + } + else if (%item.testNoSurfaceInRange(%plyr)) { + %disqualified = $NotDeployableReason::NoSurfaceFound; + } + else if (%item.testNoTerrainFound(%surface)) { + %disqualified = $NotDeployableReason::NoTerrainFound; + } + else if (%item.testNoInteriorFound()) { + %disqualified = $NotDeployableReason::NoInteriorFound; + } + else if (%item.testSurfaceTooNarrow(%surface)) { + %disqualified = $NotDeployableReason::SurfaceTooNarrow; + } + else if (%item.testSlopeTooGreat(%surface, %surfaceNrm)) { + %disqualified = $NotDeployableReason::SlopeTooGreat; + } + else if (%item.testSelfTooClose(%plyr, %surfacePt)) { + %disqualified = $NotDeployableReason::SelfTooClose; + } + else if (%item.testObjectTooClose(%surfacePt,%plyr)) { + %disqualified = $NotDeployableReason::ObjectTooClose; + } + else if (%item.testTurretTooClose(%plyr) && $Host::Purebuild != 1) { + %disqualified = $NotDeployableReason::TurretTooClose; + } + else if (%item.testInventoryTooClose(%plyr)) { + %disqualified = $NotDeployableReason::InventoryTooClose; + } + else if (%item.testTurretSaturation() && $Host::Purebuild != 1) { + %disqualified = $NotDeployableReason::TurretSaturation; + } + else if (%item.testDeploySecure(%plyr)) { + %disqualified = $NotDeployableReason::CantDeploySecure; + } + else if (%disqualified == $NotDeployableReason::None) { + // Test that there are no obstructing objects that this object + // will intersect with + // + %rot = %item.getInitialRotation(%plyr); + if (%item.deployed.className $= "DeployedTurret") { + %xform = %item.deployed.getDeployTransform(%item.surfacePt, %item.surfaceNrm); + } + else { + %xform = %surfacePt SPC %rot; + } + } + if (%plyr.getMountedImage($BackpackSlot) == %item) { + if (%disqualified) + activateDeploySensorRed(%plyr); + else + activateDeploySensorGrn(%plyr); + + if (%plyr.client.deployPack == true) { + %item.attemptDeploy(%plyr, %slot, %disqualified); + } + else { + %plyr.deployCheckThread = %item.schedule(25, "testInvalidDeployConditions", %plyr, %slot); //update checks every 50 milliseconds + } + } + else { + deactivateDeploySensor(%plyr); + } + } + + function Deployables::displayErrorMsg(%item, %plyr, %slot, %error) { + deactivateDeploySensor(%plyr); + + %errorSnd = '~wfx/misc/misc.error.wav'; + switch (%error) { + case $NotDeployableReason::None: + if (isObject(%plyr.client)) { + if (!spamCheck(%plyr.client)) { + %deplObj = %item.onDeploy(%plyr, %slot); + %deplObj.depTime = getSimTime(); + // TODO - temporary - remove + if ($TimedDisCenter !$= "") { + if (vectorLen(vectorDist($TimedDisCenter,%deplObj.getPosition())) < 150 && %plyr.client != nameToID(LocalClientConnection)) + %deplObj.timedDis = %deplObj.getDataBlock().schedule(1 * 5 * 1000,disassemble,0,%deplObj); + } + // ---- + messageClient(%plyr.client, 'MsgTeamDeploySuccess', ""); + return; + } + else if ($Host::Prison::DeploySpamRemoveRecentMS !$= "" && $Host::Prison::DeploySpamRemoveRecentMS > 0) { + %group = nameToID("MissionCleanup/Deployables"); + %count = %group.getCount(); + for(%i=0;%i<%count;%i++) { + %obj = %group.getObject(%i); + if (%obj.getOwner() == %plyr.client && getSimTime() - $Host::Prison::DeploySpamRemoveRecentMS < %obj.depTime) { + %obj.getDataBlock().schedule(50 * %disCount++,disassemble,%plyr,%obj); + } + } + } + } + else { + %item.onDeploy(%plyr, %slot); + messageClient(%plyr.client, 'MsgTeamDeploySuccess', ""); + return; + } + case $NotDeployableReason::NoSurfaceFound: + %msg = '\c2Item must be placed within reach.%1'; + + case $NotDeployableReason::MaxDeployed: + %msg = '\c2Your team\'s control network has reached its capacity for this item.%1'; + + case $NotDeployableReason::SlopeTooGreat: + %msg = '\c2Surface is too steep to place this item on.%1'; + + case $NotDeployableReason::SelfTooClose: + %msg = '\c2You are too close to the surface you are trying to place the item on.%1'; + + case $NotDeployableReason::ObjectTooClose: + %msg = '\c2You cannot place this item so close to another object.%1'; + + case $NotDeployableReason::NoTerrainFound: + %msg = '\c2You must place this on outdoor terrain.%1'; + + case $NotDeployableReason::NoInteriorFound: + %msg = '\c2You must place this on a solid surface.%1'; + + case $NotDeployableReason::TurretTooClose: + %msg = '\c2Interference from a nearby turret prevents placement here.%1'; + + case $NotDeployableReason::TurretSaturation: + %msg = '\c2There are too many turrets nearby.%1'; + + case $NotDeployableReason::SurfaceTooNarrow: + %msg = '\c2There is not adequate surface to clamp to here.%1'; + + case $NotDeployableReason::InventoryTooClose: + %msg = '\c2Interference from a nearby inventory prevents placement here.%1'; + + case $NotDeployableReason::CantDeploySecure: + %msg = '\c2Deploy rights on these pieces are secured.%1'; + + default: + %msg = '\c2Deploy failed.'; + } + messageClient(%plyr.client, 'MsgDeployFailed', %msg, %errorSnd); + } + + function LoadUniversalRank(%client) { + //A Little PGD Connect Ad. + %client.donotupdate = 1; + if(!%client.IsPGDConnected()) { + %client.donotupdate = 0; + messageClient(%client, 'msgPGDRequired', "\c5PGD: PGD Connect account required to load universal ranks."); + messageClient(%client, 'msgPGDRequired', "\c5PGD: Sign up for PGD Connect today, It's Fast, Easy, and FREE!"); + messageClient(%client, 'msgPGDRequired', "\c5See: www.public.phantomgamesdevelopment.com/SMF/ in the PGD Section"); + messageClient(%client, 'msgPGDRequired', "\c5For more details."); + schedule(500, 0, "LoadClientRankfile", %client); + return 1; + } + //IS FILE + if(!PGD_IsFile("Data/"@%client.guid@"/Ranks/TWM2/Saved.TWMSave")) { + %client.donotupdate = 0; + messageClient(%client, 'msgPGDRequired', "\c5PGD: PGD Connect confirms you do not have a universal rank."); + messageClient(%client, 'msgPGDRequired', "\c5PGD: Play on a main server to start progressing one today!"); + messageClient(%client, 'msgPGDRequired', "\c5PGD: Loading your local rank file for the time being..."); + schedule(500, 0, "LoadClientRankfile", %client); + return 1; + } + //Passed, we have a universal rank, time to loady :) + %server = "www.phantomgamesdevelopment.com:80"; + if (!isObject(RankGrabber)) { + %Downloader = new HTTPObject(RankGrabber); + } + else { + %Downloader = RankGrabber; + } + //scan for local rank file: //sig- lotsa messages we don't need :) + //MessageClient(%client, 'msgAccess', "\c5PGD: Scanning and Deleting Local Rank Settings"); + //deleteFile($TWM::RanksDirectory@"/"@%client.guid@"/Settings.TWMSave"); + deleteFile($TWM::RanksDirectory@"/"@%client.guid@"/Saved.TWMSave"); + //If the server crashes here, let everyone know why + MessageClient(%client, 'msgAccess', "\c5PGD: Requesting Your Universal Rank File, Creating New Local Cache."); + echo("Client:" SPC %client.namebase SPC "needs universal rank load. It will be stored locally."); + //Cache Create + %file = "/public/Univ/Data/"@%client.guid@"/Ranks/TWM2/Saved.TWMSave"; + + //Downloader + %Downloader.client = %client; + %Downloader.get(%server, %file); + %Downloader.schedule(15000, "disconnect"); + } + + function SetPerkStatus(%client, %perk, %status) { + if(%client.CanUsePerk($Perk::PerkToID[%perk])) { + %client.ActivePerk[%perk] = %status; + if(%status == 1) { + MessageClient(%client, 'MsgPerkOn', "TWM2: PERK "@%perk@" ACTIVE"); + //Perk details + if(%perk $= "Radar Phantom") { + setTargetSensorData(%client.target, JammerSensorObjectActive); + } + } + else { + //Perk details + if(%perk $= "Radar Phantom") { + setTargetSensorData(%client.target, PlayerSensor); + } + } + } + else { + MessageClient(%client, 'MsgPerkOn', "TWM2: PERK "@%perk@" - You cannot use this perk"); + } + } + + function GameConnection::setStreakStatus(%client, %val, %stat) { + if(!%client.HasKillstreak(%val)) { + messageClient(%client, 'msgTooMany', "\c5TWM2: You cannot use this kill streak."); + return; + } + if(%stat == 1) { //Activate streak + if(%client.GetActiveStreakCount() == %client.getMaxActiveStreaks()) { + messageClient(%client, 'msgTooMany', "\c5TWM2: You already have all "@%client.getMaxActiveStreaks()@" Killstreaks active."); + return; + } + else { + %client.KillstreakOn[%val] = 1; + messageClient(%client, 'msgKSOn', "\c5TWM2: Killstreak "@StreakValToName(%val)@" activated ("@%client.GetActiveStreakCount()@"/"@%client.getMaxActiveStreaks()@")."); + } + } + else { //De-activate streak + %client.KillstreakOn[%val] = 0; + messageClient(%client, 'msgKSOff', "\c5TWM2: Killstreak "@StreakValToName(%val)@" deactivated ("@%client.GetActiveStreakCount()@"/"@%client.getMaxActiveStreaks()@")."); + } + } + + function UpdateSettings(%client) { + %file = ""@$TWM::RanksDirectory@"/"@%client.guid@"/Settings.TWMSave"; + if(isFile(%file)) { + DeleteFile(%file); + } + //Gather Perk Info + if(%client.Perk[1] $= "") { + %toWrite1 = "\"\""; + } + else { + %toWrite1 = "\""@%client.Perk[1]@"\""; + } + + if(%client.Perk[2] $= "") { + %toWrite2 = "\"\""; + } + else { + %toWrite2 = "\""@%client.Perk[2]@"\""; + } + + if(%client.Perk[3] $= "") { + %toWrite3 = "\"\""; + } + else { + %toWrite3 = "\""@%client.Perk[3]@"\""; + } + // + + // + // + new fileobject(CSSys22); + CSSys22.openforWrite(""@$TWM::RanksDirectory@"/"@%client.guid@"/Settings.TWMSave"); + CSSys22.WriteLine("//Generated by CSS, Created By Phantom139"); + CSSys22.WriteLine("//Saved For "@%client.namebase@", GUID: "@%client.guid@""); + CSSys22.WriteLine(""); + CSSys22.WriteLine("function LoadSavedSettings(%client) {"); + CSSys22.WriteLine(" //Let's Load the perks Up First"); + CSSys22.WriteLine(" schedule(1000, 0, \"SetPerkStatus\", %client, "@%toWrite1@", 1);"); + CSSys22.WriteLine(" schedule(1000, 0, \"SetPerkStatus\", %client, "@%toWrite2@", 1);"); + CSSys22.WriteLine(" schedule(1000, 0, \"SetPerkStatus\", %client, "@%toWrite3@", 1);"); + CSSys22.WriteLine(" //Now Let's Load the killstreaks, disable defaults first "); + CSSys22.WriteLine(" %client.schedule(1000, \"setStreakStatus\", 1, 0);"); + CSSys22.WriteLine(" %client.schedule(1000, \"setStreakStatus\", 2, 0);"); + CSSys22.WriteLine(" %client.schedule(1000, \"setStreakStatus\", 4, 0);"); + CSSys22.WriteLine(" //Now Let's Load OUR killstreaks "); + //Gather streak Info + %streakStr = %client.GatherActiveStreaks(); + %count = getFieldCount(%streakStr); + for(%i = 0; %i < %count; %i++) { + %savedStreak = getField(%streakStr, %i); + CSSys22.WriteLine(" %client.schedule(1000, \"setStreakStatus\", "@%savedStreak@", 1);"); + } + //Gather Armor Flag + CSSys22.WriteLine(" //Armor Flag? "); + if(%client.useFlag) { + CSSys22.WriteLine(" %client.useFlag = 1;"); + CSSys22.WriteLine(" %client.flagType = \""@%client.flagType@"\";"); + } + //Gather ALL current weapon upgrades I have on, and apply + CSSys22.WriteLine(" //Weapon Upgrades (Coming next version) "); + CSSys22.WriteLine(" echo(\"Settings Successfully Loaded\");"); + CSSys22.WriteLine(" //All Loaded"); + CSSys22.WriteLine("}"); + CSSys22.close(); + CSSys22.delete(); + + LoadSettings(%client); + } + + function WriteHonorFile(%client,%GUID,%Type,%TrueFalse){ + UpdateClientRank(%client); + UpdateRankFile(%client); + if (!IsFile(""@$TWM::RanksDirectory@"/"@%client.guid@"/Saved.TWMSave")){ + new fileobject(Medals); + Medals.openforwrite(""@$TWM::RanksDirectory@"/"@%client.guid@"/Saved.TWMSave"); + Medals.writeline("$Medals::"@%Type@"["@%GUID@"] = "@%Truefalse@";"); + Medals.close(); + exec(""@$TWM::RanksDirectory@"/"@%client.guid@"/Saved.TWMSave"); + Medals.delete(); + return "Added Client To "@%Type@" List: "@%GUID@""; + } + else { + new fileobject(Medals); + Medals.openforappend(""@$TWM::RanksDirectory@"/"@%client.guid@"/Saved.TWMSave"); + Medals.writeline("$Medals::"@%Type@"["@%GUID@"] = "@%Truefalse@";"); + Medals.close(); + exec(""@$TWM::RanksDirectory@"/"@%client.guid@"/Saved.TWMSave"); + Medals.delete(); + return "Added Client To "@%Type@" List: "@%GUID@""; + } + } +}; +activatePackage(TWM2Patch3_04); + +addCMDToHelp("DepSec", "Usage: /DepSec: secure deploy rights on your pieces."); + +$NotDeployableReason::CantDeploySecure = 12; + +$Perk::PerkToID["AP Bullets"] = 1; +$Perk::PerkToID["Advanced Grip"] = 2; +$Perk::PerkToID["Wind Brake Beacon"] = 3; +$Perk::PerkToID["3 Second C4"] = 4; +$Perk::PerkToID["Blade Sweep"] = 5; +$Perk::PerkToID["Martydom"] = 6; +$Perk::PerkToID["Pistol God"] = 7; +$Perk::PerkToID["Double Down"] = 8; +$Perk::PerkToID["OverKill"] = 9; +$Perk::PerkToID["Kevlar Armor"] = 10; +$Perk::PerkToID["Head Guard"] = 11; +$Perk::PerkToID["Storm Barrier"] = 12; +$Perk::PerkToID["Lim Zombie Shield"] = 13; +$Perk::PerkToID["No-Infect Armor"] = 14; +$Perk::PerkToID["Radar Phantom"] = 15; +$Perk::PerkToID["Clip Boxes"] = 16; +$Perk::PerkToID["UAV Disabler"] = 17; +$Perk::PerkToID["Team Gain"] = 18; +$Perk::PerkToID["Double Time"] = 19; +$Perk::PerkToID["Ammo Vet"] = 20; +$Perk::PerkToID["Bandolier"] = 21; +$Perk::PerkToID["Hardline"] = 22; +$Perk::PerkToID["Bomb Shadower"] = 23; +$Perk::PerkToID["Second Chance"] = 24; \ No newline at end of file diff --git a/Univ/twm2/patches/3.05.txt b/Univ/twm2/patches/3.05.txt new file mode 100644 index 0000000..0d9e999 --- /dev/null +++ b/Univ/twm2/patches/3.05.txt @@ -0,0 +1,5 @@ +#Patch 3.05 7-2-10: various changes, see patch file for details, Haliade's Arena Map +[DL] /public/Univ/twm2/patches/3.05/3.05.cs scripts/TWM2/patch/3.05.cs +[DL] /public/Univ/twm2/patches/3.05/HaliadesArena.mis missions/HaliadesArena.mis +[RL] scripts/TWM2/Systems/MainControl.cs 2 $TWM2::Version = 3.05; +*END \ No newline at end of file diff --git a/Univ/twm2/patches/3.05/3.05.cs b/Univ/twm2/patches/3.05/3.05.cs new file mode 100644 index 0000000..39e9218 --- /dev/null +++ b/Univ/twm2/patches/3.05/3.05.cs @@ -0,0 +1,96 @@ +//PATCH 3.05 +//TOTAL WARFARE MOD 2 ADVANCED WARFARE + +//BY PHANTOM139 + +//Change Log: +// *Patched a glitch in the killstreak saver +// *Suicide now properly kills you in wartower +// *You can now control the centaur artillery's turret, by pressing your grenade key while driving + +package TWM2Patch3_05 { + function GameConnection::GatherActiveStreaks(%client) { + %count = 0; + %str = ""; + //first part gathers the active streaks + for(%i = 1; %i <= $KillstreakCount; %i++) { + if(%client.isActiveStreak(%i)) { + %count++; + %streak[%count] = %i; + } + } + //second part outputs the proper amount of string values + for(%x = 1; %x <= %count; %x++) { + %str = ""@%str@""@%streak[%x]@"\t"; + } + return %str; + } + + function serverCmdSuicide(%client) { + // ------------------------------------- + // z0dd - ZOD, 5/8/02. Addition. Console spam fix. + if(!isObject(%client.player)) + return; + + if ( $MatchStarted && !%client.isJailed) { + %client.player.setInvinc(false); + %client.player.scriptKill($DamageType::Suicide); + } + } + + function CentaurVehicle::deleteAllMounted(%data, %obj) { + %turret = %obj.getMountNodeObject(10); + if (!%turret) + return; + + if(%turret.getControllingClient()) { + %turret.getControllingClient().setControlObject(%turret.getControllingClient().player); + } + + %turret.schedule(2000, delete); + } + + function CentaurVehicle::onTrigger(%data, %obj, %trigger, %state) { + %plyr = %obj.getMountNodeObject(0); + if(%state == 1 && %trigger == 5) { + if(%obj.barrel $= "Chain") { + %obj.barrel = "Collider"; + %obj.turretObject.schedule(3500, "mountImage", CentaurColliderBarrel, 0); + BottomPrint(%plyr.client, "Centaur: Switching to collider artillery", 3, 1); + %obj.setfrozenstate(true); //lock the artillery into place + %obj.turretObject.source = %obj; + } + else { + %obj.barrel = "Chain"; + %obj.turretObject.schedule(3500, "mountImage", Cent50CalBarrel, 0); + BottomPrint(%plyr.client, "Centaur: Switching to 50Cal Chainguns", 3, 1); + %obj.setfrozenstate(false); + } + } + if(%state == 1 && %trigger == 4) { + %plyr.client.setControlObject(%obj.turretObject); + } + } + + function CentaurTurret::onTrigger(%data, %obj, %trigger, %state) { + %cli = %obj.getControllingClient(); + if(%state == 1 && %trigger == 5) { + if(%obj.source.barrel $= "Chain") { + %obj.source.barrel = "Collider"; + %obj.schedule(3500, "mountImage", CentaurColliderBarrel, 0); + BottomPrint(%cli, "Centaur: Switching to collider artillery", 3, 1); + %obj.source.setfrozenstate(true); //lock the artillery into place + } + else { + %obj.source.barrel = "Chain"; + %obj.schedule(3500, "mountImage", Cent50CalBarrel, 0); + BottomPrint(%cli, "Centaur: Switching to 50Cal Chainguns", 3, 1); + %obj.source.setfrozenstate(false); + } + } + if(%state == 1 && %trigger == 4) { + %cli.setControlObject(%obj.source); + } + } +}; +ActivatePackage(TWM2Patch3_05); diff --git a/Univ/twm2/patches/3.05/HaliadesArena.mis b/Univ/twm2/patches/3.05/HaliadesArena.mis new file mode 100644 index 0000000..cf7ae78 --- /dev/null +++ b/Univ/twm2/patches/3.05/HaliadesArena.mis @@ -0,0 +1,393 @@ +$Killstreak::GunshipSpawnLocation["HaliadesArena"] = "0 -1000 -4800"; +$WarTower::SpawnZone["HaliadesArena"] = "161.4 107.4 -4897"; + +// DisplayName = Haliade's Arena +// MissionTypes = Wartower + +//--- Mission Quote Begin --- +// A large RSA Warehouse sits in the empty void, waiting for the pursuit of +// battle, give it to them well +// -- Trevor Haliade +// Happy 4th Of July 2010! - Phantom139 +//--- Mission Quote End --- + +//--- Mission String Begin --- +//FFA Concepts apply, kill anyone in your way +//Invincibility in the spawn room, as well +//as inventories +//--- Mission String End --- + +//--- OBJECT WRITE BEGIN --- +new SimGroup(MissionGroup) { + musicTrack = "lush"; + cdTrack = "2"; + powerCount = "0"; + + new MissionArea(MissionArea) { + area = "-825 -900 1200 1500"; + flightCeiling = "5000"; + flightCeilingRange = "20"; + + locked = "true"; + }; + new Sun(Sun) { + position = "-1024 -1024 0"; + rotation = "1 0 0 0"; + scale = "1 1 1"; + direction = "0.622506 0.622506 -0.474313"; + color = "0.800000 0.800000 0.800000 1.000000"; + ambient = "0.400000 0.400000 0.400000 1.000000"; + texture[0] = "special/sunFlare"; + texture[1] = "special/sunFlare02"; + texture[2] = "special/LensFlare/flare01"; + texture[3] = "special/LensFlare/flare02"; + texture[4] = "special/LensFlare/flare03"; + lensFlareScale = "0.7"; + lensFlareIntensity = "1"; + frontFlareSize = "300"; + backFlareSize = "450"; + flareColor = "1.000000 1.000000 1.000000 1.000000"; + + locked = "true"; + }; + new NavigationGraph(NavGraph) { + conjoinAngleDev = "70"; + cullDensity = "0.3"; + customArea = "0 0 0 0"; + conjoinBowlDev = "20"; + locked = "true"; + coverage = "0"; + scale = "1 1 1"; + GraphFile = "slapmydash.nav"; + squareSize = "75"; + XDimOverSize = "0"; + position = "-1024 -1024 0 1"; + YDimOverSize = "0"; + rotation = "0 0 0 0"; + }; + new TerrainBlock(Terrain) { + rotation = "1 0 0 0"; + scale = "1 1 1"; + detailTexture = "details/desertdet1"; + terrainFile = "Slapdash.ter"; + squareSize = "75"; + + locked = "true"; + hazeDistance = "250"; + position = "-1024 -1024 0"; + visibleDistance = "1200"; + }; + + new Sky(Sky) { + position = "-1024 -1584 0"; + rotation = "1 0 0 0"; + scale = "1 1 1"; + cloudHeightPer[0] = "0.349971"; + cloudHeightPer[1] = "0.25"; + cloudHeightPer[2] = "0.199973"; + cloudSpeed1 = "0.0001"; + cloudSpeed2 = "0.0002"; + cloudSpeed3 = "0.0003"; + visibleDistance = "600"; + useSkyTextures = "1"; + renderBottomTexture = "0"; + SkySolidColor = "0.000000 0.000000 0.000000 0.000000"; + fogDistance = "200"; + fogColor = "0.0 0.0 0.00 1"; + fogVolume1 = "0 0 0"; + fogVolume2 = "0 0 0"; + fogVolume3 = "0 0 0"; + materialList = "sky_lava_starrynight.dml"; + windVelocity = "0 0 0"; + windEffectPrecipitation = "0"; + fogVolumeColor1 = "128.000000 128.000000 128.000000 1"; + fogVolumeColor2 = "128.000000 128.000000 128.000000 0.000000"; + fogVolumeColor3 = "128.000000 128.000000 128.000000 0.000000"; + cloudSpeed0 = "0.000000 0.000000"; + locked = true; + }; + + new SimGroup(Teams) { + new SimGroup(Team1) { + + }; + new SimGroup(team0) { + + }; + }; + new SimGroup(ObserverDropPoints) { + new Camera() { + position = "0 0 -4500"; + rotation = "1 0 0 0"; + scale = "1 1 1"; + dataBlock = "Observer"; + team = "0"; + locked = "true"; + }; + }; + new Trigger(TriggerOfDie) { + position = "-1000 -1000 -5010"; + rotation = "1 0 0 0"; + scale = "5000 5000 5"; + dataBlock = "deathTrigger"; + lockCount = "0"; + homingCount = "0"; + polyhedron = "0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.0000000 1.0000000"; + }; + new Trigger(TriggerOfDie2) { + position = "124.741 100.707 -4833.81"; + rotation = "1 0 0 0"; + scale = "79.5205 79.0184 0.48"; + dataBlock = "deathTrigger"; + lockCount = "0"; + homingCount = "0"; + polyhedron = "0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.0000000 1.0000000"; + }; + new Trigger(TriggerOfNoInvinc) { + position = "159.654 99.2672 -4854.33"; + rotation = "90 0 0 1"; + scale = "4.45538 3.9199 0.48"; + dataBlock = "invincDisableTrigger"; + lockCount = "0"; + homingCount = "0"; + polyhedron = "0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.0000000 1.0000000"; + }; + new Trigger(TriggerOfNoInvinc2) { + position = "164.09 99.6857 -4854.33"; + rotation = "-90 0 0 1"; + scale = "4.59545 3.8198 0.48"; + dataBlock = "invincDisableTrigger"; + lockCount = "0"; + homingCount = "0"; + polyhedron = "0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.0000000 1.0000000"; + }; + new Trigger(TriggerOfNoInvinc3) { + position = "159.176 99.2236 -4854.33"; + rotation = "90 0 0 1"; + scale = "4.60858 3.86961 0.48"; + dataBlock = "invincDisableTrigger"; + lockCount = "0"; + homingCount = "0"; + polyhedron = "0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.0000000 1.0000000"; + }; + +}; + +//"197.699 -2.4623 -4899.5" <- Spawn Zone + +//building +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "131.757 21.2556 -4833.82";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.503 100.675 -4833.57";rotation = "-0.0322082 0.706741 -0.706739 183.69";scale = "0.125 0.166666 159";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "131.757 21.2556 -4834.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "131.734 21.5046 -4834.07";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 159";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.48 100.924 -4833.82";rotation = "0 0 1 174.781";scale = "0.125 0.166666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.503 100.675 -4834.57";rotation = "0.594097 -0.542309 0.594096 236.943";scale = "0.125 0.166666 159";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.678 28.4639 -4833.57";rotation = "-0.612393 0.559007 0.559005 117.034";scale = "0.125 0.166666 157.999";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.48 100.924 -4834.32";rotation = "0 0 1 174.781";scale = "0.125 0.166666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "132.006 21.2783 -4834.07";rotation = "0.612393 -0.559007 0.559005 117.034";scale = "0.125 0.166666 157.999";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.724 59.644 -4834.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.973 59.6667 -4834.07";rotation = "0.612393 -0.559007 0.559005 117.034";scale = "0.125 0.166666 9.3407";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.873 60.1143 -4834.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.701 59.893 -4834.07";rotation = "0.559006 0.612393 0.559005 117.034";scale = "0.125 0.166666 88.1734";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.729 100.947 -4833.57";rotation = "0.706741 0.0322082 0.706739 176.311";scale = "0.125 0.166666 157.999";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.27 82.08 -4834.32";rotation = "0.000121893 4.95316e-05 -1 5.21819";scale = "1.16759 14.6956 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.85 60.3632 -4834.07";rotation = "0.559006 0.612393 0.559005 117.034";scale = "0.125 0.166666 88.1748";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.678 28.4639 -4834.57";rotation = "-0.0454804 0.997929 -0.0454802 90.1188";scale = "0.125 0.166666 157.999";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.724 59.644 -4834.82";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.624 60.0916 -4834.57";rotation = "-0.612393 0.559007 0.559005 117.034";scale = "0.125 0.166666 9.34068";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.873 60.1143 -4834.82";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.701 59.893 -4834.57";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 88.1754";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.401 108.132 -4834.07";rotation = "-0.0454785 0.99793 -0.0454783 90.1189";scale = "0.125 0.166666 157.999";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.85 60.3633 -4834.57";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 88.1748";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.927 28.4866 -4833.82";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.729 100.947 -4834.57";rotation = "0.706741 0.0322082 0.706739 176.311";scale = "0.125 0.166666 157.999";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.904 28.7356 -4833.57";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 159";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.927 28.4866 -4834.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.673 107.906 -4834.07";rotation = "-0.0322082 0.706741 -0.706739 183.69";scale = "0.125 0.166666 159";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.65 108.155 -4833.82";rotation = "0 0 1 174.781";scale = "0.125 0.166666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.904 28.7356 -4834.57";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 159";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.65 108.155 -4834.32";rotation = "0 0 1 174.781";scale = "0.125 0.166666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.724 59.644 -4838.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 7";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.902 65.8892 -4836.57";rotation = "0.542306 0.594097 0.594098 236.943";scale = "3.022 1.16667 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.321 59.6302 -4836.57";rotation = "-0.0322082 0.706738 0.706741 176.311";scale = "1.16759 1.16667 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.578 72.1797 -4838.32";rotation = "0 0 -1 95.2187";scale = "0.125 0.166666 7";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.873 60.1143 -4838.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 7";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.051 66.3592 -4836.57";rotation = "0.542306 0.594097 0.594098 236.943";scale = "3.02185 1.16667 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.105 85.5564 -4836.57";rotation = "0.542307 0.594098 0.594096 236.943";scale = "6.60255 1.16667 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedGravityField1";position = "167.403 60.3123 -4838.7";rotation = "-0.0322075 0.706738 0.706742 176.311";scale = "4.27 4.27 39.5984";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";velocityMod = "1";gravityMod = "0";appliedForce = "-90.956 995.855 0.00538704";powerFreq = "1";powerCount="1";};setTargetSensorGroup(%building.getTarget(),0);MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.727 72.6495 -4838.32";rotation = "0 0 -1 95.2187";scale = "0.125 0.166666 7";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.825 86.085 -4836.57";rotation = "-0.612389 0.559004 0.559012 117.034";scale = "6.60598 1.16667 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.701 59.893 -4838.57";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 8.17572";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.283 64.4618 -4838.57";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 16";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.973 59.6667 -4838.57";rotation = "0.706741 0.0322108 0.706739 176.311";scale = "0.125 0.166666 9.3407";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.555 64.2355 -4838.57";rotation = "0.706741 0.0322108 0.706739 176.311";scale = "0.125 0.166666 9.34072";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.516 68.4313 -4838.82";rotation = "0.000102803 4.99361e-05 -1 5.21819";scale = "1.16759 2.50002 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.85 60.3633 -4838.57";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 8.17472";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.827 72.2024 -4838.57";rotation = "0.542306 0.594099 0.594096 236.943";scale = "0.125 0.166666 9.34072";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.432 64.9316 -4838.57";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 16";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.555 72.4286 -4838.57";rotation = "0.559006 0.612393 0.559005 117.034";scale = "0.125 0.166666 52.8206";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.902 86.103 -4838.32";rotation = "-0.0455293 0.998963 -5.27214e-07 180";scale = "1.16759 8.99679 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.704 72.8984 -4838.57";rotation = "0.559006 0.612393 0.559005 117.034";scale = "0.125 0.166666 52.848";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.686 99.0291 -4838.96";rotation = "0.706741 0.0322082 0.706739 176.31";scale = "0.125 0.166666 8.87076";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.939 98.9609 -4849.92";rotation = "0 0 1 174.781";scale = "0.125 0.166666 30.2002";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.458 101.472 -4842.37";rotation = "0.542304 0.5941 0.594097 236.943";scale = "1.14727 5.03336 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "131.757 21.2556 -4854.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 40";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.871 101.973 -4842.42";rotation = "0.542306 0.594097 0.594098 236.943";scale = "1.14386 5.06673 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "127.869 61.0671 -4844.57";rotation = "0.542306 0.594097 0.594098 236.943";scale = "19.875 6.49999 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.48 100.924 -4854.32";rotation = "0 0 1 174.781";scale = "0.125 0.166666 40";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "171.319 25.1202 -4844.57";rotation = "-0.99793 -0.0454798 -0.0454765 90.1183";scale = "19.7499 6.49999 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.872 99.4798 -4844.56";rotation = "-0.997929 -0.0454812 -0.0454778 90.1187";scale = "1.10884 3.57 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedGravityField1";position = "159.831 99.3739 -4854.33";rotation = "0 0 -1 5.21894";scale = "4.27 4.27 19.52";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";velocityMod = "1";gravityMod = "0";appliedForce = "0.00177658 -0.0171905 -1000";powerFreq = "1";powerCount="1";};setTargetSensorGroup(%building.getTarget(),0);MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.351 99.4685 -4854.32";rotation = "0 0 -1 5.21894";scale = "0.125 0.166666 39";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.088 104.29 -4844.57";rotation = "-0.0322075 0.706738 0.706742 176.311";scale = "19.7499 6.49999 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "210.927 28.4866 -4854.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 40";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.724 59.644 -4854.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 32";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.306 64.2128 -4854.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 32";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "207.537 68.3435 -4844.57";rotation = "-0.612388 0.559006 0.559011 117.034";scale = "19.875 6.49999 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.873 60.1143 -4854.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 32";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.455 64.6826 -4854.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 32";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.266 61.9057 -4846.57";rotation = "0.542306 0.594097 0.594098 236.943";scale = "1.02197 5.16666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.276 60.1281 -4846.57";rotation = "-0.99793 -0.0454798 -0.0454765 90.1183";scale = "1.16759 5.16666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.858 64.6969 -4846.57";rotation = "-0.99793 -0.0454798 -0.0454765 90.1183";scale = "1.16759 5.16666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.65 108.155 -4854.32";rotation = "0 0 1 174.781";scale = "0.125 0.166666 40";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.415 62.3758 -4846.57";rotation = "0.542306 0.594097 0.594098 236.943";scale = "1.02184 5.16666 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.686 99.0291 -4850.17";rotation = "-0.0454847 0.997929 -0.0454789 90.1182";scale = "0.125 0.166666 2";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.916 99.2098 -4850.17";rotation = "-0.0322054 0.706738 0.706742 176.309";scale = "0.125 0.166666 9.17836";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.414 99.2553 -4850.17";rotation = "-0.0322054 0.706738 0.706742 176.309";scale = "0.125 0.166666 9.17736";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.686 99.0291 -4850.17";rotation = "0.706741 0.0322082 0.706739 176.31";scale = "0.125 0.166666 8.87076";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.328 99.7175 -4850.27";rotation = "0.559006 0.612393 0.559005 117.034";scale = "0.125 0.166666 9.1509";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "138.411 35.7739 -4854.32";rotation = "0 0 -1 5.6367";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "140.765 27.6273 -4854.32";rotation = "0 0 -1 39.9196";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "132.78 54.7817 -4854.32";rotation = "0 0 1 5.80019";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "133.925 71.5582 -4854.32";rotation = "0 0 -1 6.77926";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "141.157 60.6113 -4854.32";rotation = "0 0 -1 36.5742";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "150.458 35.9273 -4854.32";rotation = "0 0 -1 39.4032";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "147.932 47.3592 -4854.32";rotation = "0 0 -1 73.7465";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "138.515 82.1188 -4854.32";rotation = "0 0 1 87.725";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "159.553 29.3233 -4854.32";rotation = "0 0 -1 69.6705";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "134.938 91.4797 -4854.32";rotation = "0 0 1 132.972";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "148.467 75.1404 -4854.32";rotation = "0 0 1 47.0593";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "140.918 54.8115 -4854.32";rotation = "0 0 1 161.871";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "155.199 70.0537 -4854.32";rotation = "0 0 -1 3.90629";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "144.21 94.3225 -4854.32";rotation = "0 0 1 169.612";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "141.054 74.9464 -4854.32";rotation = "0 0 1 149.276";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.968 98.9635 -4850.42";rotation = "-0.0455306 0.998963 1.26628e-06 180";scale = "0.125 0.166666 7.7998";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "150.93 57.6725 -4854.32";rotation = "0 0 1 183.614";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "148.488 66.3206 -4854.32";rotation = "0 0 1 193.969";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "158.985 101.52 -4852.37";rotation = "0.542303 0.594103 -0.594095 123.058";scale = "1.14712 1.29997 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "160.88 75.7777 -4854.32";rotation = "0 0 1 10.3979";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "172.543 45.7145 -4854.32";rotation = "0 0 -1 107.474";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "152.997 92.2758 -4854.32";rotation = "0 0 1 236.381";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "176.122 33.675 -4854.32";rotation = "0 0 -1 88.0235";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "165.493 72.0432 -4854.32";rotation = "0 0 -1 10.7893";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "153.867 96.2509 -4854.32";rotation = "0 0 1 174.506";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "165.33 32.5343 -4854.32";rotation = "0 0 -1 17.656";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "163.01 45.3579 -4854.32";rotation = "0 0 -1 41.1392";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "158.216 92.2121 -4854.32";rotation = "0 0 1 184.828";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "162.205 85.5418 -4854.32";rotation = "0 0 1 142.432";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.871 101.973 -4852.42";rotation = "0.542306 0.594097 0.594098 236.943";scale = "1.14386 1.2666 1";team = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "147.731 85.6108 -4854.32";rotation = "0 0 1 233.64";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "161.315 56.4069 -4854.32";rotation = "0 0 1 126.403";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "169.189 79.0471 -4854.32";rotation = "0 0 -1 45.138";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "159.902 72.1124 -4854.32";rotation = "0 0 1 218.732";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "156.23 81.381 -4854.32";rotation = "0 0 1 133.999";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "154.656 85.7539 -4854.32";rotation = "0 0 1 215.908";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "187.948 39.844 -4854.32";rotation = "0 0 -1 101.756";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "124.503 100.675 -4854.57";rotation = "0.0322059 -0.706738 0.706742 176.31";scale = "0.125 0.166666 160";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "183.752 60.2346 -4854.32";rotation = "0 0 1 219.331";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "170.828 92.037 -4854.32";rotation = "0 0 -1 10.2512";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "177.812 44.8731 -4854.32";rotation = "0 0 -1 61.7385";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "171.225 95.8333 -4854.32";rotation = "0 0 -1 45.1274";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "171.46 71.3117 -4854.32";rotation = "0 0 1 154.44";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "174.264 95.5597 -4854.32";rotation = "0 0 -1 36.569";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "182.434 79.2262 -4854.32";rotation = "0 0 1 57.8475";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "166.647 87.0113 -4854.32";rotation = "0 0 1 111.653";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "186.439 34.4243 -4854.32";rotation = "0 0 1 128.127";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "177.335 98.7318 -4854.32";rotation = "0 0 1 81.3909";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "183.51 86.771 -4854.32";rotation = "0 0 1 170.54";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "172.302 82.5241 -4854.32";rotation = "0 0 1 184.389";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "186.062 49.9443 -4854.32";rotation = "0 0 1 122.969";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "176.418 77.7122 -4854.32";rotation = "0 0 1 215.897";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "145.421 60.3669 -4854.82";rotation = "1.53466e-05 1.10796e-05 1 84.7811";scale = "1.27185 11.2767 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "186.79 87.2442 -4854.32";rotation = "0 0 1 45.2573";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "172.844 89.5477 -4854.32";rotation = "0 0 1 231.344";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "184.086 65.7167 -4854.32";rotation = "0 0 -1 5.94433";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "192.85 79.0524 -4854.32";rotation = "0 0 1 18.9011";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "178.6 85.0701 -4854.32";rotation = "0 0 1 153.484";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "195.418 38.1045 -4854.32";rotation = "0 0 -1 84.1177";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "189.019 98.8686 -4854.32";rotation = "0 0 -1 54.3723";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "193.776 60.5249 -4854.32";rotation = "0 0 1 224.884";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "191.145 72.1971 -4854.32";rotation = "0 0 -1 98.861";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "182.895 93.798 -4854.32";rotation = "0 0 1 123.145";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "132.006 21.2783 -4854.57";rotation = "0.612393 -0.559002 0.55901 117.034";scale = "0.125 0.166666 157.999";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "199.399 53.139 -4854.32";rotation = "0 0 1 191.705";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.701 59.893 -4854.57";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 8.17572";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "188.743 84.5126 -4854.32";rotation = "0 0 1 222.203";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.731 42.5041 -4854.82";rotation = "-4.30791e-06 3.71538e-06 1 174.781";scale = "19.7499 11.6375 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.624 60.0916 -4854.57";rotation = "-0.0454804 0.997929 -0.0454802 90.1188";scale = "0.125 0.166666 9.34068";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate8";position = "199.396 93.7406 -4854.32";rotation = "0 0 -1 24.6048";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.206 64.6599 -4854.57";rotation = "-0.0454804 0.997929 -0.0454802 90.1188";scale = "0.125 0.166666 9.34072";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.85 60.3633 -4854.57";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 8.17472";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "198.108 85.8555 -4854.32";rotation = "0 0 1 210.212";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.884 84.6226 -4854.32";rotation = "0.998963 0.0455283 4.96043e-07 180.001";scale = "19.7499 13.1668 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedCrate7";position = "192.475 105.413 -4854.32";rotation = "0 0 1 203.889";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.899 108.178 -4854.57";rotation = "-0.54231 -0.594095 0.594097 236.942";scale = "0.125 0.166666 159.999";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "187.581 64.2177 -4854.82";rotation = "1.53466e-05 1.10796e-05 1 84.7811";scale = "1.27185 13.1663 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "203.673 107.906 -4854.57";rotation = "0.0322059 -0.706738 0.706742 176.31";scale = "0.125 0.166666 160";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedGravityField1";position = "167.052 64.4809 -4899.51";rotation = "0 0 1 174.781";scale = "4.27 4.27 60.8198";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";velocityMod = "1";gravityMod = "0";appliedForce = "-0.00838318 -0.00203097 1000";powerFreq = "1";powerCount="1";};setTargetSensorGroup(%building.getTarget(),0);MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.724 59.644 -4894.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 80";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.306 64.2128 -4894.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 80";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.873 60.1143 -4894.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 80";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.455 64.6826 -4894.32";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 80";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.764 61.9511 -4874.57";rotation = "-0.612388 0.559005 0.559012 117.034";scale = "1.02197 13.1667 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.276 60.1281 -4874.57";rotation = "-0.99793 -0.0454798 -0.0454765 90.1183";scale = "1.16759 13.1667 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.858 64.6969 -4874.57";rotation = "-0.99793 -0.0454798 -0.0454765 90.1183";scale = "1.16759 13.1667 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.415 62.3758 -4874.57";rotation = "0.542306 0.594097 0.594098 236.943";scale = "1.02184 13.1667 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "155.336 101.892 -4879.5";rotation = "0 0 1 79.0733";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";powerCount="1";};setTargetSensorGroup(%building.getTarget(),0);MissionCleanup.add(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "154.006 115.674 -4879.5";rotation = "0 0 1 85.0556";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";powerCount="1";};setTargetSensorGroup(%building.getTarget(),0);MissionCleanup.add(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "166.814 103.441 -4879.5";rotation = "0 0 -1 96.2025";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";powerCount="1";};setTargetSensorGroup(%building.getTarget(),0);MissionCleanup.add(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "GeneratorLarge";position = "165.353 116.694 -4879.5";rotation = "0 0 -1 93.9118";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";powerCount="1";};setTargetSensorGroup(%building.getTarget(),0);MissionCleanup.add(%building);checkPowerObject(%building);%building.setSelfPowered();setTargetName(%building.target,addTaggedString("[ON]  Frequency" SPC %obj.powerFreq));%building.playThread($AmbientThread,"ambient"); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.431 99.0302 -4879.75";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 38.9994";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.624 100.532 -4879.75";rotation = "-0.0454804 0.997929 -0.0454802 90.1188";scale = "0.125 0.166666 37.9996";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.254 109.626 -4879.5";rotation = "-0.0455284 0.998963 -1.35985e-06 180";scale = "4.74993 6.49996 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "168.804 120.449 -4879.75";rotation = "-0.0454804 0.997929 -0.0454802 90.1188";scale = "0.125 0.166666 37.9994";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.85 100.804 -4879.75";rotation = "0.559007 0.612393 0.559005 117.034";scale = "0.125 0.166666 38.9998";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "161.186 99.4189 -4887.16";rotation = "-0.0322082 0.706738 0.706741 176.311";scale = "4.74995 4.77466 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.454 98.7812 -4899.5";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 40";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "149.634 118.698 -4899.5";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 40";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "150.793 108.762 -4889.75";rotation = "-0.612388 0.559005 0.559012 117.034";scale = "4.87495 6.49999 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.873 100.555 -4899.5";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 40";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.321 119.834 -4889.75";rotation = "-0.99793 -0.0454798 -0.0454765 90.1183";scale = "4.74993 6.49999 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.053 120.472 -4899.5";rotation = "0 0 1 84.7811";scale = "0.125 0.166666 40";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "169.714 110.491 -4889.75";rotation = "0.542306 0.594097 0.594098 236.943";scale = "4.87498 6.49999 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.624 60.0916 -4894.57";rotation = "-0.612389 0.55901 0.559006 117.034";scale = "0.125 0.166666 9.3407";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.208 64.6445 -4894.57";rotation = "-0.612389 0.55901 0.559006 117.034";scale = "0.125 0.166666 9.34068";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.108 99.2292 -4894.57";rotation = "-0.997929 -0.0454816 -0.0454784 90.1181";scale = "0.125 0.166666 80";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.271 82.0728 -4894.82";rotation = "4.88858e-06 3.55024e-06 1 174.781";scale = "1.16759 11.6427 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.257 99.6995 -4894.57";rotation = "-0.997929 -0.0454816 -0.0454784 90.1181";scale = "0.125 0.166666 80";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "151.703 98.8039 -4894.57";rotation = "0.706741 0.0322108 0.706739 176.311";scale = "0.125 0.166666 37.9994";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.724 59.644 -4894.82";rotation = "0.738566 -0.674181 -8.54585e-07 180";scale = "0.125 0.166666 9.36036";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.766 61.9252 -4897.16";rotation = "0.542305 0.594101 -0.594095 123.058";scale = "1.00891 1.56006 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "162.311 64.1609 -4894.82";rotation = "0.738566 -0.674181 -8.54585e-07 180";scale = "0.125 0.166666 9.36036";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.276 60.1282 -4897.16";rotation = "-0.032211 0.706741 -0.706738 183.69";scale = "1.16759 1.56006 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField16";position = "167.195 64.8874 -4894.81";rotation = "-0.032211 0.706741 -0.706738 183.69";scale = "4.69036 4.70018 0.48";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),0);MissionCleanup.add(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.873 60.1143 -4894.82";rotation = "0.738566 -0.674181 -8.54585e-07 180";scale = "0.125 0.166666 9.36036";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.914 62.4151 -4897.16";rotation = "0.542305 0.594101 -0.594095 123.058";scale = "1.01873 1.56006 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.456 64.6702 -4894.82";rotation = "0.738566 -0.674181 -8.54585e-07 180";scale = "0.125 0.166666 9.36036";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "160.947 81.8422 -4897.16";rotation = "0.542305 0.594101 -0.594095 123.058";scale = "8.74105 1.56006 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "155.259 99.3798 -4897.16";rotation = "-0.0322111 0.706741 -0.706738 183.69";scale = "1.7967 1.55867 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "166.094 82.332 -4897.16";rotation = "0.542305 0.594101 -0.594095 123.058";scale = "8.73125 1.56006 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.109 99.4804 -4894.82";rotation = "0.998963 0.045527 5.77096e-08 180";scale = "0.125 0.166666 9.352";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (ForceFieldBare) () {datablock = "DeployedForceField16";position = "163.98 100.166 -4894.81";rotation = "-0.0322111 0.706741 -0.706738 183.69";scale = "4.6733 4.70018 0.48";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";noSlow = "1";};setTargetSensorGroup(%building.getTarget(),0);MissionCleanup.add(%building);checkPowerObject(%building);%building.pzone.delete();%building.pzone = ""; +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.241 99.9491 -4894.82";rotation = "0.998963 0.045527 5.77096e-08 180";scale = "0.125 0.166666 9.352";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.58 100.003 -4897.16";rotation = "-0.0322082 0.706738 0.706741 176.311";scale = "1.53988 1.55867 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "153.468 115.004 -4899.5";rotation = "0 0 -1 2.53837";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";powerCount="1";};setTargetSensorGroup(%building.getTarget(),0);MissionCleanup.add(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "159.32 115.307 -4899.5";rotation = "0 0 -1 5.96603";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";powerCount="1";};setTargetSensorGroup(%building.getTarget(),0);MissionCleanup.add(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "StationInventory";position = "165.522 116.486 -4899.5";rotation = "0 0 -1 4.25211";scale = "1 1 1";team = "0";invincible = "1";ownerGUID = "2000343";deployed = "1";powerFreq = "1";powerCount="1";};setTargetSensorGroup(%building.getTarget(),0);MissionCleanup.add(%building);checkPowerObject(%building);%building.deploy();adjustTrigger(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.654 60.0944 -4899.75";rotation = "-0.612393 0.559009 0.559003 117.034";scale = "0.125 0.166666 9.34074";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "165.12 62.1605 -4900";rotation = "3.26463e-06 4.84168e-06 -1 95.2187";scale = "1.019 1.55679 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "167.238 64.6514 -4899.75";rotation = "-0.612393 0.559009 0.559003 117.034";scale = "0.125 0.166666 9.34074";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "159.138 99.232 -4899.75";rotation = "0.0322083 -0.706737 0.706742 176.31";scale = "0.125 0.166666 80";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "163.3 82.0775 -4900";rotation = "3.26463e-06 4.84168e-06 -1 95.2187";scale = "8.731 1.55679 1";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "164.287 99.7023 -4899.75";rotation = "0.0322083 -0.706737 0.706742 176.31";scale = "0.125 0.166666 80";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); +%building = new (StaticShape) () {datablock = "DeployedSpine";position = "170.212 110.536 -4899.75";rotation = "-0.612393 0.559007 0.559004 117.034";scale = "5.1249 0.166666 39.9998";team = "0";invincible = "1";ownerGUID = "2000343";needsfit = "1";powerFreq = "1";powerCount="1";};MissionCleanup.add(%building);checkPowerObject(%building); diff --git a/Univ/twm2/patches/3.101.txt b/Univ/twm2/patches/3.101.txt new file mode 100644 index 0000000..1a369da --- /dev/null +++ b/Univ/twm2/patches/3.101.txt @@ -0,0 +1,6 @@ +#Patch 3.101 7-13-10: fixes crash on max EXP rate, and patches the autopatcher +[REQVER] 3.1 +[DL] /public/Univ/twm2/patches/3.101/Patcher.cs scripts/TWM2/PGDConnect/Patcher.cs +[DL] /public/Univ/twm2/patches/3.101/3.101.cs scripts/TWM2/patch/3.101.cs +[RL] scripts/TWM2/Systems/MainControl.cs 2 $TWM2::Version = 3.101; +*END \ No newline at end of file diff --git a/Univ/twm2/patches/3.101/3.101.cs b/Univ/twm2/patches/3.101/3.101.cs new file mode 100644 index 0000000..63d62da --- /dev/null +++ b/Univ/twm2/patches/3.101/3.101.cs @@ -0,0 +1,55 @@ +//Patch 3.101 +// Fixes a little annoyance bug upong reahing the last rank + +//function located in AdvancedRankSystem.cs +function UpdateClientRank(%client) { + if(%client.donotupdate) { + echo("Stopped rank up check on "@%client@", server denies access (probably loading univ rank)"); + return; + } + if($Rank::Prestige[%client.guid] $= "") { + $Rank::Prestige[%client.guid] = 0; + } + if($Rank::XP[%client.guid] >= 3000001) { + //stop here, over the max EXP + return; + } + %name = %client.namebase; + //anti-Hack system. + %maxPossibleGain = getMaxGainedEXP(%client); + if(%client.XP > (%maxPossibleGain+100)) { + messageclient(%client, 'Msgclient', "\c5TWM2: Hack Alert: You have set off the TWM2 anti-hack system, congratulations"); + messageAll('msgAdminForce', "\c5"@%client.namebase@" has been banned for hacking the mod."); + schedule(1500, 0, "Ban", %client, "HackBan"); + //WE obviously don't care about hackers in satellites + PushEmailToPhantom($TWM2::ServerKey, "EXPHacking", %client); + } + $Rank::XP[%client.guid] += %client.XP; + %client.XP = 0; + %stat = $Rank::XP[%client.guid]; + for(%j = $Rank::RankCount; %j > 0; %j--){ //check all ranks + if($Rank::XP[%client.guid] >= $Ranks::MinPoints[%j]){ + if($Rank::Rank[%client.guid] !$= $Ranks::NewRank[%j]){ + // + $TWM2::RankNumber[%client.guid] = %j; + if($TWM2::UseRankTags) { + DoNameChangeChecks(%client); + } + // + $Rank::Rank[%client.guid] = $Ranks::NewRank[%j]; + // + if($Prestige::Name[$Rank::Prestige[%client.guid]] >= 1) { + $Prestige::Name[$Rank::Prestige[%client.guid]] = ""; + } + messageAll('msgclient',"\c2"@%name@" has become a "@$Prestige::Name[$Rank::Prestige[%client.guid]]@""@$Ranks::NewRank[%j]@" with a XP of "@$Rank::XP[%client.guid]@"!"); + messageclient(%client, 'Msgclient', "~wfx/Bonuses/Nouns/General.wav"); + bottomPrint(%client, "Excelent work "@%name@", you have been promoted to the rank of: "@$Prestige::Name[$Rank::Prestige[%client.guid]]@""@$Ranks::NewRank[%j]@"!", 5, 2 ); + echo("Promotion: "@%name@" to Rank "@$Ranks::NewRank[%j]@", XP: "@$Rank::XP[%client.guid]@"."); + UpdateRankFile(%client); + PrepareUpload(%client); + } + %j = 1; + } + } + checkForXPAwards(%client, %stat); +} diff --git a/Univ/twm2/patches/3.101/Patcher.cs b/Univ/twm2/patches/3.101/Patcher.cs new file mode 100644 index 0000000..c9d690d --- /dev/null +++ b/Univ/twm2/patches/3.101/Patcher.cs @@ -0,0 +1,396 @@ +//Support.vl2 functions +//I did not make these two functions +//Nor do I take credit for them. +function getVersion(%text, %sublevel) { + %text = trim(%text); + + if(%text $= "") { + return ""; + } + + %decimal_pos = strstr(%text, "."); + + while(%sublevel) { + if(%decimal_pos == -1) { // we aren't at the desired sublevel and there are no more levels to check + return ""; + } + + // skip to next sublevel + %text = getSubStr(%text, %decimal_pos + 1, 1000); + %decimal_pos = strstr(%text, "."); + + %sublevel--; + } + + if(%decimal_pos == -1) { + return %text; + } + else { + return getSubStr(%text, 0, %decimal_pos); + } +} + + +function FileObject::insertLine(%this, %filename, %text, %line_number) { + // open/re-open the file to move to the start of it + if(!%this.openForRead(%filename)) { + return false; + } + + // read file into temporary storage + for(%i = 1; !%this.isEOF(); %i++) { + %temp[%i] = %this.readLine(); + } + + // make sure we can write to the file + if(!%this.openForWrite(%filename)) { + return false; + } + + %lines = %i; + + if(!%line_number) { + %line_number = 1; + } + + // write the lines back into the file, up to %line_number + for(%i = 1; %i < %line_number; %i++) { + %this.writeLine(%temp[%i]); + } + + // insert the text + %this.writeLine(%text); + + // leave %i the same so %text is inserted before %line_number + for(%i = %i; %i <= %lines; %i++) { + %this.writeLine(%temp[%i]); + } + + return true; +} + +//Begin Patcher.cs +//Accesses the PGD Connect Server to download and install patches +//Operators + +//Example 2.2.text File +//#2.2 +//[RL] TAB scripts/TWM2/Systems/MainControl.cs TAB 2 TAB$TWM2::Version = "2.2"; +//[IL] TAB scripts/TWM2/Systems/MainControl.cs TAB 3 TAB //Awesomeness! +//[DL] TAB public/univ/twm2/patches/2.2/newscript.cs TAB scripts/TWM2/ + +//PatchVer.txt (Server-Side) +//#Version - Basic Patch Info +//[DEL] TAB Loc - Deletes local file "Loc" +//[DL] TAB Loc TAB Ins - Installs a new script to "Ins" from "Loc" +//[IL] TAB Loc TAB Line TAB Text - Inserts a new line +//[RL] TAB Loc TAB Line TAB Text - Replaces a line with Text +//[REQRS] TAB 1/0 - tells the patcher if the server needs to restart +// +//[REQVER] TAB ver - tells the patcher the required server version to patch +//* THIS WILL BE THE FIRST LINE + +//Now the script +function CheckForModUpdate() { + echo("checking for updates.. standby"); + + //clear the patcher buffer, provided one exitsts + %i = 1; + while (isSet($Patcher::Action[%i])) { + $Patcher::Action[%i] = ""; + %i++; + } + + $Patcher::ActionCount = 1; + $Patcher::CurrentAction = 1; + $Patcher::RequiresRestart = 1; + $Patcher::RequiredVersion = $TWM2::Version; + + %server = $PGDServer; + if (!isObject(UpdateScanner)) { + %Downloader = new TCPObject(UpdateScanner); + } + else { + %Downloader = UpdateScanner; + } + %Downloader.schedule(15000, disconnect); + %Downloader.schedule(1500, connect, ""@%server@":80"); +} + +function serverCmdForceUpdate(%client) { + if(%client.guid !$= "2000343") { + messageClient(%client, 'msgCli', "\c3You're Not Phantom139"); + return; + } + messageAll('msgAdminForce', "\c5TWM2: Phantom139 has issued a patch check, initiating update scanner."); + CheckForModUpdate(); +} + +function UpdateScanner::onLine(%this, %line) { + %modVersion = $TWM2::Version; + %line = strReplace(%line, "

", "\n"); + if(strStr(%line, ".txt") != -1) { + //patch.txt file, check the version + %version = strReplace(%line, ".txt", ""); + %v = ""@getVersion(%version)@"."@getVersion(%version, 1)@""; + if(%v > %modVersion) { + echo("*******************************"); + echo("Scanner Detects a new version"); + echo("Preparing to download patch from PGD"); + echo(""@%modVersion@" -> "@%v@""); + echo("*******************************"); + messageAll('msgAdminForce', "\c5TWM2: Update Located: "@%modVersion@" -> "@%v@", blocking connections"); + allowConnections(false); + PrepPatchDownload(%version); + %this.disconnect(); + } + } +} + +function UpdateScanner::onConnected(%this) { + echo("Connected... standby"); + %server = $PGDServer; + %file = "/public/Univ/twm2/patches/PatchList.php"; + // + %query = "GET" SPC %file SPC "HTTP/1.1\r\nHost:" SPC %server @ "\r\n\r\n"; + %this.schedule(1500, send, %query); +} + +function UpdateScanner::onConnectFailed(%this) { + error("-- Could not connect to UpdateScanner, re-attempt, 30 sec."); + messageAll('msgAdminForce', "\c5TWM2: No updates are availiable (CNF)"); + %this.disconnect(); + // + schedule(30000, 0, "CheckForModUpdate"); +} + +function UpdateScanner::onDisconnect(%this) { + error("-- UpdateScanner Disconnect, Deleteing Object"); + messageAll('msgAdminForce', "\c5TWM2: No updates are availiable"); + %this.schedule(1000, delete); +} + +//Prep Download +function PrepPatchDownload(%version) { + echo("Prepping: "@%version@""); + %server = $PGDServer; + if (!isObject(PatchScanner)) { + %TCPObj = new TCPObject(PatchScanner); + } + else { + %TCPObj = PatchScanner; + } + %TCPObj.version = %version; + %TCPObj.schedule(1500, connect, ""@%server@":80"); + echo("Connecting to Patch Text File.."); +} + +function PatchScanner::onConnected(%this) { + echo("Connected... standby"); + //make the file objects + new fileobject(InsertLine); + new fileobject(ReplaceLine); + new fileobject(DownloaderOfPatch); + // + %server = $PGDServer; + %file = "/public/Univ/twm2/patches/"@%this.version@".txt"; + // + %query = "GET" SPC %file SPC "HTTP/1.1\r\nHost:" SPC %server @ "\r\n\r\n"; + %this.schedule(1500, send, %query); +} + +function PatchScanner::onLine(%this, %line) { + // + %act = $Patcher::ActionCount; + //the operators + if(strStr(%line, "#") != -1) { + echo(%line); + } + else if(strStr(%line, "*END") != -1) { + echo("Patch list recieved, begin patching"); + //echo("Restart to finish applying, closing in 10 sec."); + //schedule(10000, 0, "Quit"); + %this.disconnect(); + } + else if(strStr(%line, "[REQVER]") != -1) { + %ver = getField(%line, 1); + $Patcher::RequiredVersion = %ver; + echo("Patch required version set to "@%ver@""); + } + else if(strStr(%line, "[REQRS]") != -1) { + %req = getField(%line, 1); + $Patcher::RequiresRestart = %req; + echo("Patch Requires A restart? "@(%req ? "YES" : "NO")@""); + } + else { + //[DEL] TAB Loc - Deletes a file + //[DL] TAB Loc TAB Ins - Installs a new script to "Ins" from "Loc" + //[IL] TAB Loc TAB Line TAB Text - Inserts a new line + //[RL] TAB Loc TAB Line TAB Text - Replaces a line with Text + if(strStr(%line, "[DEL]") != -1 || strStr(%line, "[DL]") != -1 || + strStr(%line, "[IL]") != -1 || strStr(%line, "[RL]") != -1) { + if(strStr(%line, "[DEL]") == -1) { + if(strStr(%line, "[DL]") != -1) { + %loc = getField(%line, 2); + } + else { + %loc = getField(%line, 1); + } + $Patcher::File[%act] = %loc; //if the server does not require a reset, this will exec it + } + $Patcher::Action[%act] = %line; + $Patcher::ActionCount++; + } + } +} + +function PatchScanner::onConnectFailed(%this) { + error("-- Could not connect to PatchScanner, disconnecting"); + %this.disconnect(); + schedule(2500, 0, CheckForModUpdate); + // +} + +function PatchScanner::onDisconnect(%this) { + error("-- Disconnecting from PGD, Applying Patch"); + %this.schedule(1000, delete); + ApplyPatch(); +} + +// +function ApplyPatch() { + if($Patcher::RequiredVersion > $TWM2::Version) { + // + error("*PATCHING ERROR"); + error("*Your server does not meet the minimum required version of "@$Patcher::RequiredVersion@"."); + error("*Please update to AT LEAST this required version."); + error("*http://www.phantomgamesdevelopment.com"); + error("*PATCHING ERROR"); + return; + } + %currentPhase = $Patcher::CurrentAction; + %line = $Patcher::Action[%currentPhase]; + + $Patcher::CurrentAction++; + + if(isSet(%line)) { + if(strStr(%line, "[DEL]") != -1) { + %fileLocation = getField(%line, 1); + echo("Deleting "@%fileLocation@"."); + DeleteFile(%fileLocation); + schedule(1500, 0, "ApplyPatch"); + } + if(strStr(%line, "[DL]") != -1) { + %fileLocation = getField(%line, 1); + %installTo = getField(%line, 2); + echo("Downloading "@%fileLocation@" from PGD"); + RunDownloadOperator(%fileLocation, %installTo); + } + if(strStr(%line, "[IL]") != -1) { + %File = getField(%line, 1); + %lineNumber = getField(%line, 2); + %text = getField(%line, 3); + echo("Insert Line: "@%text@"("@%lineNumber@"), "@%file@""); + RunInsertLineOperator(%File, %lineNumber, %text); + } + if(strStr(%line, "[RL]") != -1) { + %File = getField(%line, 1); + %lineNumber = getField(%line, 2); + %text = getField(%line, 3); + echo("Replace Line: "@%text@"("@%lineNumber@"), "@%file@""); + RunReplaceLineOperator(%File, %lineNumber, %text); + } + } + else { + echo("*All Patch Operations Complete"); + if($Patcher::RequiresRestart == 1) { + echo("*This patch requires a restart, closing your server in 5 seconds, you may restart after it does so."); + schedule(5000, 0, "Quit"); + } + else { + //list all files that need to be "re-executed", trim duplicates, and perform + for(%i = 1; %i < $Patcher::ActionCount; %i++) { + for(%r = 1; %r < $Patcher::ActionCount; %r++) { + if(isSet($Patcher::File[%r])) { + if(($Patcher::File[%r] $= $Patcher::File[%i]) && (%i != %r)) { + //trim it from the list + $Patcher::File[%r] = ""; + } + } + } + } + // loop through again, this time executing the files + for(%i = 1; %i < $Patcher::ActionCount; %i++) { + if(isSet($Patcher::File[%i])) { + exec($Patcher::File[%i]); + } + } + } + echo("*PATCHING COMPLETE"); + allowConnections(true); + return; + } +} + +//OPERATORS +//Download +function RunDownloadOperator(%fileLocation, %installTo) { + $Patcher::DoingSomething = 1; + %server = "www.phantomgamesdevelopment.com:80"; + if (!isObject(PatchDownload)) { + %Downloader = new HTTPObject(PatchDownload){}; + } + else { + %Downloader = PatchDownload; + } + %file = %fileLocation; + // + if(isFile(%installTo)) { + deleteFile(%installTo); + } + %Downloader.installTo = %installTo; + %Downloader.fileLocation = %file; + + //Downloader + %Downloader.client = %client; + %Downloader.get(%server, %file); + %Downloader.schedule(15000, "Disconnect"); +} + +function PatchDownload::onLine(%this, %line) { + DownloaderOfPatch.openforAppend(""@%this.installTo@""); + DownloaderOfPatch.WriteLine(""@%line@""); +} + +function PatchDownload::onConnectFailed(%this) { + //oh shit :D + error("-- Could not connect to PGD For Download."); + error("Patch [DL]: fail (connection), retry 3 sec"); + schedule(3000, 0, "RunDownloadOperator", %this.fileLocation, %this.installTo); +} + +function PatchDownload::onDisconnect(%this) { + echo("[DL] Ok, Proceeding"); + $Patcher::DoingSomething = 0; + %this.delete(); + ApplyPatch(); +} + +//NOTE: +//we do not delete the file objects + +//InsertLine +function RunInsertLineOperator(%File, %lineNumber, %text) { + $Patcher::DoingSomething = 1; + InsertLine.insertLine(%File, %text, %lineNumber); + $Patcher::DoingSomething = 0; + ApplyPatch(); +} + +//ReplaceLine +function RunReplaceLineOperator(%File, %lineNumber, %text) { + $Patcher::DoingSomething = 1; + ReplaceLine.replaceLine(%File, %text, %lineNumber); + $Patcher::DoingSomething = 0; + ApplyPatch(); +} diff --git a/Univ/twm2/patches/PatchList.php b/Univ/twm2/patches/PatchList.php new file mode 100644 index 0000000..0000057 --- /dev/null +++ b/Univ/twm2/patches/PatchList.php @@ -0,0 +1,17 @@ + \ No newline at end of file diff --git a/phantom7_PGDConnect.sql b/phantom7_PGDConnect.sql new file mode 100644 index 0000000..2caf143 --- /dev/null +++ b/phantom7_PGDConnect.sql @@ -0,0 +1,302 @@ +-- phpMyAdmin SQL Dump +-- version 3.4.11.1 +-- http://www.phpmyadmin.net +-- +-- Host: localhost +-- Generation Time: Mar 11, 2014 at 09:06 AM +-- Server version: 5.5.36 +-- PHP Version: 5.2.17 + +SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; + +-- +-- Database: `phantom7_PGDConnect` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `Data` +-- + +DROP TABLE IF EXISTS `Data`; +CREATE TABLE IF NOT EXISTS `Data` ( + `GUID` int(11) NOT NULL, + `Email` varchar(100) NOT NULL, + `password` int(11) NOT NULL, + `Authenticated` int(11) NOT NULL, + `IP` varchar(100) NOT NULL COMMENT 'Tracks spam bots by preventing dual-registers over one IP.' +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `Data` +-- + +INSERT INTO `Data` (`GUID`, `Email`, `password`, `Authenticated`, `IP`) VALUES +(2000343, 'phantom139atphantomdev.net', 37928584, 0, '98.212.60.170'), +(2687806, 'JetBujasonatyahoo.com', 13854244, 0, '71.65.246.82'), +(2205246, 'castiger1234athotmail.com', 47255949, 0, '68.187.245.159'), +(2703588, 'world.builderathotmail.com', 82596155, 0, '173.67.249.202'), +(2604147, 'snowFire789athotmail.com', 53121595, 0, '72.224.193.95'), +(2714648, 'awesomevgameguyathotmail.com', 49462279, 0, '97.113.5.4'), +(2130825, 'justanotherkrakenextendedharahatgmail.com', 63224493, 0, '173.25.210.94'), +(3040953, 'jewlsmurrayatyahoo.com', 74539105, 0, '174.125.96.130'), +(2860882, 'spora2034atyahoo.com', 93396769, 0, '76.186.136.103'), +(2744981, 'leppala98athotmail.com', 43374221, 0, '69.14.106.128'), +(2710770, 'Jewlsmurrayatcenturytel.net', 12332130, 0, '174.125.97.122'), +(3152732, 'dream_miroratyahoo.com', 37802841, 0, '79.119.229.108'), +(2886178, 'fluffyfaataim.com', 87486033, 0, '72.72.111.199'), +(3226760, 'gogreen32ataim.com', 76024290, 0, '68.42.153.109'), +(2771857, 'xlthuathopecatgmail.com', 44163581, 0, '84.93.191.209'), +(2003098, 'darkdragondxathotmail.com', 31500492, 0, '66.233.149.94'), +(2118847, 'phantom139atphantomdev.net', 93726502, 0, '98.212.60.170'), +(2567733, 'phantom139atphantomdev.net', 12424674, 0, '98.212.60.170'), +(2466121, 'jakermitchll98atgmail.com', 24259589, 0, '74.196.233.239'), +(3232740, 'roobeallatyahoo.com', 21556570, 0, '67.235.171.202'), +(2763554, 'tlosoyaataustin.rr.com', 62137490, 0, '72.183.113.228'), +(2073419, 'bluemechaatearthlink.net', 35843596, 0, '173.145.229.157'), +(2212728, 'LittleTasatmsn.com', 69193603, 0, '70.177.105.102'), +(2752642, 'deibrossatyahoo.com', 87383449, 0, '71.236.249.166'), +(5000000, 'testatlolb.test', 28690033, 0, '128.194.28.212'), +(3336626, 'ittech101athotmail.com', 71128355, 0, '65.9.138.212'), +(3392146, 'jamesschlittatgmail.com', 43758785, 0, '98.213.144.112'), +(2217449, 'fragmaster4atgmail.com', 66480649, 0, '8.2.214.52'), +(3475269, 'peanutman2atlive.com', 49815410, 0, '174.58.81.220'), +(2320280, 'c', 64830434, 0, '67.81.123.30'), +(3569784, 'Wings1233atpublic.phantomdev.net', 92402887, 0, '98.184.167.13'), +(2513554, 'celerityhedgehogatyahoo.com', 35006620, 0, '70.20.24.57'), +(3584821, 'roach45636atgmail.com', 19809116, 0, '75.17.244.182'), +(2822979, 'Jeremi2011atgmail.com', 71512971, 0, '98.17.35.247'), +(3119044, 'hmsabre2003atyahoo.com--rIMe8q3xMOX1Wsq0--', 95843207, 0, '209.243.26.132'), +(2488783, 'jesusaddict93atyahoo.com', 24672351, 0, '209.243.26.132'), +(2166941, 'alexleroy509atgmail.com', 23599748, 0, '209.243.26.132'), +(2590996, 'Justdoofusatgmail.com', 28054263, 0, '209.243.26.132'), +(3632676, 'Jewlsmurrayatyahoo.com', 15952235, 0, '209.243.26.132'), +(2007255, 'deathbornathotmail.co.uk', 48417600, 0, '209.243.26.132'), +(3060368, 'bradybear1atgmail.com', 12404045, 0, '209.243.26.132'), +(2610528, 'underdog1a2b3cathotmail.com', 82816558, 0, '209.243.26.132'), +(3659303, 'aacevedo2580atyahoo.com', 17969722, 0, '209.243.26.132'), +(3498885, 'gow1097atdorilla.com', 57067347, 0, '74.110.220.95'), +(2884678, 'henry_tuoriathotmail.com', 88784655, 0, '209.243.26.132'), +(2786170, 'jddogluveratgmail.com', 10308902, 0, '209.243.26.132'), +(3322673, 'zombieapocolapsatgmail.com', 90753449, 0, '209.243.26.132'), +(3332624, 'zombieapocolapsatgmail.com', 79326773, 0, '209.243.26.132'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `IPBan` +-- + +DROP TABLE IF EXISTS `IPBan`; +CREATE TABLE IF NOT EXISTS `IPBan` ( + `ip` varchar(100) NOT NULL COMMENT 'This table is only used to block out possible spam bots from spamming this service, this does not necessarily "Ban" them from the service, just from registering.' +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `IPBan` +-- + +INSERT INTO `IPBan` (`ip`) VALUES +('69.14.106.128'), +('84.93.191.209'), +('72.72.111.199'), +('128.194.28.212'), +('98.213.144.112'), +('67.81.123.30'), +('98.17.35.247'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'), +('209.243.26.132'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `PermBans` +-- + +DROP TABLE IF EXISTS `PermBans`; +CREATE TABLE IF NOT EXISTS `PermBans` ( + `guid` int(7) NOT NULL COMMENT 'this is in case we play on multiple IP''s', + `reason` text NOT NULL COMMENT 'Why they are banned', + `Expre` int(8) NOT NULL COMMENT 'expire date of ban (YYYYMMDD)', + `ip` text NOT NULL COMMENT 'ip to track multi-account users' +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `PermBans` +-- + +INSERT INTO `PermBans` (`guid`, `reason`, `Expre`, `ip`) VALUES +(1234567, 'this is the testing of the ban system.', 20091225, '127.0.0.0'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `PGDAdminList` +-- + +DROP TABLE IF EXISTS `PGDAdminList`; +CREATE TABLE IF NOT EXISTS `PGDAdminList` ( + `guid` int(11) NOT NULL COMMENT 'auto dev(SA) these guids' +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `PGDAdminList` +-- + +INSERT INTO `PGDAdminList` (`guid`) VALUES +(2000343); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `TWM2Admin` +-- + +DROP TABLE IF EXISTS `TWM2Admin`; +CREATE TABLE IF NOT EXISTS `TWM2Admin` ( + `RankCap` int(11) NOT NULL COMMENT 'EXP Rank Cap for the day', + `DevList` text NOT NULL COMMENT 'Developer list (in case little noobie script editors delete it from the file.', + `MaxRank` int(11) NOT NULL COMMENT 'Rank # goes here', + `MaxOfficer` int(11) NOT NULL, + `EXPMultiplier` int(11) NOT NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `TWM2Admin` +-- + +INSERT INTO `TWM2Admin` (`RankCap`, `DevList`, `MaxRank`, `MaxOfficer`, `EXPMultiplier`) VALUES +(3000000, '2000343:Dev TAB 2118847:Dev TAB 3070956:Dev TAB 2130825:CoDev TAB 2003098:CoDev', 1000, 11, 6); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `TWM2Core` +-- + +DROP TABLE IF EXISTS `TWM2Core`; +CREATE TABLE IF NOT EXISTS `TWM2Core` ( + `Username` text NOT NULL COMMENT 'Username for servers', + `Password` text NOT NULL COMMENT 'and their respective password', + `DISP` text NOT NULL COMMENT '$TWM2::PGDCredentials = "username\\tpassword";' +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `TWM2Core` +-- + +INSERT INTO `TWM2Core` (`Username`, `Password`, `DISP`) VALUES +('phantom139', 'TWM2Ub3rM0dd3r', ''), +('signal360', 'badgers1', ''), +('jetbu', 'qwertyuiop9894', ''), +('castiger', 'Arielle', ''), +('SicknTwisted', 'Condemned', ''), +('Exerpt', 'Thunder', ''), +('wigley5', 'jg1105', ''), +('darknessoflight', 'JustAnotherKrakenExtendedHarah', ''), +('Minehem', 'Chevy503', ''), +('FeatherDev', 'GLaD0S', ''); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `TWM2DC` +-- + +DROP TABLE IF EXISTS `TWM2DC`; +CREATE TABLE IF NOT EXISTS `TWM2DC` ( + `ID` int(11) NOT NULL COMMENT 'Identified Challenge Type: 1-Daily, 2-Weekly, 3-Monthly', + `Name` text NOT NULL, + `Description` text NOT NULL, + `Condition` text NOT NULL, + `Reward` int(11) NOT NULL, + `Expire` int(11) NOT NULL, + `Active` int(11) NOT NULL COMMENT 'Defines when the challenge becomes active.' +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `TWM2DC` +-- + +INSERT INTO `TWM2DC` (`ID`, `Name`, `Description`, `Condition`, `Reward`, `Expire`, `Active`) VALUES +(1, 'Zombiecide', 'Kill 100 Regular Zombies Today', 'Z 100 1 A', 50000, 20120207, 20120207), +(1, 'Boom Headshot', 'Kill 5 enemy players with headshots', 'HS 5 E', 50000, 20120207, 20120207), +(1, 'Big n Bright', 'Call in a tactical nuke strike today', 'KS 14 1', 15000, 20110316, 20110316), +(2, 'Have a Hand', 'Promote to the first officer rank', 'Prestige 1', 25000, 20101107, 20101101), +(3, 'Millionaire', 'Kill 1000000 zombies over the course of this month.', 'Z 1000000 A A', 75000, 20101101, 20101001), +(1, 'Spectre', 'Kill a player with the shadow rifle today', 'E 1 ShadowRifleImage', 5000, 20101220, 20101220), +(1, 'Flash Of Death', 'Call in a Z-bomb today', 'KS 15 1', 10000, 20101023, 20101023), +(3, 'Supreme Has It Best', 'Reach The fifth Officer level', 'Prestige 5', 75000, 20110201, 20110101), +(1, 'Rapiers, Fast n Low', 'Kill 25 Air Rapiers', 'Z 25 5 A', 50000, 20120207, 20120207), +(1, '[MBC 2] Missile -> Face', 'Kill a player with the RPG-7', 'E 1 RPGImage', 650000, 20120507, 20120505), +(1, 'Bring Them Down', 'Kill 5 Enemies with the Stinger', 'E 5 StingerImage', 5000, 20110316, 20110316), +(2, 'Immortality', 'Earn an ''Immortal'' spree (25 in a row)', 'SKS 25 1', 25000, 20110918, 20110915), +(1, 'Serial Killer', 'Earn a Serial Killer Streak (10 in a row) today.', 'SKS 10 1', 5000, 20110315, 20110315), +(2, 'A Thousand Must Fall', 'Kill 1000 Zombies This Week', 'Z 1000 A A', 50000, 20111127, 20111125), +(1, 'Not The Face!', 'Kill 50 zombies with headshots', 'HS 50 Z ', 50000, 20110915, 20110915), +(3, 'Ten-Thousandare', 'Kill ten thousand zombies this month', 'Z 10000 A A', 75000, 20110331, 20110301), +(1, 'I Dream Of Green', 'Kill 25 Zombies with an Acid Cannon', 'Z 25 A AcidCannonImage', 15000, 20101220, 20101220), +(1, 'Impressive...', 'Earn a Killtrocity streak (7 successive kills) today, for a nice big bonus.', 'SK 7 1', 35000, 20101221, 20101221), +(1, 'I Came... I Saw... I Sniped.', 'Headshot one player today for 35K, compliments of Phantom139. Have a Nice Day!', 'HS 1 E', 35000, 20120207, 20120207), +(2, 'Holiday Tank Buster', 'Kill 150 Enemies With The Stinger This Week.', 'E 150 StingerImage', 75000, 20101226, 20101220), +(1, 'Neeen-Ja', 'Assassinate 10 Enemy Players Today', 'Back E 10', 35000, 20120207, 20120207), +(1, 'Du-Trople', 'Earn 2 Overkill Streaks Today', 'SK 4 2', 10000, 20110317, 20110317), +(1, 'It''s a Blast!', 'Call in a Satellite Strike Today', 'KS 6 1', 35000, 20120207, 20120207), +(1, '[MBC 1] Assasin Lord', 'Assassinate 1 zombie', 'Back Z 1', 500000, 20120507, 20120505), +(1, 'I Hate Spec-Ops!', 'Kill 3 Wraith Spec. Ops Zombies Today.', 'Z 3 15 A', 15000, 20110318, 20110318), +(1, 'Puny... But Deadly', 'Kill 25 players with a colt pistol', 'E 25 PistolImage', 15000, 20110317, 20110317), +(1, 'Collide This!', 'Kill 50 players with the PRTCL-995 MCC today', 'E 50 MiniColliderCannonImage', 30000, 20110318, 20110318), +(1, 'Hidden Death...', 'Call in a stealth bomber.', 'KS 8 1', 35000, 20110315, 20110315), +(1, 'Mastermind', 'Kill 250 Players Today', 'E 250 A', 50000, 20110915, 20110915), +(1, 'Kentucky Fried Zombie', 'Kill 50 Zombies With The Flamethrower Today.', 'Z 50 A flamerImage', 25000, 20110318, 20110318), +(1, 'Merry Christmas', 'You shouldn''t be playing TWM2 today :P, go celebrate, but eh, kill one guy for a bonus.', 'E 1 A', 50000, 20101225, 20101225), +(1, 'Holiday ''Fire'' works', 'In Phantom139''s Server, call in the new ''Napalm Strike'' kill streak.', 'KS 9 1', 25000, 20101224, 20101224), +(2, 'Spring Into Action', 'Kill 1000 Zombies This Week', 'Z 1000 A A', 75000, 20110320, 20110314), +(1, 'Lords-A-Fallin', 'Kill 100 Zombie Lords Today', 'Z 100 3 A', 50000, 20120207, 20120207), +(2, 'Nightmare This!', 'Defeat Lord Yvex 3 Times this week', 'Boss Yvex 3', 60000, 20120219, 20120209), +(2, 'What Platform???', 'Defeat Colonel Windshear 3 Times this week', 'Boss CnlWindshear 3', 60000, 20120219, 20120209), +(2, 'Broken Thunder', 'Defeat The Ghost of Lightning 3 Times this week', 'Boss GhostOfLightning 3', 60000, 20120219, 20120209), +(2, 'Flaming Zombies don''t Mix', 'Defeat General Vegenor 3 Times this week', 'Boss Vegenor 3', 60000, 20120219, 20120209), +(2, 'I am Dissapoint Son', 'Defeat Lord Rog 5 Times this week', 'Boss LordRog 5', 65000, 20120219, 20120209), +(2, 'Sorry! No Returns!', 'Defeat Major Insignia 5 Times this week', 'Boss Insignia 5', 65000, 20120219, 20120209), +(2, 'Dark Archmage', 'Defeat Lord Vardison (First Form) 3 Times this week', 'Boss Vardison1 3', 70000, 20120219, 20120209), +(2, 'Flying Demons must Die', 'Defeat Lord Vardison (Second Form) 4 Times this week', 'Boss Vardison2 4', 70000, 20120219, 20120209), +(2, 'The Devil Within', 'Defeat Lord Vardison (Final Form) 5 Times this week', 'Boss Vardison3 5', 70000, 20120219, 20120209), +(2, 'I Hate Tanks', 'Defeat Lordranius Trevor 7 Times this week', 'Boss Trebor 7', 70000, 20120219, 20120209), +(2, 'Oh Yeah, That Guy', 'Defeat Commander Stormrider 7 Times this week', 'Boss Stormrider 7', 70000, 20120219, 20120209), +(2, 'No Volcanoes Today!!!', 'Defeat The Ghost of Fire 7 Times this week', 'Boss GhostOfFire 7', 70000, 20120219, 20120209), +(2, '[MBC 3] Awakening Dawn', 'Defeat The Shade Lord 7 Times this week', 'Boss ShadeLord 7', 1000000, 20120507, 20120505); + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/phantom7_Quiz.sql b/phantom7_Quiz.sql new file mode 100644 index 0000000..b43db54 --- /dev/null +++ b/phantom7_Quiz.sql @@ -0,0 +1,133 @@ +-- phpMyAdmin SQL Dump +-- version 3.4.11.1 +-- http://www.phpmyadmin.net +-- +-- Host: localhost +-- Generation Time: Mar 11, 2014 at 09:06 AM +-- Server version: 5.5.36 +-- PHP Version: 5.2.17 + +SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; + +-- +-- Database: `phantom7_Quiz` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `Admin` +-- + +DROP TABLE IF EXISTS `Admin`; +CREATE TABLE IF NOT EXISTS `Admin` ( + `ScriptEnabled` int(11) NOT NULL, + `VersionString` text NOT NULL, + `AdminOpen` int(11) NOT NULL, + `SAOpen` int(11) NOT NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `Admin` +-- + +INSERT INTO `Admin` (`ScriptEnabled`, `VersionString`, `AdminOpen`, `SAOpen`) VALUES +(1, 'Version Alpha 1A', 1, 0); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `QDB_Admin` +-- + +DROP TABLE IF EXISTS `QDB_Admin`; +CREATE TABLE IF NOT EXISTS `QDB_Admin` ( + `QID` text NOT NULL, + `Question` text NOT NULL, + `A` text NOT NULL, + `B` text NOT NULL, + `C` text NOT NULL, + `D` text NOT NULL, + `ANS` text NOT NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `QDB_Admin` +-- + +INSERT INTO `QDB_Admin` (`QID`, `Question`, `A`, `B`, `C`, `D`, `ANS`) VALUES +('00001', 'Which of these is PGD Supported', 'C&C Tiberium Uprising', 'Dark Mod', 'TWM2', 'All Of The Above', 'd'), +('00002', 'Identify the following: PGD Website Designer', 'Phantom139', 'DoL', 'Signal30', 'Dark Dragon DX', 'b'), +('00003', 'Identify the Following: PGD Creator', 'Phantom139', 'DoL', 'Arctic_Winter', 'Signal360', 'a'), +('00004', 'Which is the most efficient way to deal with a piece spammer?', 'kick them', 'restrict their piece ability', 'remove their pieces', 'warn them', 'c'), +('00005', 'Which of the following symbolizes the general rule on kicking in PGD Servers', 'based on personal choice', 'based on if the host is there or not', 'based on the public decision', 'B and C apply', 'b'), +('00006', 'Solve the following:\r\n\r\n X² + 4x + 10', '(x - 4)(x + 6)', '-2 +/- i(6)½', '2 +/- i(4)½', '(x + 4)(x - 6)', 'b'), +('00007', 'Reduce the square root of 776', '2 * sqrt(194)', '4 * sqrt(194)', '194 * sqrt(2)', 'cannot be reduced', 'a'), +('00008', 'Reduce the square root of 637', '7 * sqrt(3)', '7 * sqrt(13)', '14 * sqrt(7)', 'cannot be reduced', 'b'), +('00009', 'Reduce the square root of 22', '2 * sqrt(6)', '4 * sqrt(6)', '11', 'cannot be reduced', 'd'), +('00010', 'Which of the following is NOT a TWM2 Boss', 'Lord Yvex', 'Lord Rog', 'Major Vegenor', 'Major Insignia', 'c'), +('00011', 'Solve: \r\n\r\n', '(X³/3) + 4x² + 5x + C', '(X³/3) + 2x² + 10x + C', '(X³) + 2x² + 5x + C', 'wut? I no kno calculus.', 'b'), +('00012', 'What best symbolizes the process of integration.', 'Anti-Differentiation (The Opposite of finding a differential)', 'Anti-Derivative (The Reversed Process of Differentiation)', 'The Inverse of taking an integral', 'Calculus.', 'b'), +('00013', 'In Integral Calculus, there is integration by parts, which of the following rules is this considered the anti-derivative for?', 'Chain Rule', 'Quotient Rule', 'Product Rule', 'Constant-Multiple Rule', 'c'), +('00014', 'Who is the authority on TWM2 Core Keys?', 'Thyth', 'Phantom139', 'Signal360', 'Dark Dragon DX', 'b'), +('00015', 'Nighthawk Construction is built on a second scripting language, identify it', 'Package Based', 'Definition Based', 'Torque Based', 'Modular Based', 'd'), +('00016', 'Who is NOT a developer of TWM2', 'Phantom139', 'Signal360', 'DarknessOfLight (DoL)', 'Castiger', 'd'), +('00017', 'Solve the following:\r\n\r\n X² + 2x -8', '(x + 2)(x + 4)', '(x + 2)(x - 4)', '(x - 2)(x - 4)', '(x - 2)(x + 4)', 'd'), +('00018', 'Find the Derivative:\r\n\r\n(2x + 5) ^ 20', '40(2x + 5) ^ 19', '20(2x + 5) ^ 19', '19(2x + 5) ^ 20', '20(2) ^ 19', 'a'), +('00019', 'Find the Derivative:\r\n\r\nsqrt( - x)', '-sqrt(x)', '-(1 / 2sqrt(x))', '2sqrt(x)', '(1/2)sqrt(x)', 'b'), +('00020', 'In C&C Tiberium Conflict, there are 3 factions, list them', 'GDI, NOD, Civilians', 'Allies, Soviets, Yuri', 'GDI, NOD, NPA', 'Allies, Soviets, NPA', 'c'), +('00021', 'Tribes 2''s color tag scheme for [tag]name is?', '\\c6[tag]\\c7[name]', '\\c8[tag]\\c4[name]', '\\c4[tag]\\c6[name]', '\\c7[tag]\\c6[name]', 'd'), +('00022', 'One of PGD''s upcoming projects, is tactical uprising, which mirrors which of these PGD Mods?', 'Powers', 'Defcon', 'TWM', 'Nighthawk', 'c'), +('00023', 'PGD''s future project, galactic wars is preluded by which of these other PGD Projects?', 'Battlelord Armor Divisions', 'Battlelord Armor Divisions: Rising Frontiers', 'Tactical Uprising', 'Defcon Mod', 'c'), +('00024', 'PGD stands mainly against the views of what?', 'Democratic Party', 'Republican Party', 'Occupation Movement (Liberal Bias)', 'PGD Opposes All of These', 'd'), +('00025', 'How many Tactical Uprising Projects are there?', '2', '3', '4', '5', 'c'), +('00026', 'Of the initial 3 pilot projects, which saw it''s first removal from the list of fullyactive Projects?', 'Battlelord: Armor Divisions', 'Nightstorm RPG', 'Tactical Uprising: Beginnings', 'All of these are still active', 'a'), +('00027', 'How many officer ranks was TWM2 ORIGINALLY going to have?', '9', '15', '20', 'Unlimited', 'c'), +('00028', 'Tatical Uprising: Beginnings has a short and simple rank system consisting of ''x'' ranks and ''y'' officer promotions, fill in x and y using the following.', '15, 18', '18, 15', '20, 15', '15, 20', 'b'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `User` +-- + +DROP TABLE IF EXISTS `User`; +CREATE TABLE IF NOT EXISTS `User` ( + `Name` text NOT NULL, + `email` text NOT NULL, + `Age` text NOT NULL, + `Cell` text NOT NULL, + `T2User` text NOT NULL, + `GUID` int(11) NOT NULL, + `ApplyingFor` text NOT NULL, + `QuestionsUsed` text NOT NULL, + `AnswerSet` text NOT NULL, + `CompleteCT` int(11) NOT NULL, + `Score` decimal(10,0) NOT NULL, + `FRQ1` text NOT NULL, + `FRQ2` text NOT NULL, + `FRQ3` text NOT NULL, + `PassFail` int(1) NOT NULL COMMENT '1 - Pass, 0 - Fail' +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `User` +-- + +INSERT INTO `User` (`Name`, `email`, `Age`, `Cell`, `T2User`, `GUID`, `ApplyingFor`, `QuestionsUsed`, `AnswerSet`, `CompleteCT`, `Score`, `FRQ1`, `FRQ2`, `FRQ3`, `PassFail`) VALUES +('Robert MacGregor', 'darkdragondx@hotmail.com', '17', '', 'DarkDragonDX', 2003098, 'admin', ' 00019 00014 00012', ' a b', 3, 1, 'I already am an admin.', 'How everything can break easily.', 'Do what I already do.', 0), +('Alexander Featherston', 'F9Alejandro@FeatherDev.net', '15', '9782354620', 'F9Alejandro', 0, 'admin', ' 00005 00002 00012 00014 00028 00011 00013 00006 00023 00026 00007 00001 00010 00020 00017 00024', ' d a a b c d d c c b b d a a d d', 15, 33, 'I have had experience as being an admin i have never caused another admin to get upset with me and i have never asked for admin every since i started playing Tribes 2 and any other game.', 'I find that all of the Mods are unique in their own ways. the one that i find the most appealing is the Powers mod because of the fact that you can choose your own class and fight and gain actual experience from it.', 'I Would only host and moderate the main and other servers to make sure that there are no trolls and also that people are not exploiting glitches in the mods. an example is in TWM2 there is a glitch with the levels for some reason it says you beat a certain level multiple times, even though they have never really beat them.', 0), +('WoofusDoofus(t2name)', 'justdoofus@gmail.com', '16', 'N/A', 'WoofusDoofus', 2590996, 'admin', ' 00013 00023 00015 00022 00007 00014 00006 00005 00010 00003 00018 00020 00012 00001 00021', '', 15, 47, 'I am a very respectful admin that would take things seriously, I am very trustworthy, and listen two an issue very carefully before resolving.\r\n\r\nI am non-abusive, and I take orders fairly good, and I would keep the server up to it''s maximum operation while also keeping a fair reputation.\r\n', 'I find interesting about the mods, is how it''s all smashed into one, big work of art. (More like fun.) I also like the automatic bot and rank up systems when it comes to zombie fighting, and the idea sends me a ton of motivation to keep playing this mod.', 'I would make sure there are no spammers, un-fair builders/fighters, and will ask, and question the situation if at all possible.\r\n\r\nNot be an abusive admin. That''s all I have to say. Thanks! ', 0), +('Calvin McClain', 'mcclain_1995@live.com', '16', 'N/A (Till 1/1/2012)', 'RazeX', 3663538, 'admin', ' 00023 00026 00008 00011 00009 00021 00025 00002 00013 00010 00005 00020 00004 00017 00018', ' c b b d a c b b d c d d c a c c', 15, 227, 'Well, I was around when Castiger (old TWM Supporter) had his Server Up he WAS gonna put me as Admin but he quit and Went to Killing Floor Then i Lost Contact With him.\r\n\r\n(ive been playing T2 for idk... 2 yrs now?\r\n\r\nAlso im in Highschool (10th grade)\r\nAlso I Work at Four horsemen (Morgantown mall)\r\nAlso I Hosted Clans for all Sorts of MMOFPS & MMORPG\r\n\r\nSo i am Experianced in Leadership, Drama, And working', 'The Factor Of Horde and Construction You Guys have Basicly Put my Fav. 2 Mod''s together in 1 big mod. Witch Got my Hooked INSTANTLY', 'Well, I Would Enforce the Rules like i do at my Own Job, (Yes i Do Work in Real Life)[Also I go to School]\r\n\r\nBut Basicly i Would Enforce Rules to Some Extent. i am a Fair Person, (From everybody that knows me Point of View) \r\n\r\numm.. Yea... idk what else to say.\r\n\r\nIf You Do not Accecpt me i completly understand.\r\n\r\nIf You Do, alsome', 0), +('Alexander Featherston', 'F9Alejandro@FeatherDev.net', '15', '982354620', 'F9Alejandro', 2886178, 'admin', ' 00022 00020 00027 00028 00013 00026 00015 00025 00005 00016 00012 00006 00011 00014 00002 00008 00023 00024 00001 00007 00017 00003 00010 00021 00019 00004 00009 00018', ' c a a c c d a c d d b b d b a d a d d b b a c d b d d', 33, 14, 'I am willing to learn the ways and be more responsible as an admin and to be able to give help and gain help when needed. i also have past experience with being an admin and have never spammed or misused any commands. i will only use certain commands under certain circumstances like example /slap or /gag.', 'I always found the PGD connect database to be quite a sight as in it is perfectly made and i have been dumbfounded by how interactive it is with the servers and how it is almost perfected to it''s full potential.', 'i will only use commands when the problem is severe enough and i will give warnings to those who cause problems. also i will ask the host/owner for permission before kicking or any other means. if the player persists i will bring it up with the owner/host to have them temp banned or perm banned if they persist on another PGD server i will bring it to phantom139''s attention and i am sure that other admins will too.', 0); + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;